summaryrefslogtreecommitdiffstats
path: root/meta-python
Commit message (Collapse)AuthorAgeFilesLines
...
* python3-flask: Upgrade 1.1.2 -> 2.0.1Leon Anavi2021-05-281-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Upgrade to release 2.0.1: - Re-add the filename parameter in send_from_directory. The filename parameter has been renamed to path, the old name is deprecated. - Mark top-level names as exported so type checking understands imports in user projects. - Fix type annotation for g and inform mypy that it is a namespace object that has arbitrary attributes. - Fix some types that weren’t available in Python 3.6.0. - Improve typing for send_file, send_from_directory, and get_send_file_max_age. - Show an error when a blueprint name contains a dot. The . has special meaning, it is used to separate (nested) blueprint names and the endpoint name. - Combine URL prefixes when nesting blueprints that were created with a url_prefix value. - Roll back a change to the order that URL matching was done. The URL is again matched after the session is loaded, so the session is available in custom URL converters. - Re-add deprecated Config.from_json, which was accidentally removed early. - Improve typing for some functions using Callable in their type signatures, focusing on decorator factories. - Nested blueprints are registered with their dotted name. This allows different blueprints with the same name to be nested at different locations. - register_blueprint takes a name option to change the (pre-dotted) name the blueprint is registered with. This allows the same blueprint to be registered multiple times with unique names for url_for. Registering the same blueprint with the same name multiple times is deprecated. #1091 - Improve typing for stream_with_context. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-flask-migrate: Upgrade 2.7.0 -> 3.0.0Leon Anavi2021-05-281-1/+1
| | | | | | | | | | | | | | Upgrade to release 3.0.0: - Remove support for Flask-Script - Use unittest testrunner - Remove dependency on six package - Added sphinx build files to .gitignore file - Fix Sphinx warning Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-prettytable: add python3-sqlite3 for ptestTrevor Gamblin2021-05-281-1/+2
| | | | | | | | Add python3-sqlite3 to ptest RDEPENDS. Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-sqlalchemy: Upgrade 1.4.11 -> 1.4.15Leon Anavi2021-05-281-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Upgrade to release 1.4.15: - A new approach has been applied to the warnings system in SQLAlchemy to accurately predict the appropriate stack level for each warning dynamically. This allows evaluating the source of SQLAlchemy-generated warnings and deprecation warnings to be more straightforward as the warning will indicate the source line within end-user code, rather than from an arbitrary level within SQLAlchemy’s own source code. orm: - Fixed additional regression caused by “eager loaders run on unexpire” feature #1763 where the feature would run for a contains_eager() eagerload option in the case that the contains_eager() were chained to an additional eager loader option, which would then produce an incorrect query as the original query-bound join criteria were no longer present. - Fixed issue in subquery loader strategy which prevented caching from working correctly. This would have been seen in the logs as a “generated” message instead of “cached” for all subqueryload SQL emitted, which by saturating the cache with new keys would degrade overall performance; it also would produce “LRU size alert” warnings. sql: - Adjusted the logic added as part of #6397 in 1.4.12 so that internal mutation of the BindParameter object occurs within the clause construction phase as it did before, rather than in the compilation phase. In the latter case, the mutation still produced side effects against the incoming construct and additionally could potentially interfere with other internal mutation routines. mysql: - Added support for the ssl_check_hostname= parameter in mysql connection URIs and updated the mysql dialect documentation regarding secure connections. Original pull request courtesy of Jerry Zhao. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-alembic: Upgrade 1.6.2 -> 1.6.4Leon Anavi2021-05-281-1/+2
| | | | | | | | | | | | | | | | | | | | | Upgrade to release 1.6.4: - Fixed regression caused by just fixed bug that scaled back the filter for unique=True/index=True too far such that these directives no longer worked for the op.create_table() op, this has been fixed. - Fixed 1.6-series regression where UniqueConstraint and to a lesser extent Index objects would be doubled up in the generated model when the unique=True / index=True flags were used. - Fixed a bug where paths defined in post-write hook options would be wrongly escaped in non posix environment (Windows). - Fixed regression where a revision file that contained its own down revision as a dependency would cause an endless loop in the traversal logic. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-websocket-client: Upgrade 1.0.0 -> 1.0.1Leon Anavi2021-05-281-1/+1
| | | | | | | | | | Upgrade to release 1.0.1: - Fix exception handling bug Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-xmlschema: Upgrade 1.6.1 -> 1.6.2Leon Anavi2021-05-281-1/+2
| | | | | | | | | | | | Upgrade to release 1.6.2: - Fix for issue key/keyref with dynamic types - Change default decoding of mixed content with only text to a string instead of a dictionary Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-pytest-runner: Upgrade 5.3.0 -> 5.3.1Leon Anavi2021-05-241-1/+1
| | | | | | | | | | Upgrade to release 5.3.1: - Refreshed package metadata. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-pysonos: Upgrade 0.0.48 -> 0.0.49Leon Anavi2021-05-241-1/+1
| | | | | | | | | | | | Upgrade to release 0.0.49: - Cleanup async_events renewal logging and exceptions - Add a pypi release action - Add next-version script for incrementing the version Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-engineio: upgrade 3.13.0 -> 4.2.0zangrc2021-05-241-2/+10
| | | | | | | | Add runtime dependency to resolve errors that occurred when import engineio. Signed-off-by: Zang Ruochen <zangrc.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-ujson: fix ptestsTrevor Gamblin2021-05-242-1/+3
| | | | | | | | | - Add python3-json and python3-pytest to ptest RDEPENDS - Correct test file path in run-ptest Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-click: Upgrade 8.0.0 -> 8.0.1Leon Anavi2021-05-241-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Upgrade to release 8.0.1: - Mark top-level names as exported so type checking understand imports in user projects. - Annotate Context.obj as Any so type checking allows all operations on the arbitrary object. - Fix some types that weren’t available in Python 3.6.0. - Fix type checking for iterating over ProgressBar object. - The importlib_metadata backport package is installed on Python < 3.8. - Arguments with nargs=-1 only use env var value if no command line values are given. - Flag options guess their type from flag_value if given, like regular options do from default. - Added documentation that custom parameter types may be passed already valid values in addition to strings. - Resolving commands returns the name that was given, not command.name, fixing an unintended change to help text and default_map lookups. When using patterns like AliasedGroup, override resolve_command to change the name that is returned if needed. - If a default value is invalid, it does not prevent showing help text. - Pass windows_expand_args=False when calling the main command to disable pattern expansion on Windows. There is no way to escape patterns in CMD, so if the program needs to pass them on as-is then expansion must be disabled. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-watchdog: Upgrade 2.1.1 -> 2.1.2Leon Anavi2021-05-241-1/+1
| | | | | | | | | | | | Upgrade to release 2.1.2: - [mac] Fix relative path handling for non-recursive watch. - [windows] On PyPy, events happening right after start() were missed. Add a workaround for that. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-pywbem: Upgrade 1.1.3 -> 1.2.0Leon Anavi2021-05-241-1/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | Upgrade to release 1.2.0 with bug fixes and enhancements: - Finalized the pywbem mock support - Logging: Added a value 'off' for the log destination in the pywbem.configure_logging() function that disables logging - Improved exception handling during the parsing of CIM-XML responses received from a WBEM server - Reduced memory consumption of CIM objects and CIM types by defining their attributes to use Python slots - Reduced memory consumption of CIM objects by using lazy initialization of dictionary-type attributes - Unsupported versions for CIM infrastructure, DTD or protocol version returned in CIM-XML responses from WBEM servers are now raised as new exceptions pywbem - In the makefile, added an ignore list for issues reported by safety along with the reasons why each issue is ignored - Improvements in the log messages of the MOFCompiler class - Added a conn_close() method to the pywbem.MOFCompiler class that closes the underlying connection - Added 'make perftest' to run performance tests Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-asyncio-glib: new packageBartosz Golaszewski2021-05-242-0/+12
| | | | | | | | | Add a recipe for asyncio-glib - an interface between asyncio and the GLib event loop for Python. Signed-off-by: Bartosz Golaszewski <brgl@bgdev.pl> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-pulsectl: upgrade 21.3.4 -> 21.5.17zangrc2021-05-241-2/+5
| | | | | | | | | | pulseaudio is an empty package. It needs libpulse.so to run, which is provided by libpulse package. When running python3-pulsectl, It needs the modules in python3-ctypes. Signed-off-by: Zang Ruochen <zangrc.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-protobuf: upgrade 3.14.0 -> 3.17.0zangrc2021-05-241-1/+1
| | | | | | Signed-off-by: Zang Ruochen <zangrc.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-itsdangerous: upgrade 2.0.0 -> 2.0.1zangrc2021-05-241-1/+2
| | | | | | Signed-off-by: Zang Ruochen <zangrc.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-xlsxwriter: upgrade 1.4.0 -> 1.4.3zangrc2021-05-241-1/+9
| | | | | | Signed-off-by: Zang Ruochen <zangrc.fnst@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-django: upgrade 3.2.2 -> 3.2.3Trevor Gamblin2021-05-191-1/+1
| | | | | | | | | | | | | | | 3.2.3 is a bugfix release: - Prepared for mysqlclient > 2.0.3 support (#32732). - Fixed a regression in Django 3.2 that caused the incorrect filtering of querysets combined with the | operator (#32717). - Fixed a regression in Django 3.2.1 where saving FileField would raise a SuspiciousFileOperation even when a custom upload_to returns a valid file path (#32718). Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-django: upgrade 2.2.22 -> 2.2.23Trevor Gamblin2021-05-192-9/+9
| | | | | | | | | | | | 2.2.23 is a bugfix release: - Fixed a regression in Django 2.2.21 where saving FileField would raise a SuspiciousFileOperation even when a custom upload_to returns a valid file path (#32718). Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-pysonos: Upgrade 0.0.46 -> 0.0.48Leon Anavi2021-05-191-1/+1
| | | | | | | | | | Upgrade to release 0.0.48: - Merge SoCo 0.22 Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-websocket-client: Upgrade 0.59.0 -> 1.0.0Leon Anavi2021-05-191-1/+1
| | | | | | | | | | | | | | | Upgrade to release 1.0.0: - Removed Python 2 code, now only Python 3 compatible - Use semver for release versions, unlike breaking release 0.58.0 - Enhance enableTrace output - Improve unit tests to over 80% code coverage - Fix old _app.py close status code bug - Replace select import with selectors Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-decorator: Upgrade 5.0.7 -> 5.0.9Leon Anavi2021-05-191-1/+1
| | | | | | | | | | | | Upgrade to release 5.0.9: - Made the decorator module more robust when decorating builtin functions lacking dunder attributes, like dict.__setitem__. - Fixed a test breaking PyPy. Restored support for Sphinx. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-websockets: Upgrade 9.0.1 -> 9.0.2Leon Anavi2021-05-191-1/+1
| | | | | | | | | | | Upgrade to release 9.0.2: - Restored compatibility of python -m websockets with Python < 3.9 - Restored compatibility with mypy Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-cbor2: Upgrade 5.2.0 -> 5.3.0Leon Anavi2021-05-191-2/+1
| | | | | | | | | | Upgrade to release 5.3.0: - Removed support for Python < 3.6 Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-haversine: Fix build with latest python/setuptoolsKhem Raj2021-05-192-0/+34
| | | | | Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-pydbus-manager: add runtime dependenciesBartosz Golaszewski2021-05-191-0/+2
| | | | | | | | This recipe is missing the runtime deps. Add them. Signed-off-by: Bartosz Golaszewski <brgl@bgdev.pl> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-aiohue: Upgrade 2.4.0 -> 2.5.0Leon Anavi2021-05-191-1/+1
| | | | | | | | | | | | | Upgrade to release 2.5.0: - Store group resource - Make sure v2 button events are translated to v1 button events - Fix normalize check - Support remotes Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-aiofiles: Upgrade 0.6.0 -> 0.7.0Leon Anavi2021-05-191-2/+1
| | | | | | | | | | | | Upgrade to release 0.7.0: - Added the aiofiles.tempfile module for async temporary files. - Switched to Poetry and GitHub actions. - Dropped 3.5 support. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-pyjwt: Upgrade 2.0.1 -> 2.1.0Leon Anavi2021-05-191-1/+1
| | | | | | | | | | | | | | | | | | | | | | | Upgrade to release 2.1.0: - Allow claims validation without making JWT signature validation mandatory - Remove padding from JWK test data - Make kty mandatory in JWK to be compliant with RFC7517 - Allow JWK without alg to be compliant with RFC7517 - Allow to verify with private key on ECAlgorithm, as well as on Ed25519Algorithm - Add caching by default to PyJWKClient - Add missing exceptions.InvalidKeyError to jwt module __init__ imports - Add support for ES256K algorithm - Add from_jwk() to Ed25519Algorithm - Add to_jwk() to Ed25519Algorithm - Export PyJWK and PyJWKSet Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-javaobj-py3: Upgrade 0.4.2 -> 0.4.3Leon Anavi2021-05-191-2/+2
| | | | | | | | | | | | | | | Upgrade to release 0.4.3: - Added support for TC_NULL as array sub-type in _read_field_value - javaobj can now read GZipped files directly (trick done in load(), which is also the underlying method used by loads()) - Fixed a type issue in BlockData/str content comparison License-Update: License remains Apache License Version 2.0 Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-sh: Upgrade 1.14.1 -> 1.14.2Leon Anavi2021-05-191-2/+1
| | | | | | | | | | | Upgrade to release 1.14.2: - bugfix where setting _ok_code to not include 0, but 0 was the exit code Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-pycocotools: new packageBartosz Golaszewski2021-05-192-0/+13
| | | | | | | | Add a recipe for building pycocotools - a Python wrapper for cocapi. Signed-off-by: Bartosz Golaszewski <brgl@bgdev.pl> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-ipython: Upgrade 7.22.0 -> 7.23.1Leon Anavi2021-05-171-1/+1
| | | | | | | | | | | | | | | | | | Upgrade to release 7.23.1: - Moved to GitHub actions away from Travis-CI, the transition may not be 100% complete (not testing on nightly anymore), but as we ran out of Travis-Ci hours on the IPython organisation that was a necessary step. - We have a new dependency: matplotlib-inline, which try to extract matplotlib inline backend specific behavior. It is available on PyPI and conda-forge thus should not be a problem to upgrade to this version. If you are a package maintainer that might be an extra dependency to package first. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-matplotlib-inline: Add recipeLeon Anavi2021-05-171-0/+8
| | | | | | | | Inline Matplotlib backend for Jupyter. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-pyroute2: Upgrade 0.5.18 -> 0.5.19Leon Anavi2021-05-171-1/+1
| | | | | | | | | | | | | | Upgrade to release 0.5.19: - ndb: fix default routes keys - mptcp: basic support - netlink: ext_ack support fix - tc: netem rate setting - NSPopen: fix fd leak Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-aiohue: Upgrade 2.3.1 -> 2.4.0Leon Anavi2021-05-171-1/+1
| | | | | | | | | | Upgrade to release 2.4.0: - Allow listening for Hue events Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-pymisp: Upgrade 2.4.142 -> 2.4.143Leon Anavi2021-05-171-1/+3
| | | | | | | | | | | | | | Upgrade to release 2.4.143: - Method to get the raw object template. - Bump version, deps. - First-seen and last-seen on attributes and objects were not checked for sanity. - Remove search_all example, use search instead. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-deprecated: Add recipeLeon Anavi2021-05-171-0/+9
| | | | | | | | | Python @deprecated decorator to deprecate old python classes, functions or methods. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-alembic: Upgrade 1.5.8 -> 1.6.2Leon Anavi2021-05-171-1/+1
| | | | | | | | | | | Upgrade to release 1.6.2: - Fixed a bug where paths defined in post-write hook options would be wrongly escaped in non posix environment (Windows) Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-m2crypto: Fix build on riscv and mipsKhem Raj2021-05-171-0/+3
| | | | | | | | | | wordlen is not so easy to calculate on RISCV, therefore pass the right ingredients so compiler does the right thing in the end Do same for mips as well Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-pymongo: Upgrade 3.11.3 -> 3.11.4Leon Anavi2021-05-141-1/+1
| | | | | | | | | | | | | Upgrade to release 3.11.4: - Bug fix where a MongoClient would mistakenly attempt to create minPoolSize connections to arbiter nodes - Bug fix that prevented PyMongo from retrying writes after a writeConcernError on MongoDB 4.4+ Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-rfc3339-validator: Upgrade 0.1.3 -> 0.1.4Leon Anavi2021-05-141-1/+1
| | | | | | | | | | Upgrade to release 0.1.4: - Fix test failure on darwin Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-pysonos: Upgrade 0.0.43 -> 0.0.46Leon Anavi2021-05-141-1/+1
| | | | | | | | | | Upgrade to release 0.0.46: - Expand matches for pipe-delimited metadata Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-click: Upgrade 7.1.2 -> 8.0.0Leon Anavi2021-05-141-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Upgrade to release 8.0.0: - Drop support for Python 2 and 3.5. - Colorama is always installed on Windows in order to provide style and color support. - Adds a repr to Command, showing the command name for friendlier debugging. - Add support for distinguishing the source of a command line parameter. - Add an optional parameter to ProgressBar.update to set the current_item. - New class attributes make it easier to use custom core objects throughout an entire application. - Use Context.with_resource() to manage resources that would normally be used in a with statement, allowing them to be used across subcommands and callbacks, then cleaned up when the context ends. - The result object returned by the test runner’s invoke() method has a return_value attribute with the value returned by the invoked command. - Required arguments with the Choice type show the choices in curly braces to indicate that one is required ({a|b|c}). - Redesign the shell completion system. - Completion correctly parses command line strings with incomplete quoting or escape sequences. - Fix formatting when Command.options_metavar is empty. - Revert adding space between option help text that wraps. - When defining a parameter, default is validated with multiple and nargs. More validation is done for values being processed as well. - HelpFormatter.write_text uses the full line width when wrapping text. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-configargparse: Upgrade 1.4 -> 1.4.1Leon Anavi2021-05-141-1/+1
| | | | | | | | | | | | | | | | Upgrade to release 1.4.1: - add ignore_help_args option to parse_known_args(..) to avoid exiting the first time this method is called when -h is specified. This can allow all arg definitions to be executed before -h is handled, even if these definitions are interleaved with calls to parse_known_args(..) - added tests - updated setup.py publish commands Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-google-api-python-client: Upgrade 2.2.0 -> 2.4.0Leon Anavi2021-05-141-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Upgrade to release 2.4.0: - alertcenter: update the api - analyticsadmin: update the api - androidenterprise: update the api - androidpublisher: update the api - artifactregistry: update the api - bigquery: update the api - chromepolicy: update the api - content: update the api - datacatalog: update the api - dataproc: update the api - dialogflow: update the api - dns: update the api - documentai: update the api - file: update the api - firebasestorage: update the api - gameservices: update the api - gkehub: update the api - lifesciences: update the api - monitoring: update the api - mybusinessaccountmanagement: update the api - networkmanagement: update the api - oslogin: update the api - pubsublite: update the api - recommender: update the api - retail: update the api - servicedirectory: update the api - servicemanagement: update the api - servicenetworking: update the api - translate: update the api - preventing accessing predefined discovery URLs when override is provided Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-websocket-client: Upgrade 0.58.0 -> 0.59.0Leon Anavi2021-05-141-3/+1
| | | | | | | | | | | | | | | | | | Upgrade to release 0.59.0: - Last main release to support Python 2 - Fix Python 2 urlparse scheme - Add support for headers with multiple value - Add debug support for reserved custom status codes - Allow multiple Set-Cookie: headers - Simplified cookie sorting - Add no_proxy support - Add Host header to HTTP proxy request - Improve PEP8 style compliance Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-itsdangerous: Upgrade 1.1.0 -> 2.0.0Leon Anavi2021-05-141-3/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Upgrade to release 2.0.0: - Drop support for Python 2 and 3.5. - JWS support (JSONWebSignatureSerializer, TimedJSONWebSignatureSerializer) is deprecated. Use a dedicated JWS/JWT library such as authlib instead. - Importing itsdangerous.json is deprecated. Import Python’s json module instead. - Simplejson is no longer used if it is installed. To use a different library, pass it as Serializer(serializer=...). - datetime values are timezone-aware with timezone.utc. Code using TimestampSigner.unsign(return_timestamp=True) or BadTimeSignature.date_signed may need to change. - If a signature has an age less than 0, it will raise SignatureExpired rather than appearing valid. This can happen if the timestamp offset is changed. - BadTimeSignature.date_signed is always a datetime object rather than an int in some cases. - Added support for key rotation. A list of keys can be passed as secret_key, oldest to newest. The newest key is used for signing, all keys are tried for unsigning. - Removed the default SHA-512 fallback signer from default_fallback_signers. - Add type information for static typing tools. License-Update: standardize license Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>