summaryrefslogtreecommitdiffstats
path: root/meta-python
Commit message (Collapse)AuthorAgeFilesLines
...
* python3-zopeinterface: upgrade 5.2.0 -> 5.3.0Wang Mingyu2021-03-301-1/+1
| | | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-lxml: upgrade 4.6.2 -> 4.6.3Wang Mingyu2021-03-301-1/+1
| | | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-croniter: Upgrade 1.0.9 -> 1.0.10Leon Anavi2021-03-301-1/+1
| | | | | | | | | | | Upgrade to release 1.0.10: - Remove external library natsort. Sorting of cron expression components now handled with sorted() with a custom key function. 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.5.1 -> 1.5.3Leon Anavi2021-03-301-1/+1
| | | | | | | | | | | | | Upgrade to release 1.5.3: - Remove unnecessary bindings with schema proxy from ElementPathMixin to avoid conflicts when schema is used by an XPath 3 parser - Fix schema logger 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-sqlalchemy: Upgrade 1.4.2 -> 1.4.3Leon Anavi2021-03-301-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Upgrade to release 1.4.3: orm: - Fixed a bug where python 2.7.5 (default on CentOS 7) wasn't able to import sqlalchemy, because on this version of Python exec "statement" and exec("statement") do not behave the same way. The compatibility exec_() function was used instead. - Fixed bug where ORM queries using a correlated subquery in conjunction with column_property() would fail to correlate correctly to an enclosing subquery or to a CTE when Select.correlate_except() were used in the property to control correlation, in cases where the subquery contained the same selectables as ones within the correlated subquery that were intended to not be correlated. - Fixed bug where combinations of the new "relationship with criteria" feature could fail in conjunction with features that make use of the new “lambda SQL” feature, including loader strategies such as selectinload and lazyload, for more complicated scenarios such as polymorphic loading. - Repaired support so that the ClauseElement.params() method can work correctly with a Select object that includes joins across ORM relationship structures, which is a new feature in 1.4. - Fixed issue where a "removed in 2.0" warning were generated internally by the relationship loader mechanics. orm declarative: - Fixed regression where the .metadata attribute on a per class level would not be honored, breaking the use case of per-class-hierarchy MetaData for abstract declarative classes and mixins. engine: - Restored the ResultProxy name back to the sqlalchemy.engine namespace. This name refers to the LegacyCursorResult object. mypy: - Added support for the Mypy extension to correctly interpret a declarative base class that’s generated using the as_declarative() function as well as the registry.as_declarative_base() method. postgresql: - Fixed reflection of identity columns in tables with mixed case names in PostgreSQL. sqlite: - Added support for the aiosqlite database driver for use with the SQLAlchemy asyncio extension. - Repaired the pysqlcipher dialect to connect correctly which had regressed in 1.4, and added test + CI support to maintain the driver in working condition. The dialect now imports the sqlcipher3 module for Python 3 by default before falling back to pysqlcipher3 which is documented as now being unmaintained. 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-bitarray: Upgrade 1.8.0 -> 1.8.1Leon Anavi2021-03-301-1/+1
| | | | | | | | | | | Upgrade to release 1.8.1: - moved implementation of and `hex2ba()` and `ba2hex()` to C-level - add `bitarray.util.parity()` 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-ruamel-yaml: Upgrade 0.16.13 -> 0.17.0Leon Anavi2021-03-301-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Upgrade to release 0.17.0: - this release no longer supports Python 2.7, most if not all Python 2 specific code is removed. The 0.17.x series is the last to support Python 3.5 (this also allowed for removal of the dependency on ``ruamel.std.pathlib``) - remove Python2 specific code branches and adaptations (u-strings) - prepare % code for f-strings using ``_F`` - allow PyOxidisation - replaced Python 2 compatible enforcement of keyword arguments with '*' - the old top level *functions* ``load``, ``safe_load``, ``round_trip_load``, ``dump``, ``safe_dump``, ``round_trip_dump``, ``scan``, ``parse``, ``compose``, ``emit``, ``serialize`` as well as their ``_all`` variants for multi-document streams, now issue a ``PendingDeprecationning`` (e.g. when run from pytest, but also Python is started with ``-Wd``). Use the methods on ``YAML()``, which have been extended. - fix for issue 376: indentation changes could put literal/folded scalar to start before the ``#`` column of a following comment. Effectively making the comment part of the scalar in the output. 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-docutils: new packageBartosz Golaszewski2021-03-262-0/+11
| | | | | | | | | Add a recipe for python3-docutils: a modular system for processing documentation into useful formats. 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-djangorestframework: Upgrade 3.12.2 -> 3.12.3Leon Anavi2021-03-261-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | Upgrade to release 3.12.3: - Properly handle ATOMIC_REQUESTS when multiple database configurations are used. - Bypass COUNT query when LimitOffsetPagination is configured but pagination params are not included on the request. - Respect allow_null=True on DecimalField. - Allow title cased "Yes"/"No" values with BooleanField. - Add PageNumberPagination.get_page_number() method for overriding behavior. - Fixed rendering of timedelta values in OpenAPI schemas, when present as default, min, or max fields. - Render JSONFields with indentation in browsable API forms. - Remove unnecessary database query in admin Token views. - Raise validation errors when bools are passed to PrimaryKeyRelatedField fields, instead of casting to ints. - Don't include model properties as automatically generated ordering fields with OrderingFilter. - Use deque instead of list for tracking throttling .history. 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-django: Upgrade 3.1.1 -> 3.1.7Leon Anavi2021-03-261-3/+2
| | | | | | | | | | | | Upgrade to release 3.1.7: - Fixed a regression in Django 3.1 that caused RuntimeError instead of connection errors when using only the 'postgres' database 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-sqlalchemy: Upgrade 2.4.4 -> 2.5.1Leon Anavi2021-03-261-2/+1
| | | | | | | | | | Upgrade to release 2.5.1: - Fix compatibility with Python 2.7. 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-pint: Upgrade 0.16.1 -> 0.17Leon Anavi2021-03-261-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Upgrade to release 0.17: - Add the Wh unit for battery capacity measurements - Fix issue with reducable dimensionless units when using power (Quantity**ndarray) - Fix comparisons between Quantities and Measurements. - UnitsContainer returns false if other is str and cannnot be parsed - Fix numpy.linalg.solve unit output. - Support numpy.lib.stride_tricks.sliding_window_view. - NEP29 Support docs. - Move all tests to pytest. - Fix to __pow__ and __ipow__ - Migrate to Github Actions. - Update linter to use pre-commit. - Quantity comparisons now ensure other is Quantity. - Add sign function compatibility. - Fix scalar to ndarray tolist. - Fix tolist function with scalar ndarray. - Corrected typos and dacstrings - Implements a first benchmark suite in airspeed velocity (asv). - Power for pseudo-dimensionless units. 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-pyflakes: Upgrade 2.3.0 -> 2.3.1Leon Anavi2021-03-261-1/+1
| | | | | | | | | | | Upgrade to release 2.3.1: - Allow passing tox positional arguments to unittest - Annotations no longer redefine names 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.2 -> 0.1.3Leon Anavi2021-03-261-2/+1
| | | | | | | | | | Upgrade to release 0.1.3: - Add missing test requirements to setup.py 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.7 -> 1.5.8Leon Anavi2021-03-261-1/+1
| | | | | | | | | | | Upgrade to release 1.5.8: - Fixed regression caused by SQLAlchemy 1.4 where the "alembic current" command would fail due to changes in the URL object. 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-elementpath: Upgrade 2.2.0 -> 2.2.1Leon Anavi2021-03-261-1/+1
| | | | | | | | | | | Upgrade to release 2.2.1: - Add function signatures at token registration - Some fixes to XPath tokens and more XPath 3.0 implementations 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-helpers-namespace: Upgrade 2019.1.8 -> 2021.3.24Leon Anavi2021-03-261-3/+7
| | | | | | | | | | | | | | Upgrade to release 2021.3.24: - Switched project to a src layout. - Switched project to a declarative setuptools approach - Added support to check if a helper has been registered License-Update: Fix year in the license file 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-backports-functools-lru-cache: Upgrade 1.6.1 -> 1.6.3Leon Anavi2021-03-261-3/+2
| | | | | | | | | | | | | Upgrade to release 1.6.3: - Restore universal wheel. - Packaging refresh. License-Update: Update license file, license remains the same. 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-configshell-fb: Upgrade 1.1.28 -> 1.1.29Leon Anavi2021-03-261-1/+1
| | | | | | | | | | | Upgrade to release 1.1.29: - setup.py: specify a version range for pyparsing - Don't warn if prefs file doesn't exist 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-jmespath: new packageBartosz Golaszewski2021-03-262-0/+13
| | | | | | | | | Add a recipe for jmespath: a python module implementing a query language for JSON. 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-prompt-toolkit: Upgrade 3.0.17 -> 3.0.18Leon Anavi2021-03-261-1/+1
| | | | | | | | | | Upgrade to release 3.0.18: - Added `in_thread` parameter to `Application.run`. 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-lazy-object-proxy: Upgrade 1.5.2 -> 1.6.0Leon Anavi2021-03-261-1/+1
| | | | | | | | | | | | | | Upgrade to release 1.6.0: - Added support for async special methods (__aiter__, __anext__, __await__, __aenter__, __aexit__). These are used in the async for, await` and ``async with statements. - Added the __resolved__ property. You can use it to check if the factory has been called. 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-pyperf: Upgrade 2.1.0 -> 2.2.0Leon Anavi2021-03-261-1/+1
| | | | | | | | | | | | | | | Upgrade to release 2.2.0: - --track-memory option now supports macOS by using psutil. - Added --copy-env command line option that inherits all environment variables. - The development branch master was renamed to main. See https://sfconservancy.org/news/2020/jun/23/gitbranchname/ for the rationale. 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-croniter: Upgrade 1.0.8 -> 1.0.9Leon Anavi2021-03-261-1/+1
| | | | | | | | | | Upgrade to release 1.0.9: - Remove futures dependency 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-colorlog: Upgrade 4.7.2 -> 4.8.0Leon Anavi2021-03-261-1/+1
| | | | | | | | | | Upgrade to release 4.8.0: - Reformat code with black 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-scrypt: Upgrade 0.8.6 -> 0.8.17Leon Anavi2021-03-262-24/+23
| | | | | | | | | | | | | | | | | | | | | | | | | Upgrade to release 0.8.17 and inherit dos2unix to resolve issues due to different line endings: - Add_dll_directory for python 3.8 on windows, as importlib.util.find_spec does not search all paths anymore - Add additional test vector from RFC - Fix missing import - Fix imp deprecation warning - Improve build for conda forge - Add SCRYPT_WINDOWS_LINK_LEGACY_OPENSSL environment variable, when set, openssl 1.0.2 is linked - Fix build for conda feedstock - Fix typo - Use the static libcrypto_static for windows and openssl 1.1.1 - Setup.py for windows improved, works with openssl 1.0.2 and 1.1.1 - Setup.py for windows fixed License-Update: Update years 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-sqlalchemy: Upgrade 1.3.23 -> 1.4.2Leon Anavi2021-03-241-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Upgrade to release 1.4.2: orm: - Added support for the declared_attr object to work in the context of dataclass fields. - Fixed issue in new ORM dataclasses functionality where dataclass fields on an abstract base or mixin that contained column or other mapping constructs would not be mapped if they also included a “default” key within the dataclasses.field() object. - Fixed regression where the Query.selectable accessor, which is a synonym for Query.__clause_element__(), got removed, it's now restored. - Fixed regression where use of an unnamed SQL expression such as a SQL function would raise a column targeting error if the query itself were using joinedload for an entity and was also being wrapped in a subquery by the joinedload eager loading process. - Fixed regression where the Query.filter_by() method would fail to locate the correct source entity if the Query.join() method had been used targeting an entity without any kind of ON clause. - Fixed regression where the SQL compilation of a Function would not work correctly if the object had been "annotated", which is an internal memoization process used mostly by the ORM. In particular it could affect ORM lazy loads which make greater use of this feature in 1.4. - Fixed regression where the ConcreteBase would fail to map at all when a mapped column name overlapped with the discriminator column name, producing an assertion error. The use case here did not function correctly in 1.3 as the polymorphic union would produce a query that ignored the discriminator column entirely, while emitting duplicate column warnings. As 1.4's architecture cannot easily reproduce this essentially broken behavior of 1.3 at the select() level right now, the use case now raises an informative error message instructing the user to use the .ConcreteBase._concrete_discriminator_name attribute to resolve the conflict. To assist with this configuration, .ConcreteBase._concrete_discriminator_name may be placed on the base class only where it will be automatically used by subclasses; previously this was not the case. engine: - Restored top level import for sqlalchemy.engine.reflection. This ensures that the base Inspector class is properly registered so that inspect() works for third party dialects that don't otherwise import this package. sql: - Fixed issue where using a func that includes dotted packagenames would fail to be cacheable by the SQL caching system due to a Python list of names that needed to be a tuple. - Fixed regression in the case() construct, where the "dictionary" form of argument specification failed to work correctly if it were passed positionally, rather than as a "whens" keyword argument. mypy: - Fixed issue in MyPy extension which crashed on detecting the type of a Column if the type were given with a module prefix like sa.Integer(). postgresql: - Rename the column name used by a reflection query that used a reserved word in some postgresql compatible databases. 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-isort: Upgrade 5.7.0 -> 5.8.0Leon Anavi2021-03-241-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Upgrade to release 5.8.0: - Fix: as import comments can in some cases be duplicated. - Fix: extra newline added with float-to-top, after skip, in some cases. - Fix: incorrect placement of noqa comments with multiple from imports. - Fix: in some cases different length limits for dos based line endings. - Export MyPY type hints. - Identified import statements now return runnable code. - Added "wemake" profile. - Parallel (-j) now defaults to number of CPU cores if no value is provided. - Added a safeguard against accidental usage against /. - Provide a flag --overwrite-in-place to ensure same file handle is used after sorting. - Added support for extending skips with --extend-skip and --extend-skip-glob. - Auto identification and skipping of some invalid import statements. - Ability to reverse the import sorting order. - Added ability to push star imports to the top to avoid overriding explicitly defined imports. - Doc: Skip doesn't support plain directory names, but skip_glob does. 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-twine: Upgrade 3.4.0 -> 3.4.1Leon Anavi2021-03-241-1/+1
| | | | | | | | | | | Upgrade to release 3.4.1: - Fix a regression that was causing some namespace packages with dots in them fail to upload to PyPI 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-regex: Upgrade 2020.11.13 -> 2021.3.17Leon Anavi2021-03-241-1/+1
| | | | | | | | | | | Upgrade to release 2021.3.17: - Fuzzy matching with wrong distance (unnecessary substitutions) - Missing wheel for macosx and the new M1 chip (arm64 arch) 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-humanize: Upgrade 3.2.0 -> 3.3.0Leon Anavi2021-03-241-1/+1
| | | | | | | | | | Upgrade to release 3.3.0: - Add humanize.number.clamp 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-grpcio-tools: Upgrade 1.35.0 -> 1.36.1Leon Anavi2021-03-241-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | Upgrade to release 1.36.1: - back-port: add env var protection for google-c2p resolver - Backport "Fix implicit declaration error in zlib + macOS - xDS features doc update for case insensitive prefix/full path matching - Add darwin_arm64 and darwin_arm64e to c-ares config settings - Add FileWatcher CertificateProvider - Protect xds security code with the environment variable "GRPC_XDS_EXPERIMENTAL_SECURITY_SUPPORT" - Fix visibility of libprotobuf symbols in protoc_compiler.so on Mac - [Aio] Correct type annotation of grpc.aio.ServicerContext.abort - Add limit concurrent RPC feature to asyncio server - [Aio] Fix the emtpy response handling in streaming RPC - [Backport] Implement grpc.Future interface in SingleThreadedRendezvous - [Backport] Make Python 2 an optional dependency for Bazel build 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.6.0 -> 2.7.0Leon Anavi2021-03-241-1/+1
| | | | | | | | | | | Upgrade to release 2.7.0: - Reuse engine from Flask-SQLAlchemy - Update logging configuration to include Flask-Migrate's logger 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-pyscaffold: Upgrade 4.0 -> 4.0.1Leon Anavi2021-03-241-1/+1
| | | | | | | | | | | | | Upgrade to release 4.0.1: - Fix tox -e build issue when running on Conda - Ensure snake_case for keys in setup.cfg - Update dependencies on configupdater and pyscaffoldext-django - Remove broken checks for old setuptools 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-bitarray: Upgrade 1.7.1 -> 1.8.0Leon Anavi2021-03-241-1/+1
| | | | | | | | | | | | | | | | | | | | Upgrade to release 1.8.0: - Add `bitarray.util.serialize()` and `bitarray.util.deserialize()` - Allow whitespace (ignore space and `\n\r\t\v`) in input strings, e.g. `bitarray('01 11')` or `a += '10 00'` - Add `bitarray.util.pprint()` - When initializing a bitarray from another with different bit endianness, e.g. `a = bitarray('110', 'little')` and `b = bitarray(a, 'big')`, the buffer used to be simply copied, with consequence that `a == b` would result in `False`. This is fixed now, that is `a == b` will always evaluate to `True`. - Add example showing how to jsonize bitarrays - Add 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-hexdump: Move cleanup_hexfile into install_appendKhem Raj2021-03-241-3/+1
| | | | | | | | | | | | | | | This fixes error seen during staging phase run.sysroot_stage_all.902827: line 182: cd: TOPDIR/build/tmpfs/work/core2-32-yoe-linux-musl/python3-hexdump/3.3-r0/image/usr/share: No such file or directory this happens because D is being altered outside pseudo's context, and alterning D is done after do_install ends so its likely going to race as well with subsequent functions and change pseudo context too Fixes occasionally seen build failures on autobuilders Signed-off-by: Khem Raj <raj.khem@gmail.com> Cc: Andrew Jeffery <andrew@aj.id.au> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-txdbus: add missing runtime dependenciesBartosz Golaszewski2021-03-241-0/+2
| | | | | | | | Add runtime dependencies for txdbus: python3-six and python3-twisted. 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-wpa-supplicant: replace DESCRIPTION with SUMMARYBartosz Golaszewski2021-03-221-1/+1
| | | | | | | | | | SUMMARY seems to be the preferred variable for short info on a project supported by the recipe. Replace DESCRIPTION with SUMMARY for python wpa-supplicant module. Signed-off-by: Bartosz Golaszewski <brgl@bgdev.pl> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-wpa-supplicant: fix importing the cli submoduleBartosz Golaszewski2021-03-222-0/+129
| | | | | | | | | | | The @click.argument decorator in the version of click provided by meta-python no longer takes more than one positional argument. Add a local patch for python3-wpa-supplicant that fixes the parsing error when running: 'from wpa_supplicant import cli'. Signed-off-by: Bartosz Golaszewski <brgl@bgdev.pl> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-wpa-supplicant: add runtime dependenciesBartosz Golaszewski2021-03-221-0/+2
| | | | | | | | This adds missing runtime dependencies for python3-wpa-supplicant. Signed-off-by: Bartosz Golaszewski <brgl@bgdev.pl> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-txdbus: new packageBartosz Golaszewski2021-03-222-0/+12
| | | | | | | | | Add a recipe for python3-txdbus: a native Python implementation of the DBus protocol for Twisted applications. Signed-off-by: Bartosz Golaszewski <brgl@bgdev.pl> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-urllib3: Upgrade 1.26.3 -> 1.26.4Leon Anavi2021-03-221-1/+1
| | | | | | | | | | | | Upgrade to release 1.26.4: - Changed behavior of the default SSLContext when connecting to HTTPS proxy during HTTPS requests. The default SSLContext now sets check_hostname=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-cassandra-driver: Upgrade 3.24.0 -> 3.25.0Leon Anavi2021-03-221-2/+1
| | | | | | | | | | | | | | | | | | Upgrade to release 3.25.0: - Ensure the driver can connect when invalid peer hosts are in system.peers - Implement protocol v5 checksumming - Fix the default cqlengine connection mechanism to work with Astra - Asyncore race condition cause logging exception on shutdown - Update list of reserved keywords - Drop Python 3.4 support - Update security documentation and examples to use PROTOCOL_TLS 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-soupsieve: Upgrade 2.2 -> 2.2.1Leon Anavi2021-03-221-1/+1
| | | | | | | | | | Upgrade to release 2.2.1: - Fix an issue with namespaces when one of the keys is self. 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-werkzeug: Delete recipe for 1.0.0Khem Raj2021-03-221-50/+0
| | | | | | | 1.0.1 is already in Signed-off-by: Khem Raj <raj.khem@gmail.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-werkzeug: Clarify BSD license typeKhem Raj2021-03-221-1/+1
| | | | | Signed-off-by: Khem Raj <raj.khem@gmail.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* python3-spidev: Remove recipe for 3.2Khem Raj2021-03-221-16/+0
| | | | | | | 3.5 is already there Signed-off-by: Khem Raj <raj.khem@gmail.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* packagegroup-meta-python: Add new package python3-pythonpingKhem Raj2021-03-221-0/+1
| | | | | Signed-off-by: Khem Raj <raj.khem@gmail.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
* layers: Drop gatesgarth from LAYERSERIES_COMPATKhem Raj2021-03-191-1/+1
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-wpa-supplicant: new packageBartosz Golaszewski2021-03-182-0/+13
| | | | | | | | | Add a recipe for python3-wpa-supplicant - a package allowing to talk to the wpa_supplicant over dbus using a convenient python API. Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>