summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python
Commit message (Collapse)AuthorAgeFilesLines
* python3-flask-pymongo: Consolidate in a single fileLeon Anavi2020-09-022-16/+16
| | | | | | | | Consolidate inc and bb files into a single bb file. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-flask-mail: Consolidate in a single fileLeon Anavi2020-09-022-13/+13
| | | | | | | | Consolidate inc and bb files into a single bb file. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-flask-nav: Consolidate in a single fileLeon Anavi2020-09-022-14/+14
| | | | | | | | Consolidate inc and bb files into a single bb file. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-traitlets: Upgrade 4.3.3 -> 5.0.0Leon Anavi2020-09-021-3/+2
| | | | | | | | | | | | | | | | | | | | Upgrade to release 5.0.0: Traitlets 5.0 is a new version of traitlets that accumulate changes over a period of more close to four years; A number of internal refactoring made the internal code structure cleaner and simpler, and greatly improved the diagnostic error messages as well has help and documentation generation. Major changes: - Removal of Python 2 support, - Removal of Python 3.0-3.6 support - Follow NEP 29, and are thus Python 3.7+ only. - Remove six as a dependency - Remove funcsig as a dependency. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-luma-core: Upgrade 1.16.0 -> 1.16.1Leon Anavi2020-09-021-2/+2
| | | | | | | | | | Upgrade to release 1.16.1: - Fix bug in bitmap_font: glyph_index now computed correctly Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-sentry-sdk: Upgrade 0.17.0 -> 0.17.1Leon Anavi2020-09-021-2/+2
| | | | | | | | | | | | Upgrade to release 0.17.1: - Fix timezone bugs in AWS Lambda integration. - Fix crash on GCP integration because of missing parameter timeout_warning. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-ipython: Upgrade 7.17.0 -> 7.18.1Leon Anavi2020-09-021-2/+2
| | | | | | | | | | | | | | Upgrade to release 7.18.1: - CRLF is now handled by magics my default; solving some issues due to copy pasting on windows. - Requiring pexpect >=4.3 as we are Python 3.7+ only and earlier version of pexpect will be incompatible. - Minimum jedi version is now 0.16. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-more-itertools: Upgrade 8.4.0 -> 8.5.0Leon Anavi2020-09-021-2/+2
| | | | | | | | | | | | | | | | Upgrade to release 8.5.0: - Add :func:`windowed_complete` - The :func:`is_sorted` implementation was improved - The :func:`groupby_transform` now accepts a reducefunc parameter - The :func:`last` implementation was improved - Various documentation fixes - The tests for :func:`distinct_combinations` were improved - Automated tests now run on GitHub Actions Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-prompt-toolkit: Upgrade 3.0.6 -> 3.0.7Leon Anavi2020-09-021-2/+2
| | | | | | | | | | | | | | | | | | | Upgrade to release 3.0.7: - New "placeholder" parameter added to `PromptSession`. - The "respond to CPR" logic has been moved from the `Input` to `Output` classes (this does clean up some code). - Bugfix in shift-selection key bindings. - Fix hight calculation of `FormattedTextControl` when line wrapping is turned on. - Fixes for SSH server: * Missing encoding property * Fix failure in "set_line_mode" call * Handle `BrokenPipeError` Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-parse: Upgrade 1.16.0 -> 1.17.0Leon Anavi2020-09-021-2/+2
| | | | | | | | | | Upgrade to release 1.17.0: - Make left- and center-aligned search consume up to next space Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-paramiko: Upgrade 2.7.1 - 2.7.2Leon Anavi2020-09-021-2/+2
| | | | | | | | | | | | | | | | | | | | | | | Upgrade to release 2.7.2: - [Bug]: Fix incorrectly swapped order of p and q numbers when loading OpenSSH-format RSA private keys. At minimum this should address a slowdown when using such keys, and it also means Paramiko works with Cryptography 3.1 and above (which complains strenuously when this problem appears). - [Bug]: Fix incorrect string formatting causing unhelpful error message annotation when using Kerberos/GSSAPI. - [Support]: Remove leading whitespace from OpenSSH RSA test suite static key fixture, to conform better to spec. - [Support]: Add missing test suite fixtures directory to MANIFEST.in, reinstating the ability to run Paramiko’s tests from an sdist tarball. - [Support]: Update our CI to catch issues with sdist generation, installation and testing. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-sh: Upgrade 1.13.1 -> 1.14.0Leon Anavi2020-09-021-2/+2
| | | | | | | | | | | | | | Upgrade to release 1.14.0: - _env now more lenient in accepting dictionary-like objects - None and False arguments now do not pass through to underlying command - Implemented find_spec on the fancy importer, which fixes some Python3.4+ issues Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-cmd2: Upgrade 1.3.5 -> 1.3.8Leon Anavi2020-09-021-2/+2
| | | | | | | | | | | | | | | | Upgrade to release 1.3.8: - Fixed issue where subcommand added with @as_subcommand_to decorator did not display help when called with -h/--help. - add_help=False no longer has to be passed to parsers used in @as_subcommand_to decorator. Only pass this if your subcommand should not have the -h/--help help option (as stated in argparse documentation). Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-flask-user: Consolidate in a single fileLeon Anavi2020-09-022-18/+18
| | | | | | | | Consolidate inc and bb files into a single bb file. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-google-api-python-client: Upgrade 1.10.1 -> 1.11.0Leon Anavi2020-09-021-2/+2
| | | | | | | | | | Upgrade to release 1.11.0: - Add support for mtls env variables Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-cryptography-vectors: Upgrade 3.0 -> 3.1Leon Anavi2020-09-021-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | Upgrade to release 3.1: - BACKWARDS INCOMPATIBLE: Removed support for idna based :term:`U-label` parsing in various X.509 classes. This support was originally deprecated in version 2.1 and moved to an extra in 2.5. - Deprecated OpenSSL 1.0.2 support. OpenSSL 1.0.2 is no longer supported by the OpenSSL project. The next version of cryptography will drop support for it. - Deprecated support for Python 3.5. This version sees very little use and will be removed in the next release. - backend arguments to functions are no longer required and the default backend will automatically be selected if no backend is provided. - Added initial support for parsing certificates from PKCS7 files - Calling update or update_into on :class:`~cryptography.hazmat.primitives.ciphers.CipherContext` with data longer than 231 bytes no longer raises an OverflowError. This also resolves the same issue in :doc:`/fernet`. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-luma-core: Upgrade 1.15.0 -> 1.16.0Leon Anavi2020-09-021-2/+2
| | | | | | | | | | | Upgrade to release 1.16.0: - Embedded font parallel device (for upcoming HD44780, Winstar character devices) Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-ecdsa: Upgrade 0.15 -> 0.16.0Leon Anavi2020-09-021-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | Upgrade to release 0.16.0: - Support for reading and writing private keys in PKCS#8 format. - to_pem and to_der now accept new parameter, format, to specify the format of the encoded files, either the dafault, legacy "ssleay", or the new pkcs8 to use PKCS#8. Note that only unencrypted PKCS#8 files are supported - Add allow_truncate to verify in VerifyingKey, it defaults to True, when specified as False, use of large hashes smaller than curves will be disallowed (as it was in 0.14.1 and earlier) - Correctly calculate signatures for private keys equal to n-1 - Make PointJacobi and thus SigningKey and VerifyingKey pickleable - to_pem functions return bytes not str, document them as such - from_pem and from_pem in SigningKey returns SigningKey, document them as such - Ensure that version checks will work with Python 4. - Format the source with black. - Fix uses of assert_ in test suite. - Use newer Ubuntu in Travis to test against OpenSSL 1.1.1 (and thus test the interoperability of ECDH code in Travis). Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-texttable: add recipeHongxu Jia2020-09-021-0/+11
| | | | | | Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-flask-sqlalchemy: Upgrade 2.4.1 -> 2.4.4Leon Anavi2020-08-311-2/+2
| | | | | | | | | | | | | | | Upgrade to release 2.4.4: - Change base class of meta mixins to type. This fixes an issue caused by a regression in CPython 3.8.4. - Deprecate SQLALCHEMY_COMMIT_ON_TEARDOWN as it can cause various design issues that are difficult to debug. Call db.session.commit() directly instead. - Fix bad pagination when records are de-duped. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-flask-sqlalchemy: Consolidate in a single fileLeon Anavi2020-08-312-11/+11
| | | | | | | | Consolidate inc and bb files into a single bb file. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-flask-restful: Upgrade 0.3.7 -> 0.3.8Leon Anavi2020-08-311-2/+2
| | | | | | | | | | | | | Upgrade to release 0.3.8: - Add Python 3.8 support - Fix wrongly parsed Decimal fields - Fix overridden response when calling abort with Response - Various small fixes and updates to documentation Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-flask-restful: Consolidate in a single fileLeon Anavi2020-08-312-18/+16
| | | | | | | | Consolidate inc and bb files into a single bb file. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-flask-migrate: Upgrade 2.5.2 -> 2.5.3Leon Anavi2020-08-311-2/+2
| | | | | | | | | | | | | | | | | | Upgrade to release 2.5.3: - Allow Path objects to be used as directory parameter - Use same database URLs as Flask-SQLAlchemy - Document how to set up with init_app method - Document how to include a message in initial migrate - Remove checks for alembic 0.7.0. Flask-Migrate requires alembic >= 0.7 in its setup.py file, which makes all the checks for this version obsolete. - Use sys.executable in tests, also re-order imports - Cosmetic improvements to help messages Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-flask-migrate: Consolidate in a single fileLeon Anavi2020-08-312-15/+15
| | | | | | | | Consolidate inc and bb files into a single bb file. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-flask-babel: Upgrade 1.0.0 -> 2.0.0Leon Anavi2020-08-311-1/+2
| | | | | | | | | | | | | | | | | | Upgrade to release 2.0.0: - Drop Python2 support - Tests moved from unittest to pytest - Domain and caching support from Flask-BabelEx - Documentation moved from python-hosted to Github Pages. - CI moved from Travisci to Github Actions - Small documentation improvements. - Removed uncessary checks on get_translations() - localeselector and timezoneselector can be changed after creation. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-ntplib: Upgrade 0.3.3 -> 0.3.4Leon Anavi2020-08-311-5/+4
| | | | | | | | | | | | | Upgrade to release 0.3.4: - Use setuptools - update URL Use source from the GitHub repository instead of pypi because appropriate archive for this release is not available at pypi.org. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-twitter: Upgrade 3.8.0 -> 3.9.0Leon Anavi2020-08-311-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Upgrade tweepy to release 3.9.0: - Add API.create_media_metadata - Update allowed parameters for API.update_status - Add allowed parameters to API.get_status - Add allowed parameters to API.statuses_lookup - Improve API.lookup_users - Improve and optimize API.statuses_lookup, API.create_media_metadata, API.update_status - Add reverse as allowed parameter for API.lists_all - Add count as allowed parameter for API.lists_memberships - Add count as allowed parameter for API.lists_subscriptions - Add include_entities as allowed parameter for API.list_timeline - Add allowed parameters to API.list_subscribers - Add support for Python 3.8 - Update and improve setup.py - Use requests socks extra instead of requiring PySocks directly - Allow uploading of images with file names without extensions - Support uploading WebP images - Add missing attributes to Relationship model - Update max allowed size for uploaded GIFs - Add _json attribute to DirectMessage model - Update and improve tests - Add documentation for extended Tweets - Document API.lookup_users - Add documentation for running tests - Add Korean translation of documentation - Add Polish translation of documentation - Document API.lookup_friendships - Update and improve various documentation - Fix handling of invalid credentials for API.verify_credentials - Handle boolean value for API.verify_credentials include_email parameter - Allow Cursor to be used with API.list_direct_messages by adding DMCursorIterator License-Update: Use the exact line from PKG-INFO. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-cryptography: Upgrade 3.0 -> 3.1Leon Anavi2020-08-311-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | Upgrade to release 3.1: - BACKWARDS INCOMPATIBLE: Removed support for idna based :term:`U-label` parsing in various X.509 classes. This support was originally deprecated in version 2.1 and moved to an extra in 2.5. - Deprecated OpenSSL 1.0.2 support. OpenSSL 1.0.2 is no longer supported by the OpenSSL project. The next version of cryptography will drop support for it. - Deprecated support for Python 3.5. This version sees very little use and will be removed in the next release. - backend arguments to functions are no longer required and the default backend will automatically be selected if no backend is provided. - Added initial support for parsing certificates from PKCS7 files - Calling update or update_into on :class:`~cryptography.hazmat.primitives.ciphers.CipherContext` with data longer than 231 bytes no longer raises an OverflowError. This also resolves the same issue in :doc:`/fernet`. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-google-api-python-client: Upgrade 1.10.0 -> 1.10.1Leon Anavi2020-08-311-2/+2
| | | | | | | | | | | | | Upgrade to release 1.10.1: - Bug fix: discovery uses V2 when version is None - Fix deprecation warnings due to invalid escape sequences - Fix link to service accounts documentation - Update generated docs Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-flask-socketio: Upgrade 4.2.1 -> 4.3.1Leon Anavi2020-08-311-2/+2
| | | | | | | | | | | | | | | | Upgrade to release 4.3.1: - Fix is_connected in test client - Handle callbacks for emits outside of request context - Improve test client unit test to use two concurrent clients - Accept skip_sid argument in emit - Fix is_connected() method in test client - Log warning when gevent is used but WebSocket is missing - More accurate logging documentation Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-flask-socketio: Consolidate in a single fileLeon Anavi2020-08-272-20/+18
| | | | | | | | Consolidate inc and bb files into a single bb file. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-flask-wtf: Upgrade 0.14.2 -> 0.14.3Leon Anavi2020-08-271-2/+2
| | | | | | | | | | | | | Upgrade to release 0.14.3: - xrange changed to range, python3 compatible - Move Iterable import to _compat module - Fix deprecation warning - Remove flaskr example Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-flask-wtf: Consolidate in a single fileLeon Anavi2020-08-272-16/+16
| | | | | | | | Consolidate inc and bb files into a single bb file. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-cmd2: Upgrade 1.3.4 -> 1.3.5Leon Anavi2020-08-271-2/+2
| | | | | | | | | | | | | Upgrade to release 1.3.5: - Fixed RecursionError when printing an argparse.Namespace caused by custom attribute cmd2 was adding - Added get_statement() function to argparse.Namespace which returns __statement__ attribute Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-diskcache: Upgrade 5.0.1 -> 5.0.2Leon Anavi2020-08-271-2/+2
| | | | | | | | | Stay up to date and upgrade to latest release following the recent "bump version to 5.0.2" commit in the GitHub upstream repo. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-flask: Upgrade 1.1.1 -> 1.1.2Leon Anavi2020-08-271-2/+2
| | | | | | | | | | | | | Upgrade to release 1.1.2: - Work around an issue when running the flask command with an external debugger on Windows. - The static route will not catch all URLs if the Flask static_folder argument ends with a slash. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-flask: Consolidate in a single fileLeon Anavi2020-08-272-17/+17
| | | | | | | | Consolidate inc and bb files into a single bb file. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-sentry-sdk: Upgrade 0.16.5 -> 0.17.0Leon Anavi2020-08-271-2/+2
| | | | | | | | | | | | | | | | | | Upgrade to release 0.17.0: - Fix a bug where class-based callables used as Django views (without using Django's regular class-based views) would not have csrf_exempt applied. - New integration for Google Cloud Functions. - Fix a bug where a recently released version of urllib3 would cause the SDK to enter an infinite loop on networking and SSL errors. - Breaking change: Remove the traceparent_v2 option. The option has been ignored since 0.16.3, just remove it from your code. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-cmd2: Upgrade 1.3.3 -> 1.3.4Leon Anavi2020-08-271-2/+2
| | | | | | | | | | | | Upgrade to release 1.3.4: - Fixed AttributeError when CommandSet that uses as_subcommand_to decorator is loaded during cmd2.Cmd.__init__() - Improved exception messages when using mock without spec=True Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-openpyxl: Upgrade 3.0.4 -> 3.0.5Leon Anavi2020-08-271-2/+2
| | | | | | | | | | | | | | | | Upgrade to release 3.0.5 with the following bugfixes: - Incorrectly consider currency format as datetime - Cannot copy worksheets with merged cells - Empty worksheets do not return generators when looping - Hyperlinks duplicated on multiple saves - Incorrectly literal format as datetime - Links set to range of cells not preserved - Exception when opening workbook with chartsheets and tables Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-cryptography-vectors: Upgrade 2.9.2 -> 3.0Leon Anavi2020-08-271-2/+2
| | | | | | | | | | | | | | | | | | | | | | Upgrade to release 3.0: - Deprecated support for Python 2. - Added support for OpenSSH serialization format for ec, ed25519, rsa and dsa private keys - Added support for OpenSSH certificates - Added support for parsing attributes in certificate signing requests - On OpenSSL 1.1.1d and higher cryptography now uses OpenSSL's built-in CSPRNG instead of its own OS random engine because these versions of OpenSSL properly reseed on fork - Added initial support for creating PKCS12 files More details are avaialble at: https://github.com/pyca/cryptography/blob/master/CHANGELOG.rst Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-bitarray: Upgrade 1.5.2 -> 1.5.3Leon Anavi2020-08-271-2/+2
| | | | | | | | | | | Upgrade to release 1.5.3: - add optional index parameter to `.index()` to invert single bit - fix `sys.getsizeof(bitarray)` by adding `.__sizeof__()` Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-greenstalk: add recipe for greenstalk python package.Michael Fitz-Payne2020-08-251-0/+12
| | | | | | | | | | Greenstalk is a small and unopinionated Python client library for communicating with the beanstalkd work queue. The API provided mostly maps one-to-one with commands in the protocol. Signed-off-by: Michael Fitz-Payne <michael.fitz-payne@digi.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-msm: Upgrade 0.8.7 -> 0.8.8Leon Anavi2020-08-251-2/+2
| | | | | | | | | | | | | | | | | Upgrade to release 0.8.8: - increment mycroft-skills repo branch - Make sure readme is included in pip package - Add license to MANIFEST.in - Remove exec flag from LICENSE - Handle PermissionsError when creating skills repo - Concatenate list and not a string - Install Python packages in the exact order as specified in the manifest file Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pandas: Upgrade 1.1.0 -> 1.1.1Leon Anavi2020-08-251-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Upgrade to release 1.1.1: - Fixed regression in CategoricalIndex.format() where, when stringified scalars had different lengths, the shorter string would be right-filled with spaces, so it had the same length as the longest string - Fixed regression in Series.truncate() when trying to truncate a single-element series - Fixed regression where DataFrame.to_numpy() would raise a RuntimeError for mixed dtypes when converting to str - Fixed regression where read_csv() would raise a ValueError when pandas.options.mode.use_inf_as_na was set to True - Fixed regression where pandas.testing.assert_series_equal() would raise an error when non-numeric dtypes were passed with check_exact=True - Fixed regression in .groupby(..).rolling(..) where column selection was ignored - Fixed regression where DataFrame.interpolate() would raise a TypeError when the DataFrame was empty - Fixed regression in DataFrame.shift() with axis=1 and heterogeneous dtypes - Fixed regression in DataFrame.diff() with read-only data - Fixed regression in .groupby(..).rolling(..) where a segfault would occur with center=True and an odd number of values - Fixed regression in DataFrame.apply() where functions that altered the input in-place only operated on a single row - Fixed regression in DataFrame.reset_index() would raise a ValueError on empty DataFrame with a MultiIndex with a datetime64 dtype level - Fixed regression where pandas.merge_asof() would raise a UnboundLocalError when left_index, right_index and tolerance were set - Fixed regression in .groupby(..).rolling(..) where a custom BaseIndexer would be ignored - Fixed regression in DataFrame.replace() and Series.replace() where compiled regular expressions would be ignored during replacement - Bug in Styler whereby cell_ids argument had no effect due to other recent changes - Bug in pandas.testing.assert_series_equal() and pandas.testing.assert_frame_equal() where extension dtypes were not ignored when check_dtypes was set to False - Bug in to_timedelta() fails when arg is a Series with Int64 dtype containing null values - Bug in .groupby(..).rolling(..) where passing closed with column selection would raise a ValueError - Bug in DataFrame constructor failing to raise ValueError in some cases when data and index have mismatched lengths Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-typing-extensions: Upgrade 3.7.4.2 -> 3.7.4.3Leon Anavi2020-08-251-2/+2
| | | | | | | | | | | | | | Upgrade to release 3.7.4.3: - Add SupportsIndex, added in Python 3.8 - Make tests for Annotated work with Python 3.9 - Add PEP 613 TypeAlias to typing_extensions - Add tox.ini for typing_extensions - Remove extra 'use' in readme Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-inflection: Upgrade 0.5.0 -> 0.5.1Leon Anavi2020-08-251-2/+2
| | | | | | | | | | Upgrade to release 0.5.1: - Fix type hints not working Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pymisp: Upgrade 2.4.128 -> 2.4.130Leon Anavi2020-08-251-2/+2
| | | | | | | | | | | | | | | | | | | | | | | Upgrade to release 2.4.130: - Blacklist methods. - Add list of missing calls. - Add test_obj_references_export. - Add MISPObject.standalone property. Setting MISPObject.standalone updates MISPObject._standalone and add/removes "ObjectReference" from AbstractMISP.__not_jsonable using update_not_jsonable/_remove_from_not_jsonable. - Add AbstractMISP._remove_from_not_jsonable. - Bump version, dependencies, objects and types. - [testlive_comprehensive] Updated generic tagging method to match changes in MISP. - Cleanup blocklist methods. - Remove outdated example. - Bug fixes. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-dominate: Upgrade 2.5.1 -> 2.5.2Leon Anavi2020-08-251-2/+2
| | | | | | | | | | | | Upgrade to release 2.5.2: - Removed 'input' keyword reassignment - Bug fix: underscores not working in aria attributes - Adding some missing attrs to DASHED_ATTRIBUTES Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>