summaryrefslogtreecommitdiffstats
path: root/meta-python
Commit message (Collapse)AuthorAgeFilesLines
* python3-license-expression: Upgrade 1.0 -> 1.2Leon Anavi2020-06-251-2/+2
| | | | | | | | | | | | Upgrade to release 1.2: - Add ability to render WITH expression wrapped in parenthesis - Fix anomalous backslashes in strings - Update the thirdparty directory structure 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-license-expression: Consolidate in a single fileLeon Anavi2020-06-252-31/+29
| | | | | | | | 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-lazy-object-proxy: Upgrade 1.4.3 -> 1.5.0Leon Anavi2020-06-251-2/+2
| | | | | | | | | | | Upgrade to release 1.5.0: - Added support for __fspath__. - Dropped support for Python 3.4. 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-lazy-object-proxy: Consolidate in a single fileLeon Anavi2020-06-252-14/+12
| | | | | | | | 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-ndg-httpsclient: Consolidate in a single fileLeon Anavi2020-06-252-26/+26
| | | | | | | | | Consolidate inc and bb files into a single bb file. Fix the HOMEPAGE to point to the GitHub repository. 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-netaddr: Upgrade 0.7.19 -> 0.7.20Leon Anavi2020-06-251-2/+2
| | | | | | | | | | | | | | | | | | | | | | | Upgrade to release 0.7.20: - Fixed returning from an iterator on Python 3.7+, by Sergey Kozlov. - Fixed Python 3.8 SyntaxWarning on using `is not` with a string literal, by Stefan Nordhausen. - Fixed DeprecationWarnings by using raw strings for escape characters used in regexes, by Sean McGinnis. - Improved IPGlob documentation, by obkmeta. - Fixed exception creation in corner cases by explicitly passin error message params as tuples, by Matthias Urlichs. - Stopped manually replacing shebang of an included script. - Stopped using __file__ in all code that's expected to run in environments that don't support it (like PyOxidizer-produced binaries). - Updated all databases included in the package. 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-netaddr: Consolidate in a single fileLeon Anavi2020-06-252-15/+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-netifaces: Consolidate in a single fileLeon Anavi2020-06-252-12/+10
| | | | | | | | 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-networkx: Consolidate in a single fileLeon Anavi2020-06-252-11/+8
| | | | | | | | | Consolidate inc and bb files into a single bb file. Add a HOMEPAGE. 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-py: upgrade 1.8.1 -> 1.8.2Wang Mingyu2020-06-251-2/+2
| | | | | | Signed-off-by: Wang Mingyu <wangmy@cn.fujitsu.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-requests-toolbelt: add recipe for v0.9.1Sakib Sajal2020-06-251-0/+16
| | | | | | Signed-off-by: Sakib Sajal <sakib.sajal@windriver.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-xxhash: Upgrade 1.4.3 -> 1.4.4Leon Anavi2020-06-251-2/+2
| | | | | | | | | | | | | Upgrade to release 1.4.4: - Upgrade xxHash to v0.7.3 - Stop using PEP393 deprecated APIs - Use XXH(32|64)_canonicalFromHash to replace u2bytes and ull2bytes 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-pint: Upgrade 0.12 -> 0.13Leon Anavi2020-06-251-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Upgrade to release 0.13: - Reinstated support for pickle protocol 0 and 1, which is required by pytables - Fixed bug with multiplication of Quantity by dict - Bare zeros and NaNs (not wrapped by Quantity) are now gracefully accepted by all numpy operations; e.g. np.stack ([Quantity([1, 2], "m"), [0, np.nan]) is now valid, whereas np.stack([Quantity([1, 2], "m"), [3, 4]) will continue raising DimensionalityError. - NaN is now treated the same as zero in addition, subtraction, equality, and disequality - Fixed issue where quantities with a very large magnitude would throw an IndexError when using to_compact() - Fixed crash when a Unit with prefix is declared for the first time while a Context containing unit redefinitions is active - New implementation of 'Lx' String Format Type Option The old implementation treated 'Lx' as 'S' as produced by 'uncertainties' package, but that is not fully compatible with SIunitx. The new code protects SIunitx by fixing what unceratinties produces. - Added link to budding `pint-xarray` interface library to the docs, next to the link to pint-pandas. - Removed outdated `_dir` attribute of `UnitsRegistry`, and added `__iter__` method so that now `list(ureg)` returns a list of all units in registry. - Replace pkg_resources.version to importlib.metadata.version. - Fix typo in docs for wraps example with optional arguments. - Add momentum as a dimension - Fixed a bug where unit exponents were only partially superscripted in HTML format - Multiple contexts containing the same redefinition can now be stacked - Fixed crash when some specific combinations of contexts were enabled - Added support for checking prefixed units using `in` keyword - Updated many examples in the documentation to reflect Pint's current behavior 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-spidev: Upgrade 3.4 -> 3.5Leon Anavi2020-06-251-2/+2
| | | | | | | | | | Upgrade to release 3.5: - Fixed memory leaks 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-semver: Upgrade 2.8.1 -> 2.10.2Leon Anavi2020-06-251-2/+2
| | | | | | | | | | | | | Upgrade to release 2.10.2: - :gh:`268`: Increase coverage - :gh:`260` (:pr:`261`): Fixed __getitem__ returning None on wrong parts :pr:`263`: Doc: Add missing "install" subcommand for openSUSE 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-pytest-timeout: Upgrade 1.3.4 -> 1.4.1Leon Anavi2020-06-251-2/+2
| | | | | | | | | | | Upgrade to release 1.4.1: - Fix coverage compatibility which was broken by 1.4.0. - Better detection of when we are debugging. 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-configparser: Upgrade 4.0.2 -> 5.0.0Leon Anavi2020-06-251-3/+3
| | | | | | | | | | | | | Add toml-native as dependency. Upgrade to release 5.0.0: - Require Python 3.6 or later. For Python 2.6-3.5, use configparser < 5 (selection should be automatic when installed using pip 9 from PyPI). The 4.x line remains supported for bug fixes but will no longer be updated for future releases. 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.3.0 -> 8.4.0Leon Anavi2020-06-251-2/+2
| | | | | | | | | | | | | | | | | | | | | Upgrade to release 8.4.0: - New itertools: :func:`mark_ends` :func:`is_sorted` - Changes to existing itertools: :func:`islice_extended` can now be used with real slices The implementations for :func:`filter_except` and :func:`map_except` were improved - Other changes: Automated tests now enforce code style (using black) The various signatures of :func:`islice_extended` and :func:`numeric_range` now appear in the docs The test configuration for mypy was updated 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-setuptools-scm: Upgrade 3.5.0 -> 4.1.2Leon Anavi2020-06-251-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Upgrade to release 4.1.2: - disallow git tags without dots by default again - drop jaraco.windows from pyproject.toml, allows for wheel builds on python2 - include python 3.9 via the deadsnakes action - return release_branch_semver scheme - undo the devendoring of the samefile backport for python2.7 on windows - re-enable the building of universal wheels - fix handling of missing git/hg on python2.7 (python 3 exceptions where used) - correct the tox flake8 invocation - trigger builds on tags again - Add parentdir_project_version to support installs from GitHub release tarballs. - use Coordinated Universal Time (UTC) - switch to github actions for ci - fix documentation for tag_regex and add support for single digit versions - document handling of enterprise distros with unsupported setuptools versions - switch to declarative metadata - drop the internal copy of samefile and use a dependency on jaraco.windows on legacy systems - select git tags based on the presence of numbers instead of dots - enable getting a version form a parent folder prefix - add release-branch-semver version scheme - make global configuration available to version metadata - drop official support for python 3.4 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-certifi: Upgrade 2019.11.28 -> 2020.6.20Leon Anavi2020-06-251-2/+2
| | | | | | | | | | | | | | | | | Upgrade to release 2020.6.20: - Add python3.8 tag on setup.py - Add a "contents" function that returns the content of the cert chain. - Fix docs URL - Use resources loader to handle non-filesystem situations - Fix where() so that it works with importlib.resources when available - Clarify trust origin is Mozilla 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.12.14 -> 1.13.1Leon Anavi2020-06-251-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Upgrade to release 1.13.1: - regression fix if _fg=False - minor Travis CI fixes - bugfix for boolean long options not respecting _long_prefix - fix deprecation warning on Python 3.6 regexes - _pass_fds and _close_fds special kwargs for controlling file descriptor inheritance in child. - more efficiently closing inherited fds - bugfix where passing invalid dictionary to _env will cause a mysterious child 255 exit code. - bugfix where _in using 0 or sys.stdin wasn't behaving like a TTY, if it was in fact a TTY. - bugfix where help(sh) raised an exception - bugfix fixing broken interactive ssh tutorial from docs - change to automatic tty merging into a single pty if _tty_in=True and _tty_out=True - introducing _unify_ttys, default False, which allows explicit tty merging into single pty - contrib command for ssh connections requiring passwords - performance fix for polling output too fast when using _iter - execution contexts can now be used in python shell - bugfix ErrorReturnCode instances can now be pickled - bugfix passing empty string or None for _in hanged - bugfix where passing a filename or file-like object to _out wasn't using os.dup2 - regression make _fg work with _cwd again - an invalid _cwd now raises a ForkException not an OSError. - AIX support - added a timeout=None param to RunningCommand.wait() 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-sqlalchemy: Upgrade 1.3.12 -> 1.3.17Leon Anavi2020-06-251-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | Upgrade to release 1.3.17: - orm Bug fixes - orm Added an accessor ColumnProperty.Comparator.expressions which provides access to the group of columns mapped under a multi-column ColumnProperty attribute. - orm Introduce _orm.relationship.sync_backref flag in a relationship to control if the synchronization events that mutate the in-Python attributes are added. This supersedes the previous change #5149, which warned that viewonly=True relationship target of a back_populates or backref configuration would be disallowed. - engine Bug fixes - schema Bug fixes - schema Add comment attribute to _schema.Column __repr__ method. The year in LICENSE has been updated so LIC_FILES_CHKSUM was changed. 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-msgpack: Upgrade 0.6.2 -> 1.0.0Leon Anavi2020-06-221-2/+2
| | | | | | | | | | | | | | | | | | | | | Upgrade to release 1.0.0: - Remove Python 2 support from the msgpack/_cmsgpack. msgpack/fallback still supports Python 2. - Remove encoding option from the Packer and Unpacker. - Unpacker: The default value of max_buffer_type is changed to 100MiB. - Unpacker: strict_map_key is True by default now. - Unpacker: String map keys are interned. - Drop old buffer protocol support. - Support Timestamp type. - Support serializing and decerializing datetime object with tzinfo. - Unpacker: Fix Unpacker.read_bytes() in fallback implementation. 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-toml: Upgrade 0.10.0 -> 0.10.1Leon Anavi2020-06-221-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | Upgrade to release 0.10.1: - Removed test for unexpected EOF while parsing string - Raise an exception if EOF is reached and a string is unterminated - Allow loading from bytes paths. - Fix the issue where the parser fails on time attr with no space after = - Fix trailing whitespace in break - Handle arrays of multiline strings - Fix bad syntax handling - Improve professionalism of error message. - Extend TomlNumpyEncoder to numpy integer types. - Fix loading values when a line has " }" after a boolean. The copyright notices were updated and the md5 checksum has changed. The license remains MIT. 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-booleanpy: Upgrade 3.7 to 3.8Leon Anavi2020-06-221-3/+3
| | | | | | | | | | | | | | | Upgrade to release 3.8: - Add support for evaluation of boolean expression. - Fix parsing of tokens that have a number as the first character. - Restore proper Python 2 compatibility. - Add pointers to Linux distro packages. Change LICENSE.txt md5 checksum because the year has been updated. 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-ptyprocess: Consolidate in a single fileLeon Anavi2020-06-222-42/+42
| | | | | | | | 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-prompt-toolkit: Upgrade 2.0.10 -> 3.0.5Leon Anavi2020-06-221-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Upgrade to release 3.0.5 and add HOMEPAGE. The new release brings: New features: - (almost) 100% type annotated. - Native asyncio instead of custom event loops. - Added shift-based text selection. - Added many more vt100 ANSI sequences and keys. - Improved control/shift key support in Windows. - No Mypy errors in prompt_toolkit anymore. - Added `set_exception_handler` optional argument to `PromptSession.prompt()`. Breaking changes: - Python 2 support has been dropped. Minimal Python version is now 3.6, although 3.7 is preferred (because of ContextVars). - Native asyncio, so some async code becomes slightly different. - The active `Application` became a contextvar. Which means that it should be propagated correctly to the code that requires it. However, random other threads or coroutines won't be able to know what the current application is. - The dialog shortcuts API changed. All dialog functions now return an `Application`. You still have to call either `run()` or `run_async` on the `Application` object. - The way inputhooks work is changed. - `patch_stdout` now requires an `Application` as input. - `ShiftControl` has been replaced with `ControlShift` and `s-c` with `c-s` in key bindings. Aliases for backwards-compatibility have been added. Fixes: - Bugfix in invalidate code. `PromptSession` was invalidating the UI continuously. - Add uvloop support. - Forwarded `set_exception_handler` in `Application.run` to the `run_async` call. - Bugfix in `NestedCompleter` when there is a leading space. - Bugfix in mouse handling on Windows. 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: Consolidate in a single fileLeon Anavi2020-06-222-19/+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-pretend: Consolidate in a single fileLeon Anavi2020-06-222-10/+10
| | | | | | | | 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-pathlib2: Consolidate in a single fileLeon Anavi2020-06-222-12/+12
| | | | | | | | 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-passlib: Consolidate in a single fileLeon Anavi2020-06-222-20/+20
| | | | | | | | | | | Consolidate inc and bb files into a single bb file. Update HOMEPAGE. Due to BitBucket deprecating Mercurial support, Passlib's public repository and issue tracker has moved to https://foss.heptapod.net/python-libs/passlib/wikis/home 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: Consolidate in a single fileLeon Anavi2020-06-222-28/+26
| | | | | | | | 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-wtforms: upgrade 2.2.1 -> 2.3.1Wang Mingyu2020-06-191-3/+3
| | | | | | | | | | License-Update: Updated text to BSD-3-Clause [1] [1] https://github.com/wtforms/wtforms/commit/c2f28fc2972c27924202a3c56a75325bf845b81e#diff-cf47bc86e86f9fdc5feae6f28982bcb2 Signed-off-by: Wang Mingyu <wangmy@cn.fujitsu.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pocketsphinx: Inherit features_checkLeon Anavi2020-06-191-1/+1
| | | | | | | | | | Inherit features_check to fix unhandled-features-check warning while executing do_package_qa. Suggested-by: Khem Raj <raj.khem@gmail.com> 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-pyrad: add packageArmin Kuster2020-06-191-0/+9
| | | | | | Signed-off-by: Armin Kuster <akuster808@gmail.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-smpplib: add packageArmin Kuster2020-06-191-0/+9
| | | | | | Signed-off-by: Armin Kuster <akuster808@gmail.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-sqlsoup: add packageArmin Kuster2020-06-191-0/+9
| | | | | | Signed-off-by: Armin Kuster <akuster808@gmail.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-huey: Add packageArmin Kuster2020-06-191-0/+10
| | | | | | Signed-off-by: Armin Kuster <akuster808@gmail.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-flask-versioned: Add packageArmin Kuster2020-06-191-0/+9
| | | | | | Signed-off-by: Armin Kuster <akuster808@gmail.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-croniter: add packageArmin Kuster2020-06-191-0/+11
| | | | | | Signed-off-by: Armin Kuster <akuster808@gmail.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-configobj: Add packageArmin Kuster2020-06-191-0/+9
| | | | | | Signed-off-by: Armin Kuster <akuster808@gmail.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-periphery: Upgrade 2.0.1 -> 2.1.0Leon Anavi2020-06-181-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Upgrade to release 2.1.0. Use LICENSE instead of PKG-INFO in LIC_FILES_CHKSUM. The new release brings the following changes: GPIO: - Add poll_multiple() static method. - Add line consumer label property. - Add line bias, line drive, and inverted properties. - Add additional properties as keyword arguments to constructor for character device GPIOs. - Only unexport GPIO in close() if exported in open for sysfs GPIOs. - Improve wording and fix typos in docstrings. Serial: - Fix performance of blocking read in read(). - Raise exception on unexpected empty read in read(), which may be caused by a serial port disconnect. - Add vmin and vtime properties for the corresponding termios settings. - Add support for termios timeout with read(). - Improve wording in docstrings. 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-periphery: Consolidate in a single fileLeon Anavi2020-06-182-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-pexpect: Consolidate in a single fileLeon Anavi2020-06-182-24/+24
| | | | | | | | 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>
* add python3-argexecRyan Rowe2020-06-181-0/+17
| | | | | | Signed-off-by: Ryan Rowe <rrowe@xevo.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* add python3-dynamic-dispatchRyan Rowe2020-06-181-0/+18
| | | | | | Signed-off-by: Ryan Rowe <rrowe@xevo.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-typeguard: Upgrade 2.7.1 -> 2.9.1Ryan Rowe2020-06-171-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2.9.1 (2020-06-07) - Fixed ImportError on Python < 3.8 when typing_extensions was not installed 2.9.0 (2020-06-06) - Upped the minimum Python version from 3.5.2 to 3.5.3 - Added support for typing.NoReturn - Added full support for typing_extensions (now equivalent to support of the typing module) - Added the option of supplying check_type() with globals/locals for correct resolution of forward references - Fixed erroneous TypeError when trying to check against non-runtime typing.Protocol (skips the check for now until a proper compatibility check has been implemented) - Fixed forward references in TypedDict not being resolved - Fixed checking against recursive types 2.8.0 (2020-06-02) - Added support for the Mock and MagicMock types (PR by prescod) - Added support for typing_extensions.Literal (PR by Ryan Rowe) - Fixed unintended wrapping of untyped generators (PR by prescod) - Fixed checking against bound type variables with check_type() without a call memo - Fixed error message when checking against a Union containing a Literal Signed-off-by: Ryan Rowe <rrowe@xevo.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python-kconfiglib.inc: RemoveLeon Anavi2020-06-171-8/+0
| | | | | | | | | | Remove inc file because the recipe python3-kconfiglib has been alredy consolidated in a single file. I forgot to delete the inc file in the previous commit. 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: Enable ptestZheng Ruoqin2020-06-172-1/+17
| | | | | | Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-dnspython: Enable ptestZheng Ruoqin2020-06-172-1/+17
| | | | | | Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>