Commit Graph

4104 Commits

Author SHA1 Message Date
Alexander Kanavin
d5b6841bf8 python3-m2crypto: address build failure with openssl 3.x
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-10-14 07:15:36 -07:00
Alexander Kanavin
539a6d36f1 python3-gmpy2: update 2.0.8 -> 2.1.0rc1
This resolves python 3.10 compatilbility issues.

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-10-14 07:15:36 -07:00
Alexander Kanavin
b0e66ebc2a python3-yappi: add python 3.10 fix
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-10-14 07:15:36 -07:00
Trevor Gamblin
f2152d7904 python3-posix-ipc: Add recipe for version 1.0.5
Port the recipe from meta-openstack and do an uprev to 1.0.5.

Original recipe is here:

http://git.yoctoproject.org/cgit/cgit.cgi/meta-cloud-services/tree/meta-openstack/recipes-devtools/python/python3-posix-ipc_1.0.4.bb

Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-10-08 09:25:01 -07:00
Chandana kalluri
a33507c372 python3-humanfriendly: Add nativesdk to BBCLASSEXTEND
Add nativesdk to BBCLASSEXTEND to enable recipes that produce files intended
for host portion the SDK

Signed-off-by: Sai Hari Chandana Kalluri <chandana.kalluri@xilinx.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-09-28 09:15:08 -07:00
zhengruoqin
a49f8f7732 python3-humanfriendly: upgrade 9.2 -> 10.0
`Release 10.0`_ (2021-09-17)
----------------------------
**Noteworthy changes:**

- Merged pull request `#45`_ to resolve the issue caused by the conditional
  :pypi:`pyreadline` requirement on Windows not supporting Python 3.9+.

- Updated the readme to use Python 3 in the example (reported in issue `#56`_).
  Also added a mention of the ``humanfriendly --demo`` command.

- Removed the ``humanfriendly.compat.unittest`` alias that presumably no-one is
  using at this point; it had been rendered useless quite a long time ago
  (requested in issue `#53`_).

**Internal changes:**

- Merged pull request `#54`_ which migrates the :pypi:`humanfriendly` project
  from Travis CI to GitHub Actions and from Coveralls.io to Codecov.

- Fixed a deprecation warning concerning ``setup.cfg`` and some Sphinx
  documentation errors.

.. _Release 10.0: https://github.com/xolox/python-humanfriendly/compare/9.2...10.0
.. _#45: https://github.com/xolox/python-humanfriendly/pull/45
.. _#53: https://github.com/xolox/python-humanfriendly/issues/53
.. _#54: https://github.com/xolox/python-humanfriendly/pull/54
.. _#56: https://github.com/xolox/python-humanfriendly/issues/56

Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-09-28 09:15:08 -07:00
zhengruoqin
796b7f6f4c python3-huey: upgrade 2.4.0 -> 2.4.1
* Attempt to reconnect to database if connection becomes unusable (e.g. due to
  a server restart). See: `huey.contrib.sql_huey.SqlHuey`.
* Do not use a soft file-lock for `FileStorage` - use `fcntl.flock()` instead.

[View commits](https://github.com/coleifer/huey/compare/2.4.0...2.4.1)

Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-09-28 09:15:08 -07:00
zhengruoqin
6cdaf5cc06 python3-cmd2: upgrade 2.1.2 -> 2.2.0
* Bug Fixes
  * Fixed extra space appended to each alias by "alias list" command
* Enhancements
  * New function `set_default_ap_completer_type()` allows developer to extend and modify the
    behavior of `ArgparseCompleter`.
  * Added `ArgumentParser.get_ap_completer_type()` and `ArgumentParser.set_ap_completer_type()`. These
    methods allow developers to enable custom tab completion behavior for a given parser by using a custom
    `ArgparseCompleter`-based class.
  * Added `ap_completer_type` keyword arg to `Cmd2ArgumentParser.__init__()` which saves a call
    to `set_ap_completer_type()`. This keyword will also work with `add_parser()` when creating subcommands
    if the base command's parser is a `Cmd2ArgumentParser`.
  * New function `register_argparse_argument_parameter()` allows developers to specify custom
    parameters to be passed to the argparse parser's `add_argument()` method. These parameters will
    become accessible in the resulting argparse Action object when modifying `ArgparseCompleter` behavior.
  * Using `SimpleTable` in the output for the following commands to improve appearance.
    * help
    * set (command and tab completion of Settables)
    * alias tab completion
    * macro tab completion
  * Tab completion of `CompletionItems` now includes divider row comprised of `Cmd.ruler` character.
  * Removed `--verbose` flag from set command since descriptions always show now.
  * All cmd2 built-in commands now populate `self.last_result`.
  * Argparse tab completer will complete remaining flag names if there are no more positionals to complete.
  * Updated `async_alert()` to account for `self.prompt` not matching Readline's current prompt.
* Deletions (potentially breaking changes)
  * Deleted ``set_choices_provider()`` and ``set_completer()`` which were deprecated in 2.1.2

Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-09-28 09:15:08 -07:00
Armin Kuster
def97d2331 README: update to main repo
The main repo is sourced from git://git.openembedded.org not github.
Don't think oe-core.git exists.

Lets be constent across all sub layers.

Drop Revisions and Prioriiy from repo references as they are not used.

Signed-off-by: Armin Kuster <akuster808@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-09-27 11:34:55 -07:00
zangrc
7ed3c97bc9 python3-tqdm: upgrade 4.62.2 -> 4.62.3
-License-Update: Modify part description.
old: If a copy of the MPL was not distributed with this project,
new: If a copy of the MPL was not distributed with this file,

v4.62.3 (2021-09-20)#
whl|asc
fix minor typo (#1246)
minor example fix (#1246)
misc tidying & refactoring
misc build/dev framework updates
update dependencies
update linters
update docs deployment branches
misc test/ci updates
test forks
tidy OS & Python version tests
bump primary python version 3.7 => 3.8
beta py3.10 testing
fix py2.7 tests
better timeout handling

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>
2021-09-27 11:34:15 -07:00
zangrc
8906fbe171 python3-sqlparse: upgrade 0.4.1 -> 0.4.2
Release 0.4.2 (Sep 10, 2021)
----------------------------

Notable Changes

* IMPORTANT: This release fixes a security vulnerability in the
  strip comments filter. In this filter a regular expression that was
  vulnerable to ReDOS (Regular Expression Denial of Service) was
  used. See the security advisory for details: https://github.com/andialbrecht/sqlparse/security/advisories/GHSA-p5w8-wqhj-9hhf
  The vulnerability was discovered by @erik-krogh and @yoff from
  GitHub Security Lab (GHSL). Thanks for reporting!

Enhancements

* Add ELSIF as keyword (issue584).
* Add CONFLICT and ON_ERROR_STOP keywords (pr595, by j-martin).

Bug Fixes

* Fix parsing of backticks (issue588).
* Fix parsing of scientific number (issue399).

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>
2021-09-27 11:34:15 -07:00
zangrc
e177fb8221 python3-robotframework: upgrade 4.1 -> 4.1.1
Robot Framework 4.1.1 is mostly a bug fix release, but it also adds official Python 3.10 support.

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>
2021-09-27 11:34:15 -07:00
zangrc
81a7b2cdf3 python3-pyzmq: upgrade 22.2.1 -> 22.3.0
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>
2021-09-27 11:34:15 -07:00
zangrc
3c257b3417 python3-pyro4: upgrade 4.80 -> 4.81
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>
2021-09-27 11:34:15 -07:00
zangrc
dd0cd45d18 python3-pychromecast: upgrade 9.2.0 -> 9.2.1
What's Changed
Avoid deadlock in Youtube controller
Remove unnecessary app launch in quickplay
Bump black from 21.7b0 to 21.9b0
Bump pylint from 2.9.6 to 2.10.2
Bump pylint from 2.9.5 to 2.9.6
Bump pylint from 2.9.3 to 2.9.5
Bump black from 21.6b0 to 21.7b0
Add force_launch option to BaseController.launch
Bump pylint from 2.9.1 to 2.9.3
Bump pylint from 2.8.3 to 2.9.1
Adjust to pylint 2.9.0
Bump black from 21.5b2 to 21.6b0

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>
2021-09-27 11:34:15 -07:00
Khem Raj
42e7e643c7 python3-systemd: Inherit pkgconfig
Fixes
FileNotFoundError: [Errno 2] No such file or directory: 'pkg-config'

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-09-24 08:11:53 -07:00
Khem Raj
b243b1f84f python3-pyparted: Inherit pkgconfig
Fixes
FileNotFoundError: [Errno 2] No such file or directory: 'pkg-config'

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-09-24 08:11:53 -07:00
Khem Raj
47d9a84023 python3-h5py: Inherit pkgconfig
Fixes
error: pkg-config probably not installed: FileNotFoundError(2, 'No such file or directory')

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-09-24 08:11:53 -07:00
Khem Raj
ed262ee60a python3-icu: Inherit pkgconfig
Fixes
RuntimeError:
Please install pkg-config on your system or set the PYICU_CFLAGS environment
variable to the flags required by the C++ compiler to find the header files
for ICU, and possibly -std=c++11 if using ICU version >= 60

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-09-24 08:11:53 -07:00
Khem Raj
9388e0f23c python3-lxml: Inherit pkgconfig
It was part of default dependencies before

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-09-24 08:11:53 -07:00
Armin Kuster
aee2f10638 python3-flask-bootstrap: Update LICENSES
"BSD" is ambiguous, use the precise licenses BSD-3-Clause

Missing MIT and Apache 2-0...

Signed-off-by: Armin Kuster <akuster808@gmail.com>

--
v2]
Too many 'ands'

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-09-20 08:43:37 -07:00
Armin Kuster
0f65032120 python3-send2trash: set precise BSD license
"BSD" is ambiguous, use the precise licenses BSD-3-Clause

Signed-off-by: Armin Kuster <akuster808@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-09-20 08:43:37 -07:00
Armin Kuster
7778fd743d python3-jdcal: set precise BSD license
"BSD" is ambiguous, use the precise licenses BSD-2-Clause

Signed-off-by: Armin Kuster <akuster808@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-09-20 08:43:37 -07:00
Armin Kuster
1b3828ccb2 python3-kiwisolver: set precise BSD license
"BSD" is ambiguous, use the precise licenses BSD-3-Clause

Signed-off-by: Armin Kuster <akuster808@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-09-20 08:43:37 -07:00
Armin Kuster
e8225d5668 python3-gnupg: set precise BSD license
"BSD" is ambiguous, use the precise licenses BSD-3-Clause

Signed-off-by: Armin Kuster <akuster808@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-09-20 08:43:37 -07:00
Armin Kuster
f458d300d8 python3-aenum: set precise BSD license
"BSD" is ambiguous, use the precise licenses BSD-3-Clause

Signed-off-by: Armin Kuster <akuster808@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-09-20 08:43:37 -07:00
Armin Kuster
a1e8a2d680 python3-geojson: set precise BSD license
"BSD" is ambiguous, use the precise licenses BSD-3-Clause

Signed-off-by: Armin Kuster <akuster808@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-09-20 08:43:37 -07:00
Armin Kuster
c9a59786bd python3-pyperclip:set precise BSD license
"BSD" is ambiguous, use the precise licenses BSD-3-Clause

Signed-off-by: Armin Kuster <akuster808@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-09-20 08:43:37 -07:00
Armin Kuster
a8f0d90dc9 python3-webencodings: set precise BSD license
"BSD" is ambiguous, use the precise licenses BSD-3-Clause

Signed-off-by: Armin Kuster <akuster808@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-09-20 08:43:37 -07:00
Armin Kuster
af46e0d4bf python3-sqlparse: set precise BSD license
"BSD" is ambiguous, use the precise licenses BSD-3-Clause

Signed-off-by: Armin Kuster <akuster808@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-09-20 08:43:37 -07:00
Armin Kuster
a998097ba0 python3-sympy: set precise BSD license
"BSD" is ambiguous, use the precise licenses BSD-3-Clause

Signed-off-by: Armin Kuster <akuster808@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-09-20 08:43:37 -07:00
Armin Kuster
bc614d67f0 python3-mpmath: set precise BSD license
"BSD" is ambiguous, use the precise licenses BSD-3-Clause

Signed-off-by: Armin Kuster <akuster808@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-09-20 08:43:37 -07:00
Armin Kuster
60490f912b python3-ipython:set precise BSD license
"BSD" is ambiguous, use the precise licenses BSD-3-Clause

Signed-off-by: Armin Kuster <akuster808@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-09-20 08:43:37 -07:00
Armin Kuster
352707a9b4 python3-parallax: set precise BSD license
"BSD" is ambiguous, use the precise licenses BSD-3-Clause

Signed-off-by: Armin Kuster <akuster808@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-09-20 08:43:37 -07:00
Armin Kuster
52cc5505eb python3-traitlets: set precise BSD license
"BSD" is ambiguous, use the precise licenses BSD-3-Clause

Signed-off-by: Armin Kuster <akuster808@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-09-20 08:43:37 -07:00
Armin Kuster
5eb413fa00 python3-ipython-genutils: set precise BSD license
"BSD" is ambiguous, use the precise licenses BSD-3-Clause

Signed-off-by: Armin Kuster <akuster808@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-09-20 08:43:37 -07:00
Armin Kuster
b824795302 python3-dill: set precise BSD license
"BSD" is ambiguous, use the precise licenses BSD-3-Clause

Signed-off-by: Armin Kuster <akuster808@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-09-20 08:43:37 -07:00
Armin Kuster
34fe7c761a python3-cycler: set precise BSD license
"BSD" is ambiguous, use the precise licenses BSD-3-Clause

Signed-off-by: Armin Kuster <akuster808@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-09-20 08:43:36 -07:00
zhengruoqin
0f21174c99 python3-pulsectl: upgrade 21.5.18 -> 21.9.1
Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-09-17 08:36:19 -07:00
zhengruoqin
a6b48db6fe python3-pandas: upgrade 1.3.2 -> 1.3.3
Fixed regressions
Fixed regression in DataFrame constructor failing to broadcast for defined Index and len one list of Timestamp
Fixed regression in GroupBy.agg() incorrectly raising in some cases
Fixed regression in GroupBy.apply() where nan values were dropped even with dropna=False
Fixed regression in GroupBy.quantile() which was failing with pandas.NA
Fixed regression in merge() where on columns with ExtensionDtype or bool data types were cast to object in right and outer merge
Fixed regression in RangeIndex.where() and RangeIndex.putmask() raising AssertionError when result did not represent a RangeIndex
Fixed regression in read_parquet() where the fastparquet engine would not work properly with fastparquet 0.7.0
Fixed regression in DataFrame.loc.__setitem__() raising ValueError when setting array as cell value
Fixed regression in is_list_like() where objects with __iter__ set to None would be identified as iterable
Fixed regression in DataFrame.__getitem__() raising error for slice of DatetimeIndex when index is non monotonic
Fixed regression in Resampler.aggregate() when used after column selection would raise if func is a list of aggregation functions
Fixed regression in DataFrame.corr() where Kendall correlation would produce incorrect results for columns with repeated values
Fixed regression in DataFrame.groupby() where aggregation on columns with object types dropped results on those columns
Fixed regression in Series.fillna() raising TypeError when filling float Series with list-like fill value having a dtype which couldn’t cast lostlessly (like float32 filled with float64)
Fixed regression in read_csv() raising AttributeError when the file handle is an tempfile.SpooledTemporaryFile object
Fixed performance regression in core.window.ewm.ExponentialMovingWindow.mean()

Performance improvements
Performance improvement for DataFrame.__setitem__() when the key or value is not a DataFrame, or key is not list-like

Bug fixes
Fixed bug in DataFrameGroupBy.agg() and DataFrameGroupBy.transform() with engine="numba" where index data was not being correctly passed into func

Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-09-17 08:36:19 -07:00
zhengruoqin
c28aa6bab6 python3-openpyxl: upgrade 3.0.7 -> 3.0.8
Bugfixes
Ignore blank ignored in existing Data Validations
Add support for cell protection for merged cell ranges
Timezone-aware datetimes raise an Exception
Improved normalisation of chart series
Catch OverflowError for out of range datetimes
Alignment.relativeIndent can be negative
Incorrect default value groupBy attribute

Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-09-17 08:36:19 -07:00
zangrc
01b96e4b8b python3-grpcio: upgrade 1.39.0 -> 1.40.0
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>
2021-09-17 08:36:19 -07:00
zangrc
750f28d538 python3-grpcio-tools: upgrade 1.39.0 -> 1.40.0
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>
2021-09-17 08:36:19 -07:00
zangrc
8f87c3d3c2 python3-decorator: upgrade 5.0.9 -> 5.1.0
Added a function `decoratorx` using the `FunctionMaker` and thus
preserving the signature of `__code__` objects. Then fixed three small bugs:
- Sphinx was printing a few warnings when building the documentation, as
  signaled by Tomasz Kłoczko
- functions decorated with `decorator.contextmanager` were one-shot,
  as discovered by Alex Pizarro.
- `decorator.decorator` was not passing the kwsyntax argument.

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>
2021-09-17 08:36:19 -07:00
zangrc
c06d4366e6 python3-bitarray: upgrade 2.3.3 -> 2.3.4
2021-09-12   2.3.4:
-------------------
  * Fix `util.ba2int()` for frozenbitarrays.  A bug was introduced in 2.3.0
    as `.tobytes()` no longer treats pad bits for read-only buffers as zero.
  * add tests

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>
2021-09-17 08:36:19 -07:00
zangrc
50b9128ed0 python3-beautifulsoup4: upgrade 4.9.3 -> 4.10.0
= 4.10.0 (20210907)

* This is the first release of Beautiful Soup to only support Python
  3. I dropped Python 2 support to maintain support for newer versions
  (58 and up) of setuptools. See:
  https://github.com/pypa/setuptools/issues/2769 [bug=1942919]

* The behavior of methods like .get_text() and .strings now differs
  depending on the type of tag. The change is visible with HTML tags
  like <script>, <style>, and <template>. Starting in 4.9.0, methods
  like get_text() returned no results on such tags, because the
  contents of those tags are not considered 'text' within the document
  as a whole.

  But a user who calls script.get_text() is working from a different
  definition of 'text' than a user who calls div.get_text()--otherwise
  there would be no need to call script.get_text() at all. In 4.10.0,
  the contents of (e.g.) a <script> tag are considered 'text' during a
  get_text() call on the tag itself, but not considered 'text' during
  a get_text() call on the tag's parent.

  Because of this change, calling get_text() on each child of a tag
  may now return a different result than calling get_text() on the tag
  itself. That's because different tags now have different
  understandings of what counts as 'text'. [bug=1906226] [bug=1868861]

* NavigableString and its subclasses now implement the get_text()
  method, as well as the properties .strings and
  .stripped_strings. These methods will either return the string
  itself, or nothing, so the only reason to use this is when iterating
  over a list of mixed Tag and NavigableString objects. [bug=1904309]

* The 'html5' formatter now treats attributes whose values are the
  empty string as HTML boolean attributes. Previously (and in other
  formatters), an attribute value must be set as None to be treated as
  a boolean attribute. In a future release, I plan to also give this
  behavior to the 'html' formatter. Patch by Isaac Muse. [bug=1915424]

* The 'replace_with()' method now takes a variable number of arguments,
  and can be used to replace a single element with a sequence of elements.
  Patch by Bill Chandos. [rev=605]

* Corrected output when the namespace prefix associated with a
  namespaced attribute is the empty string, as opposed to
  None. [bug=1915583]

* Performance improvement when processing tags that speeds up overall
  tree construction by 2%. Patch by Morotti. [bug=1899358]

* Corrected the use of special string container classes in cases when a
  single tag may contain strings with different containers; such as
  the <template> tag, which may contain both TemplateString objects
  and Comment objects. [bug=1913406]

* The html.parser tree builder can now handle named entities
  found in the HTML5 spec in much the same way that the html5lib
  tree builder does. Note that the lxml HTML tree builder doesn't handle
  named entities this way. [bug=1924908]

* Added a second way to pass specify encodings to UnicodeDammit and
  EncodingDetector, based on the order of precedence defined in the
  HTML5 spec, starting at:
  https://html.spec.whatwg.org/multipage/parsing.html#parsing-with-a-known-character-encoding

  Encodings in 'known_definite_encodings' are tried first, then
  byte-order-mark sniffing is run, then encodings in 'user_encodings'
  are tried. The old argument, 'override_encodings', is now a
  deprecated alias for 'known_definite_encodings'.

  This changes the default behavior of the html.parser and lxml tree
  builders, in a way that may slightly improve encoding
  detection but will probably have no effect. [bug=1889014]

* Improve the warning issued when a directory name (as opposed to
  the name of a regular file) is passed as markup into the BeautifulSoup
  constructor. [bug=1913628]

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>
2021-09-17 08:36:19 -07:00
zangrc
cebf01f326 python3-transitions: upgrade 0.8.8 -> 0.8.9
Release 0.8.8 is a minor release and contains a bugfix for HSM, a feature for `GraphSupport` and changes internal cache handling:

- Bugfix #544: `NestedEvent` now wraps the machine's scope into partials passed to `HierarchicalMachine._process`. This prevents queued transitions from losing their scope.
- Feature #533: `(A)Graph.draw` function (object returned by `GraphMachine.get_graph()`) can be passed a file/stream object as first parameter or `None`. The later will result in `draw` returning a binary string. (thanks @Blindfreddy).
- Feature #532: Use id(model) instead of model for machine-bound caches in `LockedMachine`, `AsyncMachine` and `GraphMachine`. This might influence pickling (thanks @thedrow).

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>
2021-09-10 06:55:20 -07:00
zangrc
5f60aab530 python3-lrparsing: upgrade 1.0.16 -> 1.0.17
* New: Default to everything using python3
  * New: Port to Debian bullseye

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>
2021-09-10 06:55:20 -07:00
zangrc
8d3c5ab2cb python3-bitarray: upgrade 2.3.2 -> 2.3.3
2021-09-05   2.3.3:
-------------------
  * improve some error messages
  * add tests

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>
2021-09-10 06:55:20 -07:00
Khem Raj
e03b664b71 packagegroup-meta-python: Add python3-portalocker
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-09-10 06:55:20 -07:00
Samuel Dolt
1ebdeedef6 python3-portalocker: add recipe
Signed-off-by: Samuel Dolt <samuel.dolt.ext@siemens.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-09-10 06:55:20 -07:00
Trevor Gamblin
4b9bceea4c python3-pillow: upgrade 8.3.1 -> 8.3.2
From the release notes:

- CVE-2021-23437: Avoid a potential ReDoS (regular expression denial
of service) in ImageColor’s getrgb() by raising ValueError if the
color specifier is too long. Present since Pillow 5.2.0.
- Fix 6-byte out-of-bounds (OOB) read. The previous bounds check in
FliDecode.c incorrectly calculated the required read buffer size when
copying a chunk, potentially reading six extra bytes off the end of
the allocated buffer from the heap. Present since Pillow 7.1.0. This
bug was found by Google’s OSS-Fuzz CIFuzz runs.
- Pillow now includes binary wheels for Python 3.10.
- Ensure TIFF RowsPerStrip is multiple of 8 for JPEG compression
(#5588).
- Updates for ImagePalette channel order (#5599).
- Hide FriBiDi shim symbols to avoid conflict with real FriBiDi
library (#5651).

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>
2021-09-10 06:55:20 -07:00
Samuel Dolt
fc46c80952 python3-sqlalchemy: add native and nativesdk to BBCLASSEXTEND
Signed-off-by: Samuel Dolt <samuel.dolt.ext@siemens.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-09-10 06:55:20 -07:00
Samuel Dolt
da0cf04421 python3-editor: add native and nativesdk to BBCLASSEXTEND
Signed-off-by: Samuel Dolt <samuel.dolt.ext@siemens.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-09-10 06:55:20 -07:00
Samuel Dolt
7999416002 python3-alembic: add native and nativesdk to BBCLASSEXTEND
Signed-off-by: Samuel Dolt <samuel.dolt.ext@siemens.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-09-10 06:55:20 -07:00
zangrc
549ff5368e python3-traitlets: upgrade 5.0.5 -> 5.1.0
Traitlets 5.1 brings a couple of updates and changes to traitlets, and is
recommended for all users. What follow is a non-exhaustive list of changes:

 - Removal of the ``ipython_genutils`` dependency, this should remove any direct
   and indirect reliance on ``nose`` and prepare traitlets 5.1 for Python 3.10
   and above compatibility, some test suite changes also accommodate Python 3.10 changes.
   If you package traitlets downstream, make sure to remove this dependency.

 - Removal of ``ipython_genutils`` may have change the default encoding detected
   for the command line argument parsing when not utf-8. We expect this to
   affect a small portion of older windows version. If you encounter issue let
   us know.

 - Stop recommendation of ``CUnicode`` in some circumstances as it's
   deprecated.

 - Our test suite is now using GitHub action instead of travis CI. If you are
   packaging downstream using the git repository, you may have to exclude the
   ``.github`` folder now, and can remove exclusion of

 - It fixes a parsing issue for list of one single element on the CLI.

 - We reserve the right to remove official support for Python 3.7 in subsequent
   minor revisions.

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>
2021-09-07 10:02:11 -07:00
zangrc
e62d3b7694 python3-ruamel-yaml: upgrade 0.17.13 -> 0.17.16
[0, 17, 16]: 2021-08-28
  - also handle issue 397 when comment is newline

[0, 17, 15]: 2021-08-28
  - fix issue 397, insert comment before key when a comment between key and value exists
    (reported by `Bastien gerard <https://sourceforge.net/u/bagerard/>`__)

[0, 17, 14]: 2021-08-25
  - fix issue 396, inserting key/val in merged-in dictionary (reported by `Bastien gerard
    <https://sourceforge.net/u/bagerard/>`__)

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>
2021-09-07 10:02:11 -07:00
Wang Mingyu
6c2f011ca2 python3-google-api-python-client: upgrade 2.18.0 -> 2.19.1
remove repeated calls to self._get_reason
analyticsdata: update the api
androidmanagement: update the api
artifactregistry: update the api
bigquerydatatransfer: update the api
bigquery: update the api
chat: update the api
cloudidentity: update the api
cloudkms: update the api
compute: update the api
containeranalysis: update the api
container: update the api
content: update the api
dataflow: update the api
dataproc: update the api
displayvideo: update the api
documentai: update the api
file: update the api
gkehub: update the api
logging: update the api
managedidentities: update the api
metastore: update the api
ondemandscanning: update the api
people: update the api
sqladmin: update the api
sts: update the api
workflowexecutions: update the api
youtube: update the api

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>
2021-09-07 10:02:11 -07:00
Wang Mingyu
5609ec473c python3-cryptography-vectors: upgrade 3.4.7 -> 3.4.8
Changed the version scheme. This will result in us incrementing the major version more frequently, but does not change our existing backwards compatibility policy.
BACKWARDS INCOMPATIBLE: The X.509 certificate parser no longer allows negative serial numbers. RFC 5280 has always prohibited these.
BACKWARDS INCOMPATIBLE: Invalid ASN.1 found during certificate parsing will raise an error on initial parse rather than when the invalid field is accessed.
BACKWARDS INCOMPATIBLE: Values passed to the X.509 PEM parser must be a single PEM payload and will error on extraneous data.
Added support for OpenSSL 3.0.0 as a compilation target.
Added support for SM3 and SM4, when using OpenSSL 1.1.1. These algorithms are provided for compatibility in regions where they may be required, and are not generally recommended.
We now ship manylinux_2_24 wheels, in addition to our manylinux2010 and manylinux2014 wheels.
Added rfc4514_attribute_name attribute to x509.NameAttribute,

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>
2021-09-07 10:02:11 -07:00
zangrc
bf8625f249 python3-kiwisolver: upgrade 1.3.1 -> 1.3.2
CI: fix building wheels on GHA
* ci: fix wheel build command
* ci: remove references to submodules
* ci: fix sdist command and remove Python 3.6 from the matrix
* ci: slightly alter invocation
* ci: disable emulation
* ci: smaller matrix
* ci: use a small matrix but with all python versions
* ci: use manylinux 2010 for CPython 3.9+
* ci: split again matrix per python version given how slow emulation is
Fix also the artifact upload
* ci: fix typo
* ci: typo

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>
2021-09-07 10:02:11 -07:00
zangrc
1be9e79486 python3-ipython: upgrade 7.26.0 -> 7.27.0
IPython 7.27 is a minor release that fixes a couple of issues and compatibility.
Add support for GTK4 PR
Add support for Qt6 PR
Fix an issue with pip magic on windows PR

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>
2021-09-07 10:02:11 -07:00
Khem Raj
05eda66da1 packagegroup-meta-python: Add python3-kivy
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-09-07 10:02:11 -07:00
Khem Raj
346fff50f9 python3-kivy: Check for x11 and opengl before enabling the recipe
Fixes

ERROR: Nothing PROVIDES 'libsdl2-ttf' (but meta-openembedded/meta-python/recipes-devtools/python/python3-kivy_2.0.0.bb DEPENDS on or otherwise requires it)
libsdl2-ttf was skipped: missing required distro feature 'opengl' (not in DISTRO_FEATURES)
ERROR: Nothing RPROVIDES 'python3-kivy-dev' (but meta-openembedded/meta-python/recipes-devtools/python/python3-kivy_2.0.0.bb RDEPENDS on or otherwise requires it)
No eligible RPROVIDERs exist for 'python3-kivy-dev'
NOTE: Runtime target 'python3-kivy-dev' is unbuildable, removing...
Missing or unbuildable dependency chain was: ['python3-kivy-dev']
ERROR: Nothing RPROVIDES 'python3-kivy' (but meta-openembedded/meta-python/recipes-devtools/python/python3-kivy_2.0.0.bb RDEPENDS on or otherwise requires it)
No eligible RPROVIDERs exist for 'python3-kivy'
NOTE: Runtime target 'python3-kivy' is unbuildable, removing...
Missing or unbuildable dependency chain was: ['python3-kivy']

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Cc: Martin Jansa <Martin.Jansa@gmail.com>
Cc: William Huang <whuang8933@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-09-07 10:02:11 -07:00
Khem Raj
383fb93e8b python3-kivy: Remove hardcoded include paths
Use RECIPE_SYSROOT instead of synthesizing the sysroot

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Cc: William Huang <whuang8933@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-09-07 10:02:11 -07:00
Trevor Gamblin
1191076e79 python3-pytest-subtests: add recipe
Newer versions of python3-cryptography will rely on the subtests fixture
for their ptests. Add this recipe so that cryptography can be given the
necessary RDEPENDS when it is upgraded.

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>
2021-09-03 08:35:28 -07:00
William Huang
b180041976 recipes-devtools: python: add support for Kivy
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-09-03 08:35:28 -07:00
Martin Jansa
2ff8168c64 python3-regex: upgrade to 2021.8.28
* 2021.8.27 causes python3 to segfault in various cases:
  https://bitbucket.org/mrabarnett/mrab-regex/issues/421/2021827-results-in-fatal-python-error
  and was already yanked from pypi:
  https://pypi.org/project/regex/2021.8.27/

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-09-03 08:35:28 -07:00
Vesa Jääskeläinen
5301d61755 python3-pkcs11: Add recipe for version 0.7.0
"A high level, “more Pythonic” interface to the PKCS#11 (Cryptoki)
standard to support HSM and Smartcard devices in Python."

Signed-off-by: Vesa Jääskeläinen <vesa.jaaskelainen@vaisala.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-08-30 08:10:12 -07:00
Vesa Jääskeläinen
78922a3621 python3-cached-property: Add recipe for version 1.5.2
"A decorator for caching properties in classes."

Signed-off-by: Vesa Jääskeläinen <vesa.jaaskelainen@vaisala.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-08-30 08:10:12 -07:00
zhengruoqin
f3df549ef6 python3-stevedore: upgrade 3.3.0 -> 3.4.0
3.4.0
-----

* setup.cfg: Replace dashes with underscores
* Fix formatting of release list
* Remove lower-constraints remnants
* Move flake8 as a pre-commit local target
* Add Python3 xena unit tests
* Update master for stable/wallaby
* Dropping lower constraints testing

Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-08-30 08:10:12 -07:00
zhengruoqin
fca75f3cc9 python3-sqlalchemy: upgrade 1.4.22 -> 1.4.23
Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-08-30 08:10:12 -07:00
zhengruoqin
741f571615 python3-regex: upgrade 2021.8.3 -> 2021.8.27
Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-08-30 08:10:12 -07:00
zangrc
7313697414 python3-pyephem: upgrade 3.7.7.1 -> 4.0.0.2
-License-Update: Change to MIT License.

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>
2021-08-30 08:10:12 -07:00
zangrc
f7889291bd python3-haversine: upgrade 2.3.1 -> 2.4.0
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>
2021-08-30 08:10:12 -07:00
zangrc
af519b3df2 python3-h5py: upgrade 3.3.0 -> 3.4.0
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>
2021-08-30 08:10:12 -07:00
zangrc
54b63645fb python3-google-api-python-client: upgrade 2.17.0 -> 2.18.0
Features
analyticsadmin: update the api
apigee: update the api
appengine: update the api
bigquerydatatransfer: update the api
cloudfunctions: update the api
compute: update the api
containeranalysis: update the api
container: update the api
documentai: update the api
gkehub: update the api
iam: update the api
ideahub: update the api
ondemandscanning: update the api
osconfig: update the api
people: update the api
securitycenter: update the api
slides: update the api
tagmanager: update the api

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>
2021-08-30 08:10:12 -07:00
zangrc
7ff05d34db python3-gevent: upgrade 21.1.2 -> 21.8.0
21.8.0 (2021-08-05)
===================

Features
--------

- Update the embedded c-ares from 1.16.1 to 1.17.1.
  See :issue:`1758`.
- Add support for Python 3.10rc1 and newer.

  As part of this, the minimum required greenlet version was increased
  to 1.1.0 (on CPython), and the minimum version of Cython needed to
  build gevent from a source checkout is 3.0a9.

  Note that the dnspython resolver is not available on Python 3.10.
  See :issue:`1790`.
- Update from Cython 3.0a6 to 3.0a9.
  See :issue:`1801`.

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>
2021-08-30 08:10:12 -07:00
zangrc
a01340c176 python3-aiohttp-jinja2: upgrade 1.4.2 -> 1.5
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>
2021-08-30 08:10:12 -07:00
Trevor Gamblin
1b358be2b8 python3-license-expression: add ptest artifacts
The python3-license-expression ptest is failing because it requires the
contents of the src/ directory from the repo/tarball. Copy this content
to the image when installing the ptest so that it has what it needs.

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>
2021-08-27 13:08:27 -07:00
Trevor Gamblin
e8247f6b28 python3-gunicorn: tweak run-ptest, add RDEPENDS
gunicorn relies on eventlet and gevent for its ptests, and it also
requires a non-empty /etc/resolv.conf for one of those tests. Add those
two modules to RDEPENDS for the recipe, and add an echo in run-ptest to
make sure that there is something basic in /etc/resolv.conf before the
test actually runs.

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>
2021-08-26 09:57:25 -07:00
Trevor Gamblin
ea86c829bb python3-eventlet: add 0.30.2 to meta-python
python3-gunicorn in meta-python relies on python3-eventlet for its
ptests, so add a version of the eventlet recipe to the layer and update
to the latest version. This recipe file is based on the one from the
meta-openstack layer, but the .inc and .bb files have been combined.
Also add python3-dnspython to RDEPENDS so that "import eventlet" works.

Note that there is a newer version of eventlet, but anything 0.30.3 and
newer is incompatible with the current version of gunicorn. eventlet
will get another update as soon as there is a new release of gunicorn
handling the API change.

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>
2021-08-26 09:57:25 -07:00
Tim Orling
961755a7bd python3-django_2.2.x: only check upstream 2.2.x
AUH currently sees this recipe needing to upgrade to 3.x but we do
not want that. We are intentionally pinning at the 2.2.x LTS for this
recipe.

References:
https://www.djangoproject.com/download/

Signed-off-by: Tim Orling <timothy.t.orling@intel.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-08-26 09:57:25 -07:00
zhengruoqin
4681393987 python3-tqdm: upgrade 4.62.0 -> 4.62.2
fix notebook memory leak (#1216)
fix contrib.concurrent with generators (#1233 <- #1231)

Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-08-25 08:15:33 -07:00
zhengruoqin
717dbbe584 python3-pyzmq: upgrade 22.1.0 -> 22.2.1
22.2.1
Fix bundling of wepoll on Windows.

22.2.0
New features:

IPC support on Windows: where available (64bit Windows wheels and bundled libzmq when compiling from source, via wepoll), IPC should work on appropriate Windows versions.
Nicer reprs of contexts and sockets
Memory allocated by recv(copy=False) is no longer read-only
asyncio: Always reference current loop instead of attaching to the current loop at instantiation time. This fixes e.g. contexts and/or sockets instantiated prior to a call to asyncio.run.
ssh: $PYZMQ_PARAMIKO_HOST_KEY_POLICY can be used to set the missing host key policy, e.g. AutoAdd.
Fixes:

Fix memory corruption in gevent integration
Fix memoryview(zmq.Frame) with cffi backend
Fix threadsafety issue when closing sockets
Changes:

pypy Windows wheels are 64b-only, following an update in cibuildwheel 2.0
deprecate zmq.utils.jsonapi and remove support for non-stdlib json implementations in send/recv_json. Custom serialization methods should be used instead.

Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-08-25 08:15:33 -07:00
zhengruoqin
39b4558bf0 python3-pymisp: upgrade 2.4.144 -> 2.4.148
New
~~~
- Method `sharing_group_exists` [Jakub Onderka]
- Method `update_sharing_group` [Jakub Onderka]
- Save one REST call when initialize PyMISP class. [Jakub Onderka]
- Method `organisation_exists` [Jakub Onderka]
- Method `sharing_group_exists` [Jakub Onderka]
- Method `update_sharing_group` [Jakub Onderka]
- `to_dict` method supports `json_format` parameter. [Jakub Onderka]
- Method `organisation_exists` [Jakub Onderka]
- Method `sharing_group_exists` [Jakub Onderka]
- Method `update_sharing_group` [Jakub Onderka]
- Save one REST call when initialize PyMISP class. [Jakub Onderka]
- Method `organisation_exists` [Jakub Onderka]
- Method `sharing_group_exists` [Jakub Onderka]
- Method `update_sharing_group` [Jakub Onderka]
- Exclude decayed attributes in search. [Raphaël Vinot]

Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-08-25 08:15:33 -07:00
Leon Anavi
a35fd74d1d python3-watchdog: Upgrade 2.1.3 -> 2.1.5
Upgrade to release 2.1.5:

- Fix regression introduced in 2.1.4 (reverted "Allow overriding
  or adding custom event handlers to event dispatch map.
- Convert regexes of type str to list.

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>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-08-25 08:15:33 -07:00
Leon Anavi
d020a6ba30 python3-bitarray: Upgrade 2.3.0 -> 2.3.2
Upgrade to release 2.3.2:

- fix slice assignment for shared buffer with offset case
- add tests (including internal debug mode tests for
  `buffers_overlap()`)

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>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-08-25 08:15:33 -07:00
Leon Anavi
72f818933e python3-simplejson: Upgrade 3.17.4 -> 3.17.5
Upgrade to release 3.17.5:

- Fix the C extension module to harden is_namedtuple against
  looks-a-likes such as Mocks. Also prevent dict encoding from
  causing an unraised SystemError when encountering a non-Dict.
  Noticed by running user tests against a CPython interpreter
  with C asserts enabled (COPTS += -UNDEBUG).

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>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-08-25 08:15:33 -07:00
Leon Anavi
8147981b47 python3-ruamel-yaml: Upgrade 0.17.11 -> 0.17.13
Upgrade to release 0.17.13:

- minor fix in attr handling
- fix issue with anchor on registered class not preserved and
  those classes using package attrs with @attr.s()

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>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-08-25 08:15:33 -07:00
Leon Anavi
9595fb5dee python3-colorlog: Upgrade 5.0.1 -> 6.4.1
Upgrade to release 6.4.1:

- Renamed colorlog.logging to colorlog.wrappers
- Import log levels from the logging module
- Dropped support for Python 2 and Python versions below 3.5
- Added type hints and added mypy to CI
- Support 256 colour ANSI codes
- Support "light" ANSI codes
- Support the NO_COLOR environment variable, and a no_color option
- Updated various examples and documentation
- Merged TTYColoredFormatter into ColoredFormatter, and ensure no
  ANSI codes are printed when colors are disabled
- Replaced LevelFormatter with a far simpler implementation
- Fixed version_info check for the Formatter validate parameter
- Define formatMessage instead of format, so that ColoredRecord is
  used in fewer places
- Use setuptool's "normalised" format for the version number
- Add PEP 561 typing marker so mypy can find type annotations
- Renamed internal modules
- colorlog.colorlog is now colorlog.formatter
- colorlog.logging is now colorlog.wrappers
- Removed colorlog.escape_codes object so that the
  colorlog.escape_codes module can be imported and used
- Import log levels from the logging module

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>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-08-25 08:15:33 -07:00
zangrc
442d214975 python3-wheel: upgrade 0.36.2 -> 0.37.0
**0.37.0 (2021-08-09)**

- Added official Python 3.10 support
- Updated vendored ``packaging`` library to v20.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>
2021-08-23 21:58:55 -07:00
zangrc
6bfee06011 python3-grpcio: upgrade 1.38.1 -> 1.39.0
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>
2021-08-23 21:58:55 -07:00
zangrc
52ca238faf python3-grpcio-tools: upgrade 1.38.1 -> 1.39.0
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>
2021-08-23 21:58:55 -07:00
zangrc
3180465417 python3-google-api-python-client: upgrade 2.15.0 -> 2.17.0
Features
apigee: update the api
bigqueryreservation: update the api
chat: update the api
cloudbuild: update the api
cloudscheduler: update the api
contactcenterinsights: update the api
dialogflow: update the api
displayvideo: update the api
monitoring: update the api
networkconnectivity: update the api
notebooks: update the api
retail: update the api
servicenetworking: update the api
sts: update the api

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>
2021-08-23 21:58:55 -07:00
zangrc
8fc6c279b2 python3-flask-socketio: upgrade 5.1.0 -> 5.1.1
Release 5.1.1 - 2021-08-02

Only use SSL socket if at least one SSL kwarg is not None #1639 (commit) (thanks JT Raber!)
Remove unused SSL arguments from eventlet server options #1639 (commit)
Remove executable permissions from files that lack shebang lines #1621 (commit) (thanks Ben Beasley!)
Improved project structure (commit)

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>
2021-08-23 21:58:55 -07:00
zangrc
06edd5eeff python3-flask-migrate: upgrade 3.0.1 -> 3.1.0
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>
2021-08-23 21:58:55 -07:00
Leon Anavi
b402ad7a42 python3-regex: Upgrade 2021.7.6 -> 2021.8.3
Upgrade to release 2021.8.3:

- re.sub and re.findall freeze with regex, but not old re
- regex's `Match` and `Pattern` types do not act as generics

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>
2021-08-23 21:58:55 -07:00
Leon Anavi
948016c4a8 python3-simplejson: Upgrade 3.17.3 -> 3.17.4
Upgrade to release 3.17.4:

- Upgrade cibuildwheel

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>
2021-08-23 21:58:55 -07:00
Leon Anavi
82142307ec python3-qrcode: Upgrade 7.2 -> 7.3
Upgrade to release 7.3:

- Skip color mask if QR is black and white

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>
2021-08-23 21:58:55 -07:00
Leon Anavi
d29020784d python3-unidiff: Upgrade 0.6.0 -> 0.7.0
Upgrade to release 0.7.0:

- Fixed issues handling multiple git renames.
- Renamed files return target filename as PatchedFile.path.
- Fixed error when first change is a binary file.
- Added source code type hints.

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>
2021-08-23 21:58:55 -07:00
Leon Anavi
48634c64b7 python3-ruamel-yaml: Upgrade 0.17.10 -> 0.17.11
Upgrade to release 0.17.11:

- fix error baseclass for ``DuplicateKeyErorr``
- fix typo in reader error message, causing `KeyError` during
  reader error

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>
2021-08-23 21:58:55 -07:00
Leon Anavi
29aaa8b698 python3-astroid: Upgrade 2.7.0 -> 2.7.1
Upgrade to release 2.7.1:

- When processing dataclass attributes, only do typing inference
  on collection types. Support for instantiating other typing
  types is left for the future, if desired.
- Fixed LookupMixIn missing from ``astroid.node_classes``.

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>
2021-08-19 09:56:43 -07:00
Leon Anavi
7036ac19bf python3-dbus-next: Upgrade 0.2.2 -> 0.2.3
Upgrade to release 0.2.3:

- Include py.typed in Manifest.in
- Fix property validation error message
- Don't log errors if call failed after disconnect
- Support PEP563 annotations
- Service: support async properties
- Client: Support coroutines as signal handlers

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>
2021-08-19 09:56:43 -07:00
Leon Anavi
c641d17a09 python3-zeroconf: Upgrade 0.34.3 -> 0.36.0
Upgrade to release 0.36.0:

- Fill incomplete IPv6 tuples to avoid WinError on 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>
2021-08-19 09:56:43 -07:00
Leon Anavi
29c8f949e4 python3-tzlocal: Upgrade 2.1 -> 3.0
Upgrade to release 3.0:

- Modernized the packaging, moving to setup.cfg etc.
- Handles if the text config files incorrectly is a TZ 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>
2021-08-19 09:56:43 -07:00
Leon Anavi
3660967a91 python3-pandas: Upgrade 1.3.1 -> 1.3.2
Upgrade to release 1.3.2:

- Performance regression in DataFrame.isin() and Series.isin() for
  nullable data types
- Regression in updating values of Series using boolean index,
  created by using DataFrame.pop()
- Regression in DataFrame.from_records() with empty records
- Fixed regression in DataFrame.shift() where TypeError occurred
  when shifting DataFrame created by concatenation of slices and
  fills with values
- Regression in DataFrame.agg() when the func argument returned
  lists and axis=1
- Regression in DataFrame.drop() does nothing if MultiIndex has
  duplicates and indexer is a tuple or list of tuples
- Fixed regression where read_csv() raised a ValueError when
  parameters names and prefix were both set to None
- Fixed regression in comparisons between Timestamp object and
  datetime64 objects outside the implementation bounds for
  nanosecond datetime64
- Fixed regression in Styler.highlight_min() and
  Styler.highlight_max() where pandas.NA was not successfully
  ignored
- Fixed regression in concat() where copy=False was not honored
  in axis=1 Series concatenation
- Regression in Series.nlargest() and Series.nsmallest() with
  nullable integer or float dtype
- Fixed regression in Series.quantile() with Int64Dtype
- Bug in read_excel() modifies the dtypes dictionary when reading
  a file with duplicate columns
- 1D slices over extension types turn into N-dimensional slices
  over ExtensionArrays
- Fixed bug in Series.rolling() and DataFrame.rolling() not
  calculating window bounds correctly for the first row when
  center=True and window is an offset that covers all the rows
- Styler.hide_columns() now hides the index name header row as
  well as column headers
- Styler.set_sticky() has amended CSS to control the column/index
  names and ensure the correct sticky positions
- Bug in de-serializing datetime indexes in PYTHONOPTIMIZED mode

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>
2021-08-19 09:56:43 -07:00
Leon Anavi
f601322416 python3-langtable: Upgrade 0.0.54 -> 0.0.56
Upgrade to release 0.0.56:

- Fallback to translations in “xx” from “xx_Zzzz”
  only if “Zzzz” is the main script of “xx”
- Get translation changes for mt from CLDR

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>
2021-08-19 09:56:43 -07:00
Leon Anavi
9f6e3b69bd python3-bitarray: Upgrade 2.2.5 -> 2.3.0
Upgrade to release 2.3.0:

- add optional `buffer` argument to `bitarray()` to import the
  buffer of another object
- update `.buffer_info()` to include: a read-only flag, an
  imported buffer flag, and the number of buffer exports
- add optional start and stop arguments to `util.rindex()`
- add [memory-mapped file](../examples/mmapped-file.py) example
- ignore underscore (`_`) in string input,
  e.g. `bitarray('1100_0111')`
- add missing type hinting for new `.bytereverse()` arguments
- fix `.extend()` type annotations, #145
- avoid `.reverse()` using temporary memory
- make `.unpack()`, `util.serialize()`, `util.vl_encode()`
  and `.__reduce__()` more memory efficient
- add and improve 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>
2021-08-19 09:56:43 -07:00
Leon Anavi
19ce6fd7bf python3-websocket-client: Upgrade 1.1.0 -> 1.2.1
Upgrade to release 1.2.1:

- Fix python-socks dependency issue
- Replace echo.websocket.org with a local websockets echo server
  for unit tests
- Fix: Transition from LGPL 2.1 license to Apache 2.0 license
- Revert and reimplement SOCKS proxy support with python-socks
  instead of PySocks

License-Update: Transition from LGPL 2.1 to Apache 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>
2021-08-19 09:56:43 -07:00
Trevor Gamblin
bd4804580b python3-click: Add missing ptest artifacts
The click ptests require the top-level setup.cfg and the docs/conf.py
file to be present in the PTEST_PATH, so add steps to copy them to the
image when building the 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>
2021-08-19 09:56:43 -07:00
Leon Anavi
aa2201d989 python3-pycurl: Upgrade 7.44.0 -> 7.44.1
Upgrade to release 7.44.1:

- Repair incorrect Python thread initialization logic which caused
  operations to hang

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>
2021-08-17 08:11:16 -07:00
Leon Anavi
26a6ddc70b python3-ujson: Upgrade 4.0.2 -> 4.1.0
Upgrade to release 4.1.0:

- Add gcov coverage testing for C code
- Test Python 3.10-dev
- Remove explicit handling of manylinux platform tag
- Remove unused variable
- dconv no longer uses global instances of StringToDoubleConverter
- Switch shebang for the manylinux-wheels script
- Fix typos in error message

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>
2021-08-17 08:11:16 -07:00
Leon Anavi
77c992785c python3-astroid: Upgrade 2.6.6 -> 2.7.0
Upgrade to release 2.7.0:

- Import from ``astroid.node_classes`` and ``astroid.scoped_nodes``
  has been deprecated in favor of ``astroid.nodes``. Only the
  imports from ``astroid.nodes`` will work in astroid 3.0.0.
- Add support for arbitrary Enum subclass hierachies
- Add inference tips for dataclass attributes, including
  dataclasses.field calls. Also add support for InitVar.
- Adds a brain that deals with dynamic import of
  `IsolatedAsyncioTestCase` class of the `unittest` module.

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>
2021-08-17 08:11:16 -07:00
Leon Anavi
a13db91f19 python3-apply-defaults: Upgrade 0.1.4 -> 0.1.6
Upgrade to release 0.1.6:

- Alias imports in __init__.py, so that mypy considers them
  re-exported.
- Use mypy with the --strict flag.
- Added Github Actions to the repo.
- Add .pre-commit-config.yml

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>
2021-08-16 08:21:14 -07:00
Leon Anavi
081eda0d36 python3-huey: Upgrade 2.3.2 -> 2.4.0
Upgrade to release 2.4.0:

- Task expiration
- Add option to make crontab() parsing strict, raising an error if
  an invalid interval specification is given. You probably want to
  enable this.
- Fix bug in the FileStorage dequeue() method, which attempted to
  unlink an open 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>
2021-08-16 08:21:14 -07:00
Leon Anavi
66d636c27c python3-google-api-python-client: Upgrade 2.12.0 -> 2.15.0
Upgrade to release 2.15.0:

- alertcenter: update the api
- chat: update the api
- cloudbuild: update the api
- content: update the api
- displayvideo: update the api
- dns: update the api
- eventarc: update the api
- file: update the api
- monitoring: update the api
- people: update the api
- retail: update the api
- securitycenter: update the api
- speech: update the api
- sqladmin: update the api

License-Update: update license to be Apache-2.0 compliant

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>
2021-08-16 08:21:14 -07:00
Leon Anavi
89312caa4b python3-google-auth: Upgrade 1.32.0 -> 1.34.0
Upgrade to release 1.34.0:

- support refresh callable on google.oauth2.credentials.Credentials
- do not use the GAE APIs on gen2+ runtimes

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>
2021-08-16 08:21:14 -07:00
Leon Anavi
b21cad8867 python3-google-api-core: Upgrade 1.30.0 -> 1.31.1
Upgrade to release 1.31.1:

- add 'requests.exceptions.ChunkedEncodingError' to retryable
  exceptions
- add Samples section to CONTRIBUTING.rst
- add ServiceUnavailable exception to polling retries
- undprecate entity factory helpers

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>
2021-08-16 08:21:14 -07:00
Kai Kang
5d6fc2c1a1 python3-m2crypto: fix for new overrides syntax
Fix wrong replacement caused by script convert-overrides.py. And use new
overrides syntax for 'x32'.

Signed-off-by: Kai Kang <kai.kang@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-08-16 08:21:14 -07:00
Leon Anavi
82c9ddd853 python3-distro: Upgrade 1.5.0 -> 1.6.0
Upgrade to release:

BACKWARDS COMPATIBILITY:
- Deprecated the distro.linux_distribution() function. Use
  distro.id(), distro.version() and distro.name() instead
- Deprecated Python 2.7, 3.4 and 3.5 support. Further releases
  will only support Python 3.6+
ENHANCEMENTS:
- Added type hints to distro module
- Added __version__ for checking distro version
- Added support for arbitrary rootfs via the root_dir parameter
- Added the --root-dir option to CLI
- Added fallback to /usr/lib/os-release when /etc/os-release isn't
  available
BUG FIXES:
- Fixed subprocess.CalledProcessError when running lsb_release
- Ignore /etc/iredmail-release file while parsing distribution
- Use a binary file for /dev/null to avoid TextIOWrapper overhead
RELEASE:
- Moved repository from nir0s/distro to python-distro/distro on
  GitHub.

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>
2021-08-16 08:21:14 -07:00
Leon Anavi
c40c069a73 python3-pycurl: Upgrade 7.43.0.6 -> 7.44.0
Upgrade to release 7.44.0:

- getinfo(CURLINFO_FTP_ENTRY_PATH) now handles NULL return from
  libcurl, returning None in this case.
- Python 3.9 is now officially supported (patch by Bill Collins).
- Added CURLOPT_DOH_URL (patch by resokou).
- Best effort Python 2 support has been reinstated.
- Added missing fields to curl_version_info struct (patch by
  Hasan).
- Added CURLINFO_CONDITION_UNMET (patch by Dima Tisnek).
- Exposed MAX_CONCURRENT_STREAMS in CurlMulti (patch by Alexandre
  Pion).
- Compilation fixed against Python 3.10 alpha (patch by Kamil
  Dudka).

License-Update: update copyright 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>
2021-08-16 08:21:14 -07:00
Leon Anavi
8c6f98157e python3-configargparse: Upgrade 1.5.1 -> 1.5.2
Upgrade to release 1.5.2:

- fix: append with nargs > 1 for env vars
- add support for argparse.BooleanOptionalAction
- Docs update

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>
2021-08-16 08:21:14 -07:00
Leon Anavi
0aa3b3e0c2 python3-aiohue: Upgrade 2.5.1 -> 2.6.1
Upgrade to release 2.6.1:

- Fix temperature event
- Store last event on devices

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>
2021-08-16 08:21:14 -07:00
Leon Anavi
da37fce2ab python3-zeroconf: Upgrade 0.33.2 -> 0.34.3
Upgrade to release 0.34.3:

- Fix sending immediate multicast responses
- Coalesce aggregated multicast answers
- Ensure ServiceInfo requests can be answered inside the default
  timeout with network protection
- Ensure multicast aggregation sends responses within 620ms
- Implemented Multicast Response Aggregation

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>
2021-08-16 08:21:14 -07:00
Naveen Saini
8ccc92e7db python3-defusedxml: extend recipe to add native support
It may be useful for some use cases.

Signed-off-by: Naveen Saini <naveen.kumar.saini@intel.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-08-16 08:21:14 -07:00
Leon Anavi
29221c1274 python3-send2trash: Upgrade 1.7.1 -> 1.8.0
Upgrade to release 1.8.0:

- Add compatibility with pathlib paths
- Fix thread compatibility of modern windows implementation
- Fix handling of UNC names in legacy windows implementation

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>
2021-08-16 08:21:14 -07:00
Leon Anavi
9350b539e0 python3-bitarray: Upgrade 2.2.3 -> 2.2.5
Upgrade to release 2.2.5:

- speedup `find_bit()` and `find_last()` using uint64 checking,
  this means a speedup for `.find()`, `.index()`, `.search()` and
  `util.rindex()`
- add optional start and stop arguments to `.bytereverse()`
- add example to illustrate how unaligned copying works internally
- add documentation
- 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>
2021-08-16 08:21:14 -07:00
Leon Anavi
d082795744 python3-greenlet: Upgrade 1.1.0 -> 1.1.1
Upgrade to release 1.1.1:

- Provide Windows binary wheels for Python 3.10 (64-bit only).
- Update Python 3.10 wheels to be built against 3.10rc1, where
  applicable.

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>
2021-08-16 08:21:14 -07:00
Leon Anavi
1d733f475f python3-gast: Upgrade 0.5.1 -> 0.5.2
Upgrade to release 0.5.2:

- Test field count more accurately

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>
2021-08-16 08:21:14 -07:00
Leon Anavi
fec4fa46df python3-astroid: Upgrade 2.6.5 -> 2.6.6
Upgrade to release 2.6.6:

- Added support to infer return type of typing.cast()
- Fix variable lookup's handling of exclusive statements
- Fix variable lookup's handling of function parameters
- Fix variable lookup's handling of except clause variables
- Fix handling of classes with duplicated bases with the same name

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>
2021-08-16 08:21:14 -07:00
zhengruoqin
34d7b7c706 python3-isort: upgrade 5.9.2 -> 5.9.3
5.9.3 July 28 2021
Improved text of skipped file message to mention gitignore feature.
Made all exceptions pickleable.
Fixed #1779: Pylama integration ignores pylama specific isort config overrides.
Fixed #1781: --from-first CLI flag shouldn't take any arguments.
Fixed #1792: Sorting literals sometimes ignored when placed on first few lines of file.
Fixed #1777: extend_skip is not honored wit a git submodule when skip_gitignore=true.

Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-08-16 08:21:14 -07:00
zhengruoqin
b655693eb0 python3-ipython: upgrade 7.25.0 -> 7.26.0
IPython 7.26 is a minor release that fixes a couple of issues, updates in API and Copyright/Licenses issues around various part of the codebase.

We’ll highlight this issue <https://github.com/ipython/ipython/issues/13039> pointing out we were including and refereeing to code from Stack Overflow which was CC-BY-SA, hence incompatible with the BSD license of IPython. This lead us to a rewriting of the corresponding logic which in our case was done in a more efficient way (in our case we were searching string prefixes instead of full strings).

You will notice also a number of documentation improvements and cleanup.
Of particular interest are the following Pull-requests:
The IPython directive now uses Sphinx logging for warnings. PR #13030.
Add expiry days option to pastebin magic and change http protocol to https. PR #13056
Make Ipython.utils.timing work with jupyterlite PR #13050.

Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-08-16 08:21:14 -07:00
zangrc
44492ab1b8 python3-humanize: upgrade 3.10.0 -> 3.11.0
Added
Add Bengali langauage (#221) @wasi-master
Fixed
Fix Korean localization (#219) @Craphting

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>
2021-08-16 08:21:14 -07:00
zhengruoqin
67b1b1211f python3-engineio: upgrade 4.2.0 -> 4.2.1
Release 4.2.1 - 2021-08-02

Support setting socketio_path to the root URL #242 (commit)
Use the gevent selector to avoid 1024 file handle limitation of select#228 (commit)
Pass reason when closing a WebSocket connection (commit)
Improved project structure (commit)
Remove executable permissions from files that lack shebang lines #240 (commit) (thanks Ben Beasley!)

Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-08-16 08:21:14 -07:00
Martin Jansa
dbde7fc3cc python3-grpcio: make sure that GRPC_CFLAGS is expanded to empty
* with bitbake change from:
  https://git.openembedded.org/bitbake/commit/?id=699e36c270d863258502d315ed00a1b940bfbf96
  the GRPC_CFLAGS now stays None when toolchain-clang isn't used
  causing:
  i686-oe-linux-gcc: error: ${GRPC_CFLAGS}: linker input file not found: No such file or directory

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-08-16 08:21:14 -07:00
zangrc
1f97c59b45 python3-xlsxwriter: upgrade 1.4.4 -> 1.4.5
Release 1.4.5 - July 29 2021
----------------------------

 * Added Description/Alt Text and Decorative accessibility options for charts,
   textboxes and buttons. These options were already available for images.

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>
2021-08-06 20:37:42 -07:00
zangrc
8aaf5a64cd python3-twisted: upgrade 21.2.0 -> 21.7.0
Twisted 21.7.0 (2021-07-26)
===========================

Features
--------

- Python 3.10b3 is now supported (#10224)
- Type hinting was added to twisted.internet.defer, making this is the first release
  of Twisted where you might reasonably be able to use mypy without your own custom
  stub files (#10017)

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>
2021-08-06 20:37:42 -07:00
zangrc
6be40a77ca python3-tqdm: upgrade 4.61.2 -> 4.62.0
asyncio.gather API consistency with stdlib (#1212)
fix shutdown exception (#1209 <- #1198)
misc build framework updates (#1209)
add GH Sponsors & merch links

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>
2021-08-06 20:37:42 -07:00
zangrc
f627883d19 python3-socketio: upgrade 5.3.0 -> 5.4.0
Release 5.4.0 - 2021-08-02

Support msgpack and custom packet serializers #749 (commit)
Return error packet if client connects to an already connected namespace (commit)
Handle CancelledError in async pubsub managers #750 (commit)
More robust handling of emit's "to" argument #689 (commit)
Remove executable permissions from setup.py, which has no shebang #748 (commit) (thanks Ben Beasley!)
Improved project structure (commit)

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>
2021-08-06 20:37:42 -07:00
zangrc
60da6d843f python3-sentry-sdk: upgrade 1.3.0 -> 1.3.1
Fix detection of contextvars compatibility with Gevent versions >=20.9.0 #1157

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>
2021-08-06 20:37:42 -07:00
zangrc
668e779801 python3-progress: upgrade 1.5 -> 1.6
-License-Update: Fixed misspelling of names.

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>
2021-08-06 20:37:42 -07:00
Zang Ruochen
ea33b88613 python3-robotframework: upgrade 4.0.3 -> 4.1
Add runtime dependency to resolve errors that occurred when import robot.

Robot Framework 4.1 is a feature release with several nice enhancements, for example, to the continue-on-failure mode and argument conversion, as well as some bug fixes.

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>
2021-08-06 20:37:42 -07:00
Kai Kang
c704cb0062 python3-blivetgui: 2.1.10 -> 2.2.1
Upgrade python3-blivetgui from 2.1.10 to 2.2.1.

* drop backported patch
  0001-Fix-return-type-of-BlivetUtils.get_disks-1658893.patch

Signed-off-by: Kai Kang <kai.kang@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-08-06 20:37:42 -07:00
Kai Kang
88efe3c0ea python3-blivet: 3.1.4 -> 3.4.0
Upgrade python3-blivet from 3.1.4 to 3.4.0.
* it imports selinux conditionally, so remove
  0001-comment-out-selinux.patch
* rebase 0008-use-oe-variable-to-replace-hardcoded-dir.patch and
  0010-invoking-mkfs-with-infinite-timeout.patch

Signed-off-by: Kai Kang <kai.kang@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-08-06 20:37:42 -07:00
Andrew Jeffery
bf1057e640 python3-ecdsa: Add native support
python3-ecdsa is a dependency of meta-aspeed's socsec package. socsec is
a set of tools for signing bootloaders and forming a hardware root
of trust for ASPEED BMC SoCs.

Signed-off-by: Andrew Jeffery <andrew@aj.id.au>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-08-06 20:37:42 -07:00
Andrew Jeffery
92d469b26a python3-gmpy: Add native support
python3-gmpy is a transitive dependency of meta-aspeed's socsec package,
via python3-ecdsa. socsec is a set of tools for signing bootloaders and
forming a hardware root of trust for ASPEED BMC SoCs.

Signed-off-by: Andrew Jeffery <andrew@aj.id.au>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-08-06 20:37:42 -07:00
Martin Jansa
17adfde3bd layer.conf: Update to honister
This marks the layers as compatible with honister now they use the new override
syntax.

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2021-08-03 10:21:25 -07:00
Martin Jansa
c61dc077bb Convert to new override syntax
This is the result of automated script (0.9.1) conversion:

oe-core/scripts/contrib/convert-overrides.py .

converting the metadata to use ":" as the override character instead of "_".

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2021-08-03 10:21:25 -07:00
zangrc
80957c276a python3-pandas: upgrade 1.3.0 -> 1.3.1
Fixed regressions
Pandas could not be built on PyPy (GH42355)
DataFrame constructed with an older version of pandas could not be unpickled (GH42345)
Performance regression in constructing a DataFrame from a dictionary of dictionaries (GH42248)
Fixed regression in DataFrame.agg() dropping values when the DataFrame had an Extension Array dtype, a duplicate index, and axis=1 (GH42380)
Fixed regression in DataFrame.astype() changing the order of noncontiguous data (GH42396)
Performance regression in DataFrame in reduction operations requiring casting such as DataFrame.mean() on integer data (GH38592)
Performance regression in DataFrame.to_dict() and Series.to_dict() when orient argument one of “records”, “dict”, or “split” (GH42352)
Fixed regression in indexing with a list subclass incorrectly raising TypeError (GH42433, GH42461)
Fixed regression in DataFrame.isin() and Series.isin() raising TypeError with nullable data containing at least one missing value (GH42405)
Regression in concat() between objects with bool dtype and integer dtype casting to object instead of to integer (GH42092)
Bug in Series constructor not accepting a dask.Array (GH38645)
Fixed regression for SettingWithCopyWarning displaying incorrect stacklevel (GH42570)
Fixed regression for merge_asof() raising KeyError when one of the by columns is in the index (GH34488)
Fixed regression in to_datetime() returning pd.NaT for inputs that produce duplicated values, when cache=True (GH42259)
Fixed regression in SeriesGroupBy.value_counts() that resulted in an IndexError when called on a Series with one row (GH42618)

Bug fixes
Fixed bug in DataFrame.transpose() dropping values when the DataFrame had an Extension Array dtype and a duplicate index (GH42380)
Fixed bug in DataFrame.to_xml() raising KeyError when called with index=False and an offset index (GH42458)
Fixed bug in Styler.set_sticky() not handling index names correctly for single index columns case (GH42537)
Fixed bug in DataFrame.copy() failing to consolidate blocks in the result (GH42579)

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>
2021-08-03 08:52:32 -07:00
zangrc
45edb9c4c9 python3-smbus: upgrade 4.2 -> 4.3
4.3 (2021-07-22)
  decode-dimms: Attempt to decode LPDDR3 modules
  eeprom, eepromer: Removed the tools in favor of eeprog
  i2cdetect: Sort the bus list by number
  i2cdump: Add range support to I2C block mode
           Deprecate SMBus block mode
  i2cget: Add support for I2C block read
          Add support for SMBus block read
  i2ctransfer: Reverted check for returned length from driver

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>
2021-08-03 08:52:32 -07:00
zangrc
5cd1b0762a python3-graphviz: upgrade 0.16 -> 0.17
Version 0.17
------------
Drop Python 2 support. Tag Python 3.10 support.
Migrate CI to GitHub actions. Add ``pypy3`` to matrix.
Tests: implement ``--skip-exe`` via custom ``pytest`` marker.
Documentation: point Anaconda users to ``conda-forge/python-graphviz``.
Move type hints from docstrings to type annotations. Improve doctests.
Examples: standardize import convention and modernize.
Re-render example notebooks with Graphviz 2.46.1.

-License-Update: Copyright year updated to 2021.

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>
2021-08-03 08:52:32 -07:00
zangrc
9b03daa43a python3-gmqtt: upgrade 0.6.9 -> 0.6.10
Fix unsubscribe and heap storage behavior
Fair waiting for the heap based storage is empty
Fix unsubscribe cleans subscriptions storage
Fix tests

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>
2021-08-03 08:52:32 -07:00
zhengruoqin
2fe2e93c9e python3-gast: upgrade 0.5.0 -> 0.5.1
Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-08-03 08:52:31 -07:00
zhengruoqin
d8e67165c6 python3-cbor2: upgrade 5.4.0 -> 5.4.1
Added new feature stringrefs, which makes repetitive dictionary structures more compact. Use with care since support for this is rare in other CBOR implementations.

This release includes some bugfixes around decoding invalid data, which may improve security on decoding untrusted data.

Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-08-03 08:52:31 -07:00
zhengruoqin
7fea625db5 python3-bitarray: upgrade 2.2.2 -> 2.2.3
2021-07-22   2.2.3:
-------------------
  * speedup `repeat()`, #136
  * speedup shift operations, #139
  * optimize slice assignment with negative step, e.g.: `a[::-1] = 1`
  * add tests

Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-08-03 08:52:31 -07:00
Leon Anavi
d913d7ee0f python3-zeroconf: Upgrade 0.33.1 -> 0.33.2
Upgrade to release 0.33.2:

- Handle duplicate goodbye answers in the same packet
- Skip ipv6 interfaces that return ENODEV

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>
2021-08-03 08:52:31 -07:00
Leon Anavi
4e73ec8d91 python3-pysonos: Upgrade 0.0.53 -> 0.0.54
Upgrade to release 0.0.54:

- Raise exception if Service command is not supported

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>
2021-08-03 08:52:31 -07:00
Leon Anavi
7d63c9a6aa python3-networkx: Upgrade 2.6.1 -> 2.6.2
Upgrade to release 2.6.2:

- Remove default dependencies
- Update release process

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>
2021-08-03 08:52:31 -07:00
zhengruoqin
86be1d8917 python3-sentry-sdk: upgrade 1.2.0 -> 1.3.0
1.3.0
Add support for Sanic versions 20 and 21 #1146

Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-07-29 10:35:05 -07:00
zhengruoqin
492054e409 python3-sqlalchemy: upgrade 1.4.20 -> 1.4.22
.. changelog::
    :version: 1.4.22
    :released: July 21, 2021

    .. change::
        :tags: bug, sql
        🎟️ 6786

        Fixed issue where use of the :paramref:`_sql.case.whens` parameter passing
        a dictionary positionally and not as a keyword argument would emit a 2.0
        deprecation warning, referring to the deprecation of passing a list
        positionally. The dictionary format of "whens", passed positionally, is
        still supported and was accidentally marked as deprecated.

    .. change::
        :tags: bug, orm
        🎟️ 6775

        Fixed issue in new :meth:`_schema.Table.table_valued` method where the
        resulting :class:`_sql.TableValuedColumn` construct would not respond
        correctly to alias adaptation as is used throughout the ORM, such as for
        eager loading, polymorphic loading, etc.

    .. change::
        :tags: bug, orm
        🎟️ 6769

        Fixed issue where usage of the :meth:`_result.Result.unique` method with an
        ORM result that included column expressions with unhashable types, such as
        ``JSON`` or ``ARRAY`` using non-tuples would silently fall back to using
        the ``id()`` function, rather than raising an error. This now raises an
        error when the :meth:`_result.Result.unique` method is used in a 2.0 style
        ORM query. Additionally, hashability is assumed to be True for result
        values of unknown type, such as often happens when using SQL functions of
        unknown return type; if values are truly not hashable then the ``hash()``
        itself will raise.

        For legacy ORM queries, since the legacy :class:`_orm.Query` object
        uniquifies in all cases, the old rules remain in place, which is to use
        ``id()`` for result values of unknown type as this legacy uniquing is
        mostly for the purpose of uniquing ORM entities and not column values.

 .. change::
        :tags: orm, bug
        🎟️ 6771

        Fixed an issue where clearing of mappers during things like test suite
        teardowns could cause a "dictionary changed size" warning during garbage
        collection, due to iteration of a weak-referencing dictionary. A ``list()``
        has been applied to prevent concurrent GC from affecting this operation.

    .. change::
        :tags: bug, sql
        🎟️ 6770

        Fixed issue where type-specific bound parameter handlers would not be
        called upon in the case of using the :meth:`_sql.Insert.values` method with
        the Python ``None`` value; in particular, this would be noticed when using
        the :class:`_types.JSON` datatype as well as related PostgreSQL specific
        types such as :class:`_postgresql.JSONB` which would fail to encode the
        Python ``None`` value into JSON null, however the issue was generalized to
        any bound parameter handler in conjunction with this specific method of
        :class:`_sql.Insert`.

    .. change::
        :tags: bug, engine
        🎟️ 6740

        Added some guards against ``KeyError`` in the event system to accommodate
        the case that the interpreter is shutting down at the same time
        :meth:`_engine.Engine.dispose` is being called, which would cause stack
        trace warnings.

    .. change::
        :tags: bug, orm, regression
        🎟️ 6793

        Fixed critical caching issue where the ORM's persistence feature using
        INSERT..RETURNING would cache an incorrect query when mixing the "bulk
        save" and standard "flush" forms of INSERT.

Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-07-29 10:35:05 -07:00
zhengruoqin
e6b3dcb6b8 python3-pymongo: upgrade 3.11.4 -> 3.12.0
We are pleased to announce the 3.12.0 release of PyMongo - MongoDB’s Python Driver. This release adds support for MongoDB 5.0.

Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-07-29 10:35:05 -07:00
zhengruoqin
467535597b python3-pybind11: upgrade 2.6.2 -> 2.7.0
v2.7.0 (Jul 16, 2021)
---------------------

New features:

* Enable ``py::implicitly_convertible<py::none, ...>`` for
  ``py::class_``-wrapped types.
  `#3059 <https://github.com/pybind/pybind11/pull/3059>`_

* Allow function pointer extraction from overloaded functions.
  `#2944 <https://github.com/pybind/pybind11/pull/2944>`_

* NumPy: added ``.char_()`` to type which gives the NumPy public ``char``
  result, which also distinguishes types by bit length (unlike ``.kind()``).
  `#2864 <https://github.com/pybind/pybind11/pull/2864>`_

* Add ``pybind11::bytearray`` to manipulate ``bytearray`` similar to ``bytes``.
  `#2799 <https://github.com/pybind/pybind11/pull/2799>`_

* ``pybind11/stl/filesystem.h`` registers a type caster that, on C++17/Python
  3.6+, converts ``std::filesystem::path`` to ``pathlib.Path`` and any
  ``os.PathLike`` to ``std::filesystem::path``.
  `#2730 <https://github.com/pybind/pybind11/pull/2730>`_

* A ``PYBIND11_VERSION_HEX`` define was added, similar to ``PY_VERSION_HEX``.
  `#3120 <https://github.com/pybind/pybind11/pull/3120>`_

Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-07-29 10:35:05 -07:00
zangrc
14f825f4f8 python3-iso8601: upgrade 0.1.14 -> 0.1.16
Add docs/ to sdist

Addresses part of #14

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>
2021-07-27 09:51:35 -07:00
zangrc
b727930660 python3-bitstring: upgrade 3.1.7 -> 3.1.9
-License-Update: Copyright year updated to 2016.

July 20th 2021: version 3.1.9 released
(version 3.1.8 was pulled due to serious issues)
Another maintenance release.

Fixed a couple of outdated results in the readme (Issue 214).
Some more documentation tidying.
Turned off some debug code by default.
Fixed a couple of failing tests in different Python versions.
Fix for consistent pos initialisation semantics for different types.
Change to allow wheels to be uploaded to PyPI.
More work for LSB0 mode, but still not finished or documented (sorry).

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>
2021-07-27 09:51:35 -07:00
zangrc
bdc14e9752 python3-simplejson: upgrade 3.17.2 -> 3.17.3
Version 3.17.3 released 2021-07-09

* Replaced Travis-CI and AppVeyor with Github Actions,
  adding wheels for Python 3.9.
  https://github.com/simplejson/simplejson/pull/283

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>
2021-07-27 09:51:35 -07:00
zangrc
75286b2592 python3-rdflib: upgrade 5.0.0 -> 6.0.0
-License-Update: Copyright year updated to 2021.

2021/07/20 RELEASE 6.0.0
========================
6.0.0 is a major stable release that drops support for Python 2 and Python 3 < 3.7. Type hinting is now present in much
of the toolkit as a result.

It includes the formerly independent JSON-LD parser/serializer, improvements to Namespaces that allow for IDE namespace
prompting, simplified use of `g.serialize()` (turtle default, no need to `decode()`) and many other updates to
documentation, store backends and so on.

Performance of the in-memory store has also improved since Python 3.6 dictionary improvements.

There are numerous supplementary improvements to the toolkit too, such as:

* inclusion of Docker files for easier CI/CD
* black config files for standardised code formatting
* improved testing with mock SPARQL stores, rather than a reliance on DBPedia etc

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>
2021-07-27 09:51:35 -07:00
zangrc
9ada4ac610 python3-qrcode: upgrade 7.1 -> 7.2
7.2 (19 July 2021)
==================

- Add Styled PIL image factory, allowing different color masks and shapes in QR codes

- Small performance inprovement

- Add check for border size parameter

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>
2021-07-27 09:51:35 -07:00
Leon Anavi
8fbcfb9f02 python3-pkgconfig: Upgrade 1.5.4 -> 1.5.5
Upgrade to release 1.5.5:

- test_configure_extension: sorted expected

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>
2021-07-23 09:47:04 -07:00
Leon Anavi
79b3000c83 python3-astroid: Upgrade 2.6.2 -> 2.6.5
Upgrade to release 2.6.5:

- Fix a crash when there would be a 'TypeError object does not
  support item assignment' in the code we parse.
- Fix a crash when a AttributeInferenceError was raised when
  failing to find the real name in infer_import_from.

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>
2021-07-23 09:47:04 -07:00
Leon Anavi
5902cb9986 python3-yamlloader: Upgrade 1.0.0 -> 1.1.0
Upgrade to release 1.1.0:

- Update coverage
- Update run unittest
- CI: setup GHA

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>
2021-07-23 09:47:04 -07:00
Leon Anavi
ff93be0560 python3-zeroconf: Upgrade 0.31.0 -> 0.33.1
Upgrade to release 0.33.1:

- Version number change only with less restrictive directory
  permissions
- Let connection_lost close the underlying socket
- Removed duplicate unregister_all_services code

License-Update: License remains LGPL Version 2.1

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>
2021-07-20 09:27:56 -07:00
Leon Anavi
9a95e3e341 python3-pyusb: Upgrade 1.2.0 -> 1.2.1
Upgrade to release 1.2.1:

- core: make Device hashable again

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>
2021-07-20 09:27:56 -07:00
Leon Anavi
ba45aaf9be python3-bitarray: Upgrade 2.2.1 -> 2.2.2
Upgrade to release 2.2.2:

- Speedup slice assignment
- Speedup bitwise operations
- Optimize `getbit()` and `setbit()` in `bitarray.h`
- Fix TypeError messages when bitarray or int (0, 1) are expected
  (bool is a subclass of int)
- Add and improve 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>
2021-07-20 09:27:56 -07:00
Leon Anavi
6e52fe95fe python3-pysonos: Upgrade 0.0.51 -> 0.0.53
Upgrade to release 0.0.53:

- Merge current SoCo master
- Reinstate workaround for pre-10.1 firmware versions

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>
2021-07-20 09:27:56 -07:00
Trevor Gamblin
422ffc7b51 python3-geomet: Add missing RDEPENDS; add to packagegroup-meta-python
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>
2021-07-20 09:27:56 -07:00
zhengruoqin
eae2588497 python3-pytun: upgrade 2.3.0 -> 2.4.1
Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-07-20 09:27:56 -07:00
zhengruoqin
c3336f2512 python3-pulsectl: upgrade 21.5.17 -> 21.5.18
Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-07-20 09:27:56 -07:00
zhengruoqin
485bf0a730 python3-protobuf: upgrade 3.17.0 -> 3.17.3
C++
Introduce FieldAccessListener.
Stop emitting boilerplate {Copy/Merge}From in each ProtoBuf class
Fixed some uninitialized variable warnings in generated_message_reflection.cc.

Kotlin
Fix duplicate proto files error (#8699)

Java
Fixed parser to check that we are at a proper limit when a sub-message has
finished parsing.

General
Support M1 (#8557)

Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-07-20 09:27:56 -07:00
Trevor Gamblin
04701ddaa7 python3-cassandra-driver: add geomet to RDEPENDS, remove DISTUTILS options
python3-cassandra-driver is failing on do_install because the recipe is
trying to pull sources while installing, but it can no longer do this
because a recent change to python3-setuptools removing support for the
deprecated ssl.match_hostname method. Since this only seems to occur
when the DISTUTILS = "--no-libev" option to disable the libev extension
is given, remove that from the recipe and let the extension be compiled
into the package. Additionally, add python3-geomet (the dependency that
cassandra-driver was trying to pull during do_install) to the RDEPENDS
now that it exists as a recipe.

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>
2021-07-20 09:27:56 -07:00
Trevor Gamblin
cd80092d94 python3-geomet: add recipe
GeoMet - Convert GeoJSON to WKT/WKB, and vice versa

Release 0.3.0 notes:

- Add support for GeoPackage binary format (#56)
- Add support for EsriJSON (#63, #66)
- Migrate CI/CD/release automation to CircleCI, away from
- Travis-CI (#62)
- Automate releases to PyPI through CircleCI (#62, #67)
- Fix parsing for empty geometries (#53, #49)
- Improve test coverage (#54)

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>
2021-07-20 09:27:56 -07:00
Leon Anavi
95e9269af6 python3-websocket-client: Upgrade 1.0.1 -> 1.1.0
Upgrade to release 1.1.0:

- Set enable_multithread to True by default
- Performance improvement in _mask() function
- Performance improvement in recv_strict() function
- Performance improvement by removing numpy-related code
- Support uppercase no_proxy, http_proxy, https_proxy env vars
- Add sslopt 'server_hostname' support
- Replace deprecated ssl.PROTOCOL_SSLv23 with ssl.PROTOCOL_TLS
- Update documentation, README

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>
2021-07-20 09:27:56 -07:00
Leon Anavi
bb00cfa7f7 python3-requests: Upgrade 2.25.1 -> 2.26.0
Upgrade to release 2.26.0:

- Requests now supports Brotli compression, if either the `brotli`
  or `brotlicffi` package is installed
- `Session.send` now correctly resolves proxy configurations from
  both the Session and Request. Behavior now matches
  `Session.request`.
- Fixed a race condition in zip extraction when using Requests in
  parallel from zip archive.
- Requests now supports `idna` 3.x on Python 3. `idna` 2.x will
  continue to be used on Python 2 installations

Drop setup.py-Support-idna-version-3.1.patch because the issue
with idna version has been solved in the upstream for Python 3.

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>
2021-07-20 09:27:56 -07:00
zhengruoqin
9a9a39b559 python3-pymisp: upgrade 2.4.143 -> 2.4.144
v2.4.144 (2021-06-07)
---------------------

Changes
~~~~~~~
- Bump version. [Raphaël Vinot]
- Bump object templates. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]
- Bump deps. [Raphaël Vinot]

Other
~~~~~
- Fix misp API response content parsing. [Silvian I]

Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-07-20 09:27:56 -07:00
Khem Raj
d774c88023 layers: Fix git send-email instructions in README
This ensures that cut-n-paste of this command from README will work

Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-07-17 09:08:47 -07:00
Leon Anavi
7f9fcfab67 python3-dateutil: Upgrade 2.8.1 -> 2.8.2
Upgrade to release 2.8.2:

- Updated tzdata version to 2021a
- Fixed a bug in the parser where non-ValueError exceptions would
  be raised during exception handling; this would happen, for
  example, if an IllegalMonthError was raised in dateutil code.
- Fixed the custom repr for dateutil.parser.ParserError, which was
  not defined due to an indentation error.
- Fixed a bug that caused b' prefixes to appear in parse_isodate
  exception messages.
- Make isoparse raise when trying to parse times with inconsistent
  use of : separator.
- Fixed tz.gettz() not returning local time when passed an empty
  string.

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>
2021-07-16 08:57:37 -07:00
Leon Anavi
9e005453c6 python3-texttable: Upgrade 1.6.3 -> 1.6.4
Upgrade to release 1.6.4:

- Fix alignment bug when deco is modified

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>
2021-07-16 08:57:37 -07:00
Leon Anavi
71f8ef949b python3-pandas: Upgrade 1.2.5 -> 1.3.0
Upgrade to release 1.3.0:

- Custom HTTP(s) headers when reading csv or json files
- Read and write XML documents
- Styler enhancements
- DataFrame constructor honors copy=False with dict
- PyArrow backed string data type
- Centered datetime-like rolling windows
- Bug fix: Categorical.unique now always maintains same dtype as
  original
- Bug fix: preserve dtypes in DataFrame.combine_first()
- Bug fix: Groupby methods agg and transform no longer changes
  return dtype for callables
- Bug fix: Consistent casting with setting into Boolean Series
- Bug fix: GroupBy.rolling with MultiIndex no longer drops levels
  in the result

License-Update: Update license year

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>
2021-07-16 08:57:37 -07:00
Khem Raj
55ea6d57e8 python3-pyusb: Add missing runtime dependency on libusb1
Patch as suggested from [1]

[1] https://github.com/openembedded/meta-openembedded/issues/394
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-07-16 08:57:37 -07:00
zangrc
e1b1a13c4b python3-gnupg: upgrade 0.4.6 -> 0.4.7
Released: 2021-03-11

Fixed #129, #141: Added support for no passphrase during key generation.
Fixed #143: Improved permission-denied test. Thanks to Elliot Cameron for the patch.
Fixed #144: Updated logging to only show partial results.
Fixed #146: Allowed a passphrase to be passed to import_keys(). Thanks to Chris de Graaf for the patch.

Add runtime dependency to resolve errors that occurred when import gnupg.

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>
2021-07-16 08:57:37 -07:00
zangrc
8f4ef229d8 python3-networkx: upgrade 2.5.1 -> 2.6.1
This release is the result of 11 months of work with over 363 pull requests by 91 contributors. Highlights include:
Dropped support for Python 3.6.
NumPy, SciPy, Matplotlib, and pandas are now default requirements.
NetworkX no longer depends on the library “decorator”.
Improved example gallery
Removed code for supporting Jython/IronPython
The __str__ method for graph objects is more informative and concise.
Improved import time
Improved test coverage
New documentation theme
Add functionality for drawing self-loop edges
Add approximation algorithms for Traveling Salesman Problem

New functions:
Panther algorithm
maximum cut heuristics
equivalence_classes
dedensification
random_ordered_tree
forest_str
snap_aggregation
networkx.approximation.diameter
partition_quality
prominent_group
prefix_tree_recursive
topological_generations

-License-Update: Copyright year updated to 2021.

Add runtime dependency to resolve errors that occurred when import networkx.

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>
2021-07-16 08:57:37 -07:00
zangrc
b2935f53c1 python3-isort: upgrade 5.9.1 -> 5.9.2
Improved behavior of isort --check --atomic against Cython files.
Fixed #1769: Future imports added below assignments when no other imports present.
Fixed #1772: skip-gitignore will check files not in the git repository.
Fixed #1762: in some cases when skip-gitignore is set, isort fails to skip any files.
Fixed #1767: Encoding issues surfacing when invalid characters set in __init__.py files during placement.
Fixed #1771: Improved handling of skips against named streamed in content.

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>
2021-07-16 08:57:37 -07:00
zangrc
5118c26aa5 python3-flask-socketio: upgrade 5.0.3 -> 5.1.0
Add reloader_options argument to socketio.run#1556 (commit)
Pass auth data from client in connect event handler #1555 (commit)
Do not show simple-websocket install prompt if it is already installed (commit)
Fix namespace bug in example #1543 (commit)
Added index to documentation #724 (commit)
Fixed typo in documentation #1551 (commit) (thanks Mayank Anuragi!)

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>
2021-07-16 08:57:37 -07:00
zangrc
57dbed9013 python3-flask-migrate: upgrade 3.0.0 -> 3.0.1
Add support for Alchemical in addition to Flask-SQLAlchemy (commit)
Remove Flask-Script references from the documentation (commit)

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>
2021-07-16 08:57:37 -07:00
Trevor Gamblin
fe50bd1005 python3-django: upgrade 3.2.4 -> 3.2.5
3.2.5 fixes CVE-2021-35042: Potential SQL injection via unsanitized
QuerySet.order_by() input.

Additional release notes:

- Fixed a regression in Django 3.2 that caused a crash of
  QuerySet.values_list(…, named=True) after prefetch_related() (#32812).
- Fixed a bug in Django 3.2 that caused a migration crash on MySQL 8.0.13+
  when altering BinaryField, JSONField, or TextField to non-nullable
  (#32503).
- Fixed a regression in Django 3.2 that caused a migration crash on MySQL
  8.0.13+ when adding nullable BinaryField, JSONField, or TextField with a
  default value (#32832).
- Fixed a bug in Django 3.2 where a system check would crash on a model
  with an invalid app_label (#32863).

There is no corresponding uprev for the 2.x LTS branch since it is
already at the latest version (2.2.24).

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>
2021-07-16 08:57:37 -07:00
zangrc
e4202c9124 python3-cryptography-vectors: upgrade 3.4.6 -> 3.4.7
Updated Windows, macOS, and manylinux wheels to be compiled with OpenSSL 1.1.1k.

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>
2021-07-16 08:57:37 -07:00
zangrc
5beb295273 python3-configargparse: upgrade 1.5 -> 1.5.1
added get_source_to_settings_dict

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>
2021-07-16 08:57:37 -07:00
zangrc
eca9d154f0 python3-cffi: upgrade 1.14.5 -> 1.14.6
Test fixes for CPython 3.10.0b3
Support for sys.unraisablehook() on Python >= 3.8
Fix two minor memory leaks (thanks Sebastian!)
Like many projects that had an IRC channel on freenode, we moved it to irc.libera.chat.

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>
2021-07-16 08:57:37 -07:00
zangrc
a19be08901 python3-google-api-python-client: upgrade 2.10.0 -> 2.12.0
Features
artifactregistry: update the api bc9a38b (a933dad)
chat: update the api eea3c5c (a933dad)
cloudasset: update the api 2e31dd0 (a933dad)
cloudbuild: update the api 3a3b420 (a933dad)
composer: update the api 78c0d8d (a933dad)
container: update the api a54737f (a933dad)
datafusion: update the api f6bf3c6 (a933dad)
dataproc: update the api 3fde9a3 (a933dad)
documentai: update the api 79c556d (a933dad)
groupssettings: update the api d537f96 (a933dad)
logging: update the api d3548c5 (a933dad)
monitoring: update the api d24af68 (a933dad)
paymentsresellersubscription: update the api cff9039 (a933dad)
redis: update the api 46102d1 (a933dad)
run: update the api db18e29 (a933dad)
slides: update the api 68634cd (a933dad)
spanner: update the api 2895121 (a933dad)
storagetransfer: update the api 24895f1 (a933dad)

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>
2021-07-13 09:38:08 -07:00
Bartosz Golaszewski
614b1fac22 python3-joblib: new package
Add a recipe for joblib: a set of tools to provide lightweight pipelining
in 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>
2021-07-13 09:38:07 -07:00
zhengruoqin
b92e50e0a5 python3-xlsxwriter: upgrade 1.4.3 -> 1.4.4
Release 1.4.4 - July 4 2021
---------------------------

* Added some performance improvements. Performance for larger files should be
  5-10% better.

Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-07-13 09:38:07 -07:00
zhengruoqin
11fdce341f python3-tqdm: upgrade 4.61.1 -> 4.61.2
Add runtime dependency to resolve errors that occurred when import tqdm.

Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-07-13 09:38:07 -07:00
zhengruoqin
3a7b975a60 python3-sentry-sdk: upgrade 1.1.0 -> 1.2.0
Fix for AWSLambda Integration to handle other path formats for function initial handler
Fix for worker to set deamon attribute instead of deprecated setDaemon method
Fix for bottle Integration that discards -dev for version extraction
Fix for transport that adds a unified hook for capturing metrics about dropped events
Add Httpx Integration
Add support for china domains in AWSLambda Integration

Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-07-13 09:38:07 -07:00
zhengruoqin
62bfe42926 python3-regex: upgrade 2021.4.4 -> 2021.7.6
Add runtime dependency to resolve errors that occurred when import regex.

Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-07-13 09:38:07 -07:00
zhengruoqin
5fdff3f352 python3-qrcode: upgrade 6.1 -> 7.1
7.1 (1 July 2021)
=================

- Add --ascii parameter to command line interface allowing to output ascii when stdout is piped

- Add --output parameter to command line interface to specify output file

- Accept RGB tuples in fill_color and back_color

- Add to_string method to SVG images

- Replace inline styles with SVG attributes to avoid CSP issues

- Add Python3.10 to supported versions

Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-07-13 09:38:07 -07:00
zangrc
ed51c73c93 python3-pyusb: upgrade 1.1.1 -> 1.2.0
Added:

core: implement Device.__eq__() (#147)
Changed:

libusb0: implement is_kernel_driver_active() for FreeBSD and DragonFly BSD (#365)
libusb0: implement is_kernel_driver_active() for Mac OS (#374)
Fixed:

setup: prevent installation on unsupported Python versions (PR #364)
control: fix undefined USBError (#372)
tests: fix legacy/hardware tests for Python 3.9 (#373)

Add runtime dependency to resolve errors that occurred when import usb.

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>
2021-07-13 09:38:07 -07:00
Leon Anavi
4c35a3276e python3-cmd2: Upgrade 2.1.1 -> 2.1.2
Upgrade to release 2.1.2:

- Added the following accessor methods for cmd2-specific
  attributes to the argparse.Action class:
  * get_choices_callable()
  * set_choices_provider()
  * set_completer()
  * get_descriptive_header()
  * set_descriptive_header()
  * get_nargs_range()
  * set_nargs_range()
  * get_suppress_tab_hint()
  * set_suppress_tab_hint()
- Now that set_choices_provider() and set_completer() have been
  added as methods to the argparse.Action class, the standalone
  functions of the same name will be removed in version 2.2.0.
  To update to the new convention, do the following:
  * Change set_choices_provider(action, provider) to
    action.set_choices_provider(provider)
  * Change set_completer(action, completer) to
    action.set_completer(completer)

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>
2021-07-08 09:17:50 -07:00
Leon Anavi
e75141814c python3-bitarray: Upgrade 2.1.3 -> 2.2.1
Upgrade to release 2.2.1:

- improve documentation
- speedup `vl_encode()`
- `bitarray.h`: make `getbit()` always an (inline) function
- add assertions in C 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>
2021-07-08 09:17:50 -07:00
Leon Anavi
a5fc60071f python3-pillow: Upgrade 8.2.0 -> 8.3.1
Upgrade to release 8.3.1:

- Catch OSError when checking if fp is sys.stdout
- Handle removing orientation from alternate types of EXIF data
- Make Image.__array__ take optional dtype argument

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>
2021-07-08 09:17:50 -07:00
Leon Anavi
d28805fc13 python3-humanize: Upgrade 3.9.0 -> 3.10.0
Upgrade to release 3.10.0:

- Add Swedish translation

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>
2021-07-08 09:17:50 -07:00
Leon Anavi
5b14b10582 python3-watchdog: Upgrade 2.1.2 -> 2.1.3
Upgrade to release 2.1.3:

- Publish macOS arm64 and universal2 wheels

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>
2021-07-08 09:17:50 -07:00
Leon Anavi
3620ab9a67 python3-astroid: Upgrade 2.6.0 -> 2.6.2
Upgrade to release 2.6.2:

- Fix a crash when the inference of the length of a node failed
- Fix unhandled StopIteration during inference, following the
  implementation of PEP479 in python 3.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>
2021-07-08 09:17:50 -07:00
zangrc
43b5311980 python3-pyrsistent: upgrade 0.17.3 -> 0.18.0
0.18.0, 2021-06-28
 * Fix #209 Update freeze recurse into pyrsistent data structures and thaw to recurse into lists and dicts,
   Thanks @phil-arh for this!
   NB! This is a backwards incompatible change! To keep the old behaviour pass `strict=False` to freeze and thaw.
 * Fix #226, stop using deprecated exception.message. Thanks @hexagonrecursion for this!
 * Fix #211, add union operator to persistent maps. Thanks @bowbahdoe for this!
 * Fix #194, declare build dependencies through pyproject.toml. Thanks @jaraco for this!
 * Officially drop Python 3.5 support.
 * Fix #223, release wheels for all major platforms. Thanks @johnthagen for helping out with this!
 * Fix #221, KeyError obscured by TypeError if key is a tuple. Thanks @ganwell for this!
 * Fix LICENSE file name spelling. Thanks @ndowens and @barentsen for this!
 * Fix #216, add abstractmethod decorator for CheckedType and ABCMeta for _CheckedTypeMeta. Thanks @ss18 for this!
 * Fix #228, rename example classes in tests to avoid name clashes with pytest.

-License-Update: Copyright year updated to 2021.

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>
2021-07-06 09:40:42 -07:00
zangrc
eb70309399 python3-m2crypto: upgrade 0.37.1 -> 0.38.0
0.38.0 - 2021-06-14
-------------------

- Remove the last use of setup.py test idiom.
- Use m2_PyObject_AsReadBuffer instead of PyObject_AsReadBuffer.
- Add support for arm64 big endian <Steev Klimaszewski>
- Make support of RSA_SSLV23_PADDING optional (it has been deprecated).
- Move project to src/ layout
- Allow verify_cb_* to be called with ok=True  <Casey Deccio>
- Be prepared if any of constants in x509_vfy.h is not available.
- But we do support 3.8
- We DO NOT support Python 2.6.

Refresh the following patch:
cross-compile-platform.patch

0001-Allow-verify_cb_-to-be-called-with-ok-True.patch
0001-Use-of-RSA_SSLV23_PADDING-has-been-deprecated.patch
Removed since these are included in 0.38.0

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>
2021-07-06 09:40:42 -07:00
zangrc
f7f1c9fb2d python3-haversine: upgrade 2.3.0 -> 2.3.1
0001-setup.py-Correct-the-license-assignment.patch
Removed since this is included in 2.3.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>
2021-07-06 09:40:42 -07:00
zangrc
21333f74fe python3-grpcio: upgrade 1.38.0 -> 1.38.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>
2021-07-06 09:40:42 -07:00
zangrc
f7dccfbbf3 python3-gast: upgrade 0.4.0 -> 0.5.0
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>
2021-07-06 09:40:42 -07:00
Leon Anavi
eec59b5748 python3-priority: Upgrade 1.3.0 -> 2.0.0
Upgrade to release 2.0.0:

- Python 3.6 is the minimal support Python version.
- Support for Python 3.7 has been added.
- Support for Python 3.8 has been added.
- Support for Python 3.9 has been added.
- Support for Python 2.7 has been removed.
- Support for Python 3.3 has been removed.
- Support for Python 3.4 has been removed.
- Support for Python 3.5 has been removed.
- Support for PyPy (Python 2.7 compatible) has been removed.
- Add type hints throughout and support PEP 561 via a py.typed
  file. This should allow projects to type check their usage of
  this dependency.
- Throw TypeError when creating a priority tree with a
  maximum_streams value that is not an integer.
- Throw ValueError when creating a priority tree with a
  maximum_streams value that is not a positive integer.

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>
2021-07-06 09:40:42 -07:00
zhengruoqin
5d9be43c22 python3-sqlalchemy: upgrade 1.4.17 -> 1.4.20
Changes are here [1] [2] [3]

[1] https://docs.sqlalchemy.org/en/14/changelog/changelog_14.html#change-1.4.20
[2] https://docs.sqlalchemy.org/en/14/changelog/changelog_14.html#change-1.4.19
[3] https://docs.sqlalchemy.org/en/14/changelog/changelog_14.html#change-1.4.18

Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-07-06 09:40:42 -07:00
zhengruoqin
2d3c32c079 python3-urllib3: upgrade 1.26.5 -> 1.26.6
1.26.6 (2021-06-25)
-------------------

* Deprecated the ``urllib3.contrib.ntlmpool`` module. urllib3 is not able to support
  it properly due to `reasons listed in this issue <https://github.com/urllib3/urllib3/issues/2282>`_.
  If you are a user of this module please leave a comment.
* Changed ``HTTPConnection.request_chunked()`` to not erroneously emit multiple
  ``Transfer-Encoding`` headers in the case that one is already specified.
* Fixed typo in deprecation message to recommend ``Retry.DEFAULT_ALLOWED_METHODS``.

Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-07-06 09:40:42 -07:00
zhengruoqin
2c08d7b8c3 python3-scrypt: upgrade 0.8.17 -> 0.8.18
0.8.18
add wheel for python 3.9 and

Signed-off-by: Zheng Ruoqin <zhengrq.fnst@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-07-06 09:40:42 -07:00
Leon Anavi
cd7f0da04d python3-croniter: Upgrade 1.0.13 -> 1.0.15
Upgrade to release 1.0.15:

- restore py2

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>
2021-07-06 09:40:42 -07:00
Leon Anavi
e5eee28bec python3-ipython: Upgrade 7.24.1 -> 7.25.0
Upgrade to release 7.25.0 with a single bugfix, which is highly
recommended for all users of ipdb, ipython debugger %debug magic
and similar.

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>
2021-07-06 09:40:42 -07:00
Leon Anavi
5abdb2dab0 python3-google-api-python-client: Upgrade 2.6.0 -> 2.10.0
Upgrade to release 2.10.0:

analyticsadmin: update the api
androidmanagement: update the api
bigqueryreservation: update the api
dialogflow: update the api
firebaserules: update the api
iap: update the api
keep: update the api
managedidentities: update the api

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>
2021-06-28 09:02:47 -07:00
Leon Anavi
5ad4e64af5 python3-googleapis-common-protos: Add recipe
Add common protobufs used in Google APIs.

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>
2021-06-28 09:02:47 -07:00
Leon Anavi
acf1fc64ad python3-google-auth: Add recipe
Add Google Authentication Library.

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>
2021-06-28 09:02:47 -07:00
Leon Anavi
db07f8533f python3-google-api-core: Add recipe
Add Google API client core library.

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>
2021-06-28 09:02:47 -07:00
Leon Anavi
c948d46a54 python3-httplib2: Fix runtime dependencies
Add python3-compression, python3-netclient and python3-pyparsing
as runtime dependencies.

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>
2021-06-28 09:02:47 -07:00
Leon Anavi
9ffef2b0dc python3-ruamel-yaml: Upgrade 0.17.9 -> 0.17.10
Upgrade to release 0.17.10:

- Bug fix: token with old comment structure != two elements

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>
2021-06-28 09:02:47 -07:00
Kai Kang
cff3116f66 python3-m2crypto: avoid host contamination for swig
If the version of libssl-dev is not match the version of libssl on the
build machine, it fails to compile SWIG/_m2crypto_wrap.c which is
created by swig for python3-m2crypto-native:

| SWIG/_m2crypto_wrap.c:9757:19: error: dereferencing pointer to
   incomplete type 'struct stack_st'
|   if (arg1) (arg1)->num = arg2;
|                   ^~

But it works if no libssl-dev installed on the build machine.

Export STAGING_DIR to make existing patch
0001-setup.py-link-in-sysroot-not-in-host-directories.patch work. And
filter out '/usr/inlucde' from include pathes of swig.

Signed-off-by: Kai Kang <kai.kang@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-06-28 09:02:47 -07:00
Leon Anavi
264616fa0d python3-tqdm: Upgrade 4.61.0 -> 4.61.1
Upgrade to release 4.61.1:

- fix utils._screen_shape_linux() sometimes raising ValueError
- minor build/CI framework updates
- minor documentation updates

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>
2021-06-28 09:02:47 -07:00
Leon Anavi
280127dc21 python3-astroid: Upgrade 2.5.8 -> 2.6.0
Upgrade to release 2.6.0:

- Appveyor and travis are no longer used in the continuous
  integration
- `setuptools_scm`` has been removed and replaced by ``tbump`` in
  order to not have hidden runtime dependencies to setuptools
- ``NodeNg``, the base node class, is now accessible from
  ``astroid`` or ``astroid.nodes`` as it can be used for typing
- pdate enum brain to improve inference of .name and .value
  dynamic class attributes
- Removed ``Repr``, ``Exec``, and ``Print`` nodes as the ``ast``
  nodes they represented have been removed with the change to
  Python 3
- Deprecate ``Ellipsis`` node. It will be removed with the next
  minor release
- Deprecated ``Index`` and ``ExtSlice`` nodes
- Updated all Match nodes to be internally consistent
- Add ``Pattern`` base class

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>
2021-06-28 09:02:47 -07:00
Pascal Bach
3b201ab1bf python3-thrift: support native recipe
This is needed for meta-codechecker to communicate to the server

Signed-off-by: Pascal Bach <pascal.bach@siemens.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-06-28 09:02:47 -07:00
zangrc
9f7f974e03 python3-isort: upgrade 5.8.0 -> 5.9.1
Add runtime dependency to resolve errors that occurred when import isort.

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>
2021-06-28 09:02:47 -07:00
zangrc
5e5b9b43d1 python3-h5py: upgrade 3.2.1 -> 3.3.0
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>
2021-06-28 09:02:47 -07:00
zangrc
7d75d6f6f0 python3-grpcio-tools: upgrade 1.37.0 -> 1.38.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>
2021-06-28 09:02:47 -07:00
zangrc
63d094d8f2 python3-configargparse: upgrade 1.4.1 -> 1.5
Add runtime dependency to resolve errors that occurred when import configargparse.

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>
2021-06-28 09:02:47 -07:00
Leon Anavi
262a13ea72 python3-mypy: Upgrade 0.902 -> 0.910
Upgrade to release 0.910:

- Call get_method_hook when methods are used in decorators
- Don't ask to install a stub package if stubs are installed
- [mypyc] Support various number-related dunders
- Fix crash when inferring multiple assignment with overloaded
  function
- Replace variable annotation with type comment to fix Python 3.5
- docs: updating URL in comment

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>
2021-06-24 12:54:18 -07:00
Leon Anavi
b97c197421 python3-pandas: Upgrade 1.2.4 -> 1.2.5
Upgrade to release 1.2.5:

- Fixed regression in concat() between two DataFrame where one has
  an Index that is all-None and the other is DatetimeIndex
  incorrectly raising
- Fixed regression in DataFrame.sum() and DataFrame.prod() when
  min_count and numeric_only are both given
- Fixed regression in read_csv() when using memory_map=True with
  an non-UTF8 encoding
- Fixed regression in DataFrame.replace() and Series.replace()
  when the values to replace is a NumPy float array
- Fixed regression in ExcelFile() when a corrupt file is opened
  but not closed
- Fixed regression in DataFrame.astype() with dtype=str failing
  to convert NaN in categorical columns

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>
2021-06-24 12:54:18 -07:00
Leon Anavi
226532a55c python3-send2trash: Upgrade 1.5.0 -> 1.7.1
Upgrade to release 1.7.1:

- Changed conditional for when to try to use pyobjc version
- Add console_script entry point
- Increased python CI versions
- Fix minor issue in setup.py
- Fix issue with windows tests importing modules on non-windows
- Unit test cleanups, rewrites, and flake8 cleanups
- Windows: Fix legacy windows platform for multi-byte unicode and
  add tests
- macOS: Add alternative pyobjc version to potentially improve
  compatibility
- Add main method which allows calling via python -m send2trash
  somefile
- Windows: Add support for using IFileOperation when pywin32 is
  present on Vista and newer
- Add support for passing multiple files at once in a list
- Windows: Batch multi-file calls to improve performance
- Windows: Fix issue with SHFileOperation failing silently when
  path is not found

License-Update: License remains BSD-3-Clause 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>
2021-06-24 12:54:18 -07:00
Khem Raj
60b44507d9 python3-py-cpuinfo: Add ptests
Add missing dependency on python3-io for cStringIO
Remove comment about missing modules since _winreg is windows specific
and cStringIO is addressed

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-06-24 12:54:18 -07:00
Khem Raj
9e456c6908 python3-execnet: Add ptests
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-06-24 12:54:18 -07:00
Khem Raj
0b19534f5e python3-aspectlib: Add ptests
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-06-24 12:54:18 -07:00
Khem Raj
13fadb1d03 python3-process-tests: Add recipe
Needed by ptests of other modules

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-06-24 12:54:18 -07:00
Khem Raj
a976968c10 packagegroup-meta-python: Add newly added recipes
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-06-23 10:45:31 -07:00
Khem Raj
b32b434724 meta-python: Add python3-fastjsonschema and its dependencies
python3-fastjsonschema claims to be fastest Python implementation of JSON schema
it however needs additional packages which are also added here, since
they are all dependent, its added in single commit so backporting is
simpler

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-06-23 10:45:31 -07:00
Trevor Gamblin
fa2d3338fb python3-django: upgrade 2.2.23 -> 2.2.24
Version 2.2.24 contains a fix for CVE-2021-33571 and is the latest LTS
release.

Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-06-22 10:00:18 -07:00
Leon Anavi
9b6333a554 python3-mypy: Upgrade 0.812 -> 0.902
Upgrade to release 0.902:

- Move third-party library stubs to stub packages, allowing newer
  stubs to be easily used without updating mypy
- Support pyproject.toml and type guards
- Ship wheels for Apple Silicon
- Many other features and bug fixes

License-Update: Update copyright year

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>
2021-06-22 09:59:30 -07:00
Leon Anavi
39f4be7829 python3-prompt-toolkit: Upgrade 3.0.18 -> 3.0.19
Upgrade to release 3.0.19:

- Make the flush method of the vt100 output implementation
  re-entrant (fixes an issue when using aiogevent).
- Fix off-by-one in `FormattedTextControl` mouse logic.
- Run `print_container` always in a thread (avoid interfering with
  possible event loop).
- Make sphinx autodoc generation platform agnostic (don't import
  Windows stuff when generating Sphinx docs).

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>
2021-06-22 09:59:30 -07:00
Leon Anavi
ea3d3f9b2c python3-elementpath: Upgrade 2.2.2 -> 2.2.3
Upgrade to release 2.2.3:

- Add Python 3.10 in Tox and CI tests
- Apply __slots__ to TDOP and regex classes

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>
2021-06-22 09:59:30 -07:00
Leon Anavi
2ac52ca61c python3-fasteners: Upgrade 0.16.1 -> 0.16.3
Upgrade to release 0.16.3:

- Return the acquired status to the process lock

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>
2021-06-22 09:59:30 -07:00