Commit Graph

3770 Commits

Author SHA1 Message Date
Leon Anavi
7163c83e82 python3-yamlloader: Upgrade 0.5.5 -> 1.0.0
Upgrade to the first stable release 1.0.0:

- Main change is that it returns always an OrderedDict, even for
  Python >= 3.7 for consistency

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-08 07:29:35 -08:00
Leon Anavi
674020f6b7 python3-ipython: Upgrade 7.20.0 -> 7.21.0
Upgrade to release 7.21.0:

- New "context" command in ipdb
- Fix some issues on new osx-arm64
- Compatibility with Xeus-Python for debugger protocol
- Misc docs fixes for compatibility and uniformity with Numpydoc

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-08 07:29:29 -08:00
Khem Raj
76803697fb python3-grpcio: Fix build on mips and musl
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-03-08 07:29:23 -08:00
Khem Raj
204beecb95 python3-grpcio: Upgrade to 1.36.1
Release notes are here [1]

See the differences after 1.35.0 upwards

[1] https://github.com/grpc/grpc/releases

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-03-08 07:29:18 -08:00
Khem Raj
ac673c3bd9 packagegroup-meta-python: Add python3-semantic-version
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-03-08 07:29:13 -08:00
Leon Anavi
ee412135db python3-twisted: Upgrade 20.3.0 -> 21.2.0
Upgrade to release 21.2.0:

- The enableSessions argument to twisted.internet.ssl.CertificateOptions
  now actually enables/disables OpenSSL's session cache. Also, due
  to session-related bugs, it defaults to False.
- twisted.internet.defer.inlineCallbacks and ensureDeferred will
  now associate a contextvars.Context with the coroutines they run,
  meaning that ContextVar objects will maintain their value within
  the same coroutine, similarly to asyncio Tasks. This functionality
  requires Python 3.7+, or the contextvars PyPI backport to be
  installed for Python 3.5-3.6.
- twisted.internet.defer.Deferred.fromCoroutine has been added.
  This is similar to the existing ensureDeferred function, but is
  named more consistently inside Twisted and does not pass through
  Deferreds.
- trial now allows the @unittest.skipIf decorator to specify that
  an entire test class should be skipped.
- The twisted.python.deprecate.deprecatedKeywordParameter decorator
  can be used to mark a keyword paramater of a function or method
  as deprecated.
- Projects using Twisted can now perform type checking against a
  Twisted installation, for example using mypy.
- twisted.python.util.InsensitiveDict now fully implements
  MutableMapping.
- Python 3.8 is now tested and supported.
- Support a coroutine function in twisted.internet.task.react.
- PyPy 3.7 is now tested and supported.
- twisted.web.twcgi.CGIProcessProtocol.processEnded(...) now
  handles an already-finished request, for example when
  request.connectionLost(...) was called previously.
- Twisted's dependency on PyHamcrest has been moved from the base
  package to the new "test" extra. Consequently the test extra
  must be installed for Twisted's test suite to pass.
- Fixed serialization of timedelta, date, and time objects in
  twisted.spread.
- twisted.internet.asyncioreactor.AsyncioSelectorReactor now raises
  an exception if instantiated with an event loop which is not
  compatible with asyncio.SelectorEventLoop. This fixes the
  AsyncioSelectorReactor in Python 3.8+ on Windows, where in bp-34687
  the default Windows asyncio event loop was changed to
  ProactorEventLoop. Applications that use AsyncioSelectorReactor
  on Windows with Python 3.8+ must call
  asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy())
  before instantiating and running AsyncioSelectorReactor.
- twisted.internet.process.registerReapProcessHandler and
  ._BaseProcess.reapProcess will no longer raise a TypeError when
  processing a None PID
- INotify will close its file descriptor if a directory is
  automatically removed by twisted from the watchlist because it's
  deleted, avoiding orphaned filedescriptors.
- DelayedCall.reset() is now working properly with asyncioreactor.
- AsyncioSelectorReactor.seconds() now correctly returns an epoch
  time.
- The _connDone parameter has been removed from
  twisted.internet.abstract.FileDescriptor.loseConnection()'s
  signature in order to match the signature in the base class
  twisted.internet._newtls.ConnectionMixin loseConnection().
- The Gtk3 reactor now runs on Wayland-only sessions
- Descriptive error messages from twisted.internet.error are now
  present when running with 'python -OO'.
- Comparator methods such as eq() now always return NotImplemented
  for uncomparable types.
- When installing Twisted it now requires a minimum Python 3.5.4
  version to match the version used with automated testing. This
  is the minimum Python version that we know that Twisted works
  with.

License-Update: Add contributors and update year.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-08 07:29:01 -08:00
Leon Anavi
e354db255c python3-elementpath: Upgrade 2.1.4 -> 2.2.0
Upgrade to release 2.2.0:

- Optimize TDOP parser's tokenizer
- Resolve ambiguities with operators and statements that are also
  names
- Merge with XPath 3.0/3.1 develop (to be completed)

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-08 07:28:52 -08:00
Leon Anavi
bb743fc71d python3-semantic-version: Add recipe
Add semantic_version - a library implementing the 'SemVer' scheme.
Version 2.8.5 brings:

- Properly handle wildcards in SimpleSpec (e.g. ==1.2.*)

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-01 11:07:05 -08:00
Leon Anavi
3a97d70dec python3-aiohttp: Upgrade 3.7.3 -> 3.7.4
Upgrade to release 3.7.4:

- (SECURITY BUG) Started preventing open redirects in the
  aiohttp.web.normalize_path_middleware middleware.
- Fix interpretation difference of the pure-Python and the
  Cython-based HTTP parsers construct a yarl.URL object for
  HTTP request-target.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-01 11:07:00 -08:00
Leon Anavi
9f21933c7a python3-autobahn: Upgrade 21.2.1 -> 21.2.2
Upgrade to release 21.2.2:

- fix: correct some sphinx doc references
- new: minimum supported Python (language) version is now 3.7 (on
  CPython and PyPy)
- new: more XBR proxy/stub code generation capabilities (RPC
  call/invoation handlers)
- fix: wamp-cryptosign loading of keys from SSH agent
- fix: update Docker image building and build Docker multi-arch
  images
- new: add more WAMP-cryptosign signature test vectors and unit
  tests
- fix: include XBR code rendering templates in package manifest

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-01 11:06:56 -08:00
Leon Anavi
0f6a5106e5 python3-tqdm: Upgrade 4.57.0 -> 4.58.0
Upgrade to release 4.58.0:

- add start delay in seconds
- add tests
- misc code tidy
- misc documentation updates

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-01 11:06:52 -08:00
Leon Anavi
29060cd7e4 python3-pyzmq: Upgrade 22.0.2 -> 22.0.3
Upgrade to release 22.0.3:

- Fix fork-safety bug in garbage collection thread (regression in
  20.0) when using subprocesses.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-01 11:06:48 -08:00
Leon Anavi
4c49ee5c48 python3-rsa: Upgrade 4.7.1 -> 4.7.2
Upgrade to release 4.7.2:

- Fix picking/unpickling issue introduced in 4.7

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-01 11:06:43 -08:00
Leon Anavi
1794f96ddf python3-cvxopt: Upgrade 1.2.5 -> 1.2.6
Upgrade to release 1.2.6:

- Change construction of sparse matrix to avoid limitations of
  linear indexing with long int
- Make create_indexlist declaration match definition in dense.c
- Update version, copyright, and documentation
- Fixes typos in examples, documentation

License-Update: Update year

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-01 11:06:38 -08:00
Leon Anavi
0cad2c73c8 python3-pulsectl: Upgrade 20.5.1 -> 21.2.0
Upgrade to release 21.2.0:

- Link pulsectl-asyncio as an alternative for async code

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-01 11:06:32 -08:00
Leon Anavi
4e09769e32 python3-markdown: Upgrade 3.3.3 -> 3.3.4
Upgrade to release 3.3.4:

- Properly parse unclosed tags in code spans
- Properly parse processing instructions in md_in_html
- Properly parse code spans in md_in_html
- Preserve text immediately before an admonition
- Simplified regex for HTML placeholders addressing
- Ensure permalinks and ankorlinks are not restricted by toc_depth

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-01 11:06:28 -08:00
Leon Anavi
c730c10444 python3-pytest-runner: Upgrade 5.2 -> 5.3.0
Upgrade to release 5.3.0:

- Require Python 3.6 or later
- Refreshed package metadata

License-Update: License remains MIT

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-01 11:06:23 -08:00
Leon Anavi
2e709fb8ee python3-pymisp: Upgrade 2.4.137.3 -> 2.4.138
Upgrade to release 2.4.138:

- Bump version
- Bump deps

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-01 11:06:19 -08:00
Leon Anavi
a915678f20 python3-cffi: Upgrade 1.14.4 -> 1.14.5
Upgrade to release 1.14.5:

- Source fix for old gcc version
- This and future releases should include wheels on more platforms

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-01 11:06:14 -08:00
Leon Anavi
eae89d17bf python3-pandas: Upgrade 1.2.1 -> 1.2.2
Upgrade to release 1.2.2:

- Fixed regression in read_excel() that caused it to raise
  AttributeError when checking version of older xlrd versions
- Fixed regression in DataFrame constructor reordering element
  when construction from datetime ndarray with dtype not
  "datetime64[ns]"
- Fixed regression in DataFrame.astype() and Series.astype()
  not casting to bytes dtype
- Fixed regression in to_pickle() failing to create bz2/xz
  compressed pickle files with protocol=5
- Fixed regression in pandas.testing.assert_series_equal() and
  pandas.testing.assert_frame_equal() always raising
  AssertionError when comparing extension dtypes
- Fixed regression in to_csv() opening codecs.StreamWriter in
  binary mode instead of in text mode and ignoring user-provided
  mode
- Fixed regression in Categorical.astype() casting to incorrect
  dtype when np.int32 is passed to dtype argument
- Fixed regression in to_excel() creating corrupt files when
  appending (mode="a") to an existing file
- Fixed regression in DataFrame.transform() failing in case of an
  empty DataFrame or Series
- Fixed regression in groupby() or resample() when aggregating an
  all-NaN or numeric object dtype column
- Fixed regression in Rolling.count() where the min_periods
  argument would be set to 0 after the operation
- Fixed regression in read_excel() that incorrectly raised when
  the argument io was a non-path and non-buffer and the engine
  argument was specified
- pandas.read_excel() error message when a specified sheetname
  does not exist is now uniform across engines
- Fixed bug in pandas.read_excel() producing incorrect results
  when the engine openpyxl is used and the excel file is missing
  or has incorrect dimension information; the fix requires
  openpyxl >= 3.0.0, prior versions may still fail
- Fixed bug in pandas.read_excel() sometimes producing a DataFrame
  with trailing rows of np.nan when the engine openpyxl is used

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-01 11:06:09 -08:00
Leon Anavi
41b266a9a5 python3-rsa: Upgrade 4.7 -> 4.7.1
Upgrade to release 4.7.1:

- Fix threading issue introduced in 4.7

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-01 11:05:34 -08:00
Leon Anavi
5ea2c6330e python3-watchdog: Upgrade 2.0.0 -> 2.0.2
Upgrade to release 2.0.2:

- [mac] Add missing exception objects
- Thanks to contributors

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-24 09:08:40 -08:00
Leon Anavi
b86eec6cd1 python3-txaio: Upgrade 20.12.1 -> 21.2.1
Upgrade to release 21.2.1:

- fix: update minimum dependencies (here, and in other crossbar
  packages) in an attempt to tame the new pip dep resolver madness

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-24 09:08:36 -08:00
Leon Anavi
5f93029394 python3-alembic: Upgrade 1.5.4 -> 1.5.5
Upgrade to release 1.5.5:

- Adjusted the use of SQLAlchemy's .copy() internals to use
  ._copy() for version 1.4.0, as this method is being renamed.
- Added new config file option prepend_sys_path, which is a
  series of paths that will be prepended to sys.path; the
  default value in newly generated alembic.ini files is ".".

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-24 09:08:33 -08:00
Leon Anavi
676cb0a14e python3-iso8601: Upgrade 0.1.13 -> 0.1.14
Upgrade to release 0.1.14:

- Add GitHub build actions for project
- Add project URLs in setup.py
- Update and fix README links
- Fix handling of README in setup.py (encoding fun in 3.5, 3.6
  and pypy3)
- Add Python 3.9 to test matrix
- Add type hints
- Derive ParseError from ValueError

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-24 09:08:28 -08:00
Leon Anavi
003d8660c1 python3-autobahn: Upgrade 20.12.3 -> 21.2.1
Upgrade to release 21.2.1:

- new: callback user component function "check_config" on
  container/router components
- fix: support Docker images for ARM (32 bit and 64 bit)
- fix: bake Docker multi-arch images
- fix: PyPy3 CI
- new: enable autobahn client unit tests

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-24 09:08:25 -08:00
Leon Anavi
5b8f480569 python3-httplib2: Upgrade 0.18.1 -> 0.19.0
Upgrade to release 0.19.0:

- auth: parse headers using pyparsing instead of regexp
- auth: WSSE token needs to be string not bytes

License-Update: Use file LICENSE instead of PKG-INFO

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-24 09:08:21 -08:00
Leon Anavi
edfb0dae4b python3-typeguard: Upgrade 2.11.0 -> 2.11.1
Upgrade to release 2.11.1:

- Fixed compatibility with Python 3.10

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-24 09:08:17 -08:00
Leon Anavi
1812606d5b python3-mypy: Upgrade 0.800 -> 0.812
Upgrade to release 0.812:

- Improved source file finding
- Excluding paths

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-24 09:08:13 -08:00
Leon Anavi
73e0f7d62b python3-pkgconfig: Upgrade 1.5.1 -> 1.5.2
Upgrade to release 1.5.2:

- Added Support for Linux On Power
- Use poetry_core as build backend

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-24 09:08:09 -08:00
Leon Anavi
ccbd8f87ae python3-prompt-toolkit: Upgrade 3.0.14 -> 3.0.16
Upgrade to release 3.0.16:

- Added ScrollablePane: a scrollable layout container.
  This allows applications to build a layout, larger than the
  terminal, with a vertical scroll bar. The vertical scrolling
  will be done automatically when certain widgets receive the
  focus.
- Added DeduplicateCompleter and ConditionalCompleter.
- Added deduplicate argument to merge_completers.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-24 09:08:04 -08:00
Leon Anavi
58c91e7246 python3-mpmath: Upgrade 1.1.0 -> 1.2.1
Upgrade to release 1.2.1:

- Support @ operator for matrix multiplication
- Add eta() implementing the Dedekind eta function
- Optimized the python_trailing function
- Implement unary plus for matrices
- Improved calculation of gram_index
- Fix a possible division by zero in shanks()
- Fixed indexing errors in deHoog, Knight & Stokes inverse laplace
  transform algorithm
- Corrected branch cuts of the elliprj() function in some cases
- Fix initialization of iv.matrix from non-interval matrix
- Preserve function signatures in PrecisionManager
- Implemented float and complex conversions for ivmpf
- Fixed issue with scalar-matrix multiplication for interval
  matrices
- Fix estimation of quadrature error with multiple subintervals
- Fixed a problem with the defun decorators
- Fix eigenvalue sorting by absolute value

License-Update: Alter the last clause to ensure that Github
recognizes the LICENSE as BSD

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-24 09:08:00 -08:00
Leon Anavi
f4ecc2239a python3-elementpath: Upgrade 2.1.3 -> 2.1.4
Upgrade to release 2.1.4:

- Add tests and apply small fixes to TDOP parser
- Fix wildcard selection of attributes

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-24 09:07:56 -08:00
Leon Anavi
1dd38e35c1 python3-pyperclip: Upgrade 1.8.1 -> 1.8.2
Upgrade to release 1.8.2:

- Better wayland session detection

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-24 09:07:52 -08:00
Leon Anavi
abe3cf8025 python3-tabulate: Upgrade 0.8.7 -> 0.8.9
Upgrade to release 0.8.9:

- Bug fix: Revert support of decimal separators
- Python 3.9 support, 3.10 ready
- New formats: unsafehtml, latex_longtable, fancy_outline
- Support lists of UserDicts as input
- Support hyperlinks in terminal output
- Improve testing on systems with proxies
- Migrate to pytest
- Various bug fixes and improvements

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-24 09:07:45 -08:00
Leon Anavi
7374ceffe8 python3-transitions: Upgrade 0.8.6 -> 0.8.7
Upgrade to release 0.8.7:

- State configuration dictionaries passed to HierarchicalMachine
  can also use states as a keyword to define substates. If
  children and states are present, only children will be
  considered.
- HierarchicalMachine with custom separator now adds is_state
  partials for nested states (e.g. is_C.s3.a()) to models.
- Use model_attribute consistently in AsyncMachine
- Testing now treats most warnings as errors
- As a consequence, pygraphviz.Agraph in diagrams_pygraphviz are
  now copied by transitions since AGraph.copy as of version 1.6
  does not close temporary files appropriately
- HierarchicalMachine now checks whether state_cls, event_cls and
  transition_cls have been subclassed from nested base classes
  (e.g. NestedState) to prevent hard to debug inheritance errors

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-24 09:07:38 -08:00
Leon Anavi
606a07f6c5 python3-h5py: Upgrade 2.10.0 -> 3.1.0
Upgrade to release 3.1.0:

- Fix using bytes as names for :meth:`~Group.create_dataset` and
  :meth:`~Group.create_virtual_dataset`.
- Fix writing data as a list to a dataset with a sub-array data
  type.
- Preserve endianess in Cython dataset Reader
- If pytest is missing pytest-mpi then it will now fail
  immediately with a clear warning message
- Fix a test which was failing on big-endian systems

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-24 09:07:24 -08:00
Oleksandr Kravchuk
b950ca2804 python3-xmlschema: update to 1.5.1
Signed-off-by: Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-22 09:16:42 -08:00
Oleksandr Kravchuk
8695a29bd1 python3-typeguard: update to 2.11.0
Signed-off-by: Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-22 09:16:38 -08:00
Oleksandr Kravchuk
a03f1f0a89 python3-tqdm: update 4.57.0
License-Update: copyright years.

Signed-off-by: Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-22 09:16:34 -08:00
Oleksandr Kravchuk
65630a9ff6 python3-supervisor: update to 4.2.1
Signed-off-by: Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-22 09:16:31 -08:00
Oleksandr Kravchuk
936238da9b python3-soupsieve: update to 2.2
License-Update: copyright years.

Signed-off-by: Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-22 09:16:27 -08:00
Oleksandr Kravchuk
d77bd739e0 python3-sentry-sdk: update to 0.20.3
Signed-off-by: Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-22 09:16:22 -08:00
Oleksandr Kravchuk
f09ecb901b python3-periphery: update to 2.3.0
License-Update: copyright years.

Signed-off-by: Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-22 09:16:18 -08:00
Oleksandr Kravchuk
7bb838c1bf python3-cryptography-vectors: update to 3.4.6
Signed-off-by: Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-22 09:16:15 -08:00
Oleksandr Kravchuk
7f4bc263d3 python3-configargparse: update to 1.3
Signed-off-by: Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-22 09:16:12 -08:00
Oleksandr Kravchuk
aef7c2bb5a python3-astroid: update to 2.5
Signed-off-by: Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-22 09:15:28 -08:00
Khem Raj
8d07411a9e python3-grpcio-tools: Upgrade to 1.35.0
merge inc file into bb as this is the only consumer now
Fix the compiler name logic to match OE, since our compiler name is not
a single word but a collection of words

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-02-19 10:02:43 -08:00
Khem Raj
9cdca949b6 python3-grpcio: Upgrade to 1.35.0
Drop 0001-Fix-build-on-riscv32.patch, its upstreamed
Forward port rest of the patches
Use OPENSSL_NO_ASM only for armv7+/aarch64

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2021-02-19 10:02:43 -08:00
Ross Burton
31aceae5e7 python3-intelhex: add recipe for the intelhex package
Signed-off-by: Ross Burton <ross.burton@arm.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-19 10:02:43 -08:00
Oleksandr Kravchuk
7069852c85 python3-watchdog: update to 2.0.0
Signed-off-by: Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-16 08:51:12 -08:00
Enrico Jörns
b1b87f731a python3-aiohttp: add missing RDEPENDS on python3-typing-extensions
Since aiohttp PR #5078 was backported to 3.7 release
(https://github.com/aio-libs/aiohttp/pull/5079), aiohttp depends on
'typing_extensions' python module [1], provided by python3-typing-extensions
package in meta-python.

[1] https://github.com/aio-libs/aiohttp/blob/v3.7.2/setup.py#L74

Signed-off-by: Enrico Jorns <ejo@pengutronix.de>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-16 08:51:06 -08:00
Bartosz Golaszewski
b8d6d062e1 pydbus-manager: new package
pydbus is a popular (and probably the most 'pythonic') implementation
of DBus for python but unfortunately it doesn't implement the
ObjectManager interface. This project is an extension providing this
functionality.

The reason for having this as a separate project is simple: pydbus seems
to no longer be actively maintained so it's hard to make it part of the
original codebase.

Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-16 08:51:01 -08:00
Oleksandr Kravchuk
558d1e25a1 python3-pykickstart: update to 3.32
Signed-off-by: Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-16 08:50:56 -08:00
Oleksandr Kravchuk
b40b9981ec python3-pychromecast: update to 8.1.0
Signed-off-by: Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-16 08:50:52 -08:00
Oleksandr Kravchuk
e6eb4c4156 python3-protobuf: update to 3.14.0
Signed-off-by: Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-16 08:50:48 -08:00
Oleksandr Kravchuk
c7bcfe15af python3-pika: update to 1.2.0
License-Update: copyright year.

Signed-off-by: Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-16 08:50:41 -08:00
Oleksandr Kravchuk
e41b54b800 python3-idna: update to 3.1
License-Update: copyright years.

Consolidate the inc file into recipe

Signed-off-by: Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-16 08:49:47 -08:00
zhengruoqin
c5acdbe093 python3-periphery: upgrade 2.1.0 -> 2.2.0
Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-09 08:49:38 -08:00
Oleksandr Kravchuk
56ccc50691 python3-twitter: update to 3.10.0
Signed-off-by: Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-09 08:49:34 -08:00
Oleksandr Kravchuk
aaf313c5a0 python3-greenstalk: update to 2.0.0
Signed-off-by: Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-09 08:49:31 -08:00
Oleksandr Kravchuk
ee8d912abf python3-flask-socketio: update to 4.3.1
Signed-off-by: Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-09 08:49:27 -08:00
Oleksandr Kravchuk
16ccd857f2 python3-aws-iot-device-sdk-python: update to 1.4.9
Signed-off-by: Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-09 08:49:12 -08:00
Leon Anavi
326d19c393 python3-pymisp: Upgrade 2.4.137.1 -> 2.4.137.3
Upgrade to release 2.4.137.3:

- Bump objects
- Fix and improve optional dependencies
- Make brotli optional

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-05 10:26:11 -08:00
Leon Anavi
6d38a68d42 python3-pymongo: Upgrade 3.11.2 -> 3.11.3
Upgrade to release 3.11.3:

- Fix benchmark when using Python 3

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-05 10:26:11 -08:00
Leon Anavi
8ccfa76f82 python3-alembic: Upgrade 1.5.3 -> 1.5.4
Upgrade to release 1.5.4:

- Fixed bug in versioning model where a downgrade across a
  revision with a dependency on another branch, yet an ancestor
  is also dependent on that branch, would produce an erroneous
  state in the alembic_version table, making upgrades impossible
  without manually repairing the table.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-05 10:26:11 -08:00
Leon Anavi
3f99682e4a python3-tqdm: Upgrade 4.51.0 -> 4.56.0
Upgrade to release 4.56.0:

- add tqdm.tk
- add tqdm.rich
- minor formatting improvements for tqdm.gui
- fix display() inheritance/override
- add tests
- add documentation

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-05 10:26:11 -08:00
Leon Anavi
8ebc0ab3eb python3-graphviz: Upgrade 0.14.2 -> 0.16
Upgrade to release 0.16:

- Add ``.unflatten()`` method to ``Graph``, ``Digraph``, and
  ``Source``. Add standalone ``unflatten()``.
- Make ``Source.__str__()`` return the ``.source`` instead of the
  ``repr()`` (like ``Graph`` and ``Digraph``).
- Render with ``dot -K<engine> ...`` instead of ``<engine> ...``
  internally.
- Add documentation hint to archived upstream version for Windows.
- Re-render most documentation graphs with Graphviz 2.44.1.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-05 10:26:11 -08:00
Leon Anavi
53bc6fabbd python3-pytest-html: Upgrade 2.1.1 -> 3.1.1
Upgrade to release 3.1.1:

- Fix issue with reporting of missing CSS files
- Stop attaching test reruns to final test report entries
- Allow for report duration formatting
- Respect --capture=no, --show-capture=no, and -s pytest flags
- Make the Results table Links column sortable
- Fix issue with missing image or video in extras
- Fix attribute name for compatibility with pytest-xdist 2
- Post process HTML generation to allow teardown to appear in the
  HTML output

License-Update: Following recent changes to README.rst, just use
LICENSE downloaded from PyPI.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-05 10:26:11 -08:00
Leon Anavi
0f5d4a7ee9 python3-javaobj-py3: Upgrade 0.4.1 -> 0.4.2
Upgrade to release 0.4.2:

- NumPy is now loaded lately, only if the use of numpy arrays is
  expected. This allows the calling modules to load and configure
  numpy beforehand.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-05 10:26:10 -08:00
Zang Ruochen
54912da243 python3-pytz: upgrade 2020.1 -> 2021.1
Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-05 10:26:10 -08:00
Zang Ruochen
ad291854c6 python3-matplotlib: upgrade 3.3.2 -> 3.3.4
Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-05 10:26:10 -08:00
Leon Anavi
b5833accba python3-flask-migrate: Upgrade 2.5.3 -> 2.6.0
Upgrade to release 2.6.0:

- Removed deprecated --head-only option
- Initialize logger with a name
- Move import to the top in env.py file to avoid linter warnings
- Add a note to the documentation regarding logging
- Move builds to GitHub actions

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-05 10:26:10 -08:00
Leon Anavi
00fad68757 python3-sqlalchemy: Upgrade 1.3.22 -> 1.3.23
Upgrade to release 1.3.23:

- Fixed bug where making use of the TypeEngine.with_variant()
  method on a TypeDecorator type would fail to take into account
  the dialect-specific mappings in use, due to a rule in
  TypeDecorator that was instead attempting to check for chains
  of TypeDecorator instances.
- For SQLAlchemy 1.3 only, setup.py pins pg8000 to a version lower
  than 1.16.6. Version 1.16.6 and above is supported by SQLAlchemy
  1.4.
- Fixed issue where using Table.to_metadata() (called
  Table.tometadata() in 1.3) in conjunction with a PostgreSQL
  ExcludeConstraint that made use of ad-hoc column expressions
  would fail to copy correctly.
- Casting to FLOAT is now supported in MySQL >= (8, 0, 17) and
  MariaDb >= (10, 4, 5).
- Fixed bug where MySQL server default reflection would fail
  for numeric values with a negation symbol present.
- Fixed long-lived bug in MySQL dialect where the maximum
  identifier length of 255 was too long for names of all types of
  constraints, not just indexes, all of which have a size limit of
  64. As metadata naming conventions can create too-long names in
  this area, apply the limit to the identifier generator within
  the DDL compiler.
- Fixed deprecation warnings that arose as a result of the release
  of PyMySQL 1.0, including deprecation warnings for the “db” and
  “passwd” parameters now replaced with “database” and “password”.
- Fixed regression from SQLAlchemy 1.3.20 caused by a fix which
  adds double-parenthesis for MySQL functional expressions in
  indexes, as is required by the backend, this inadvertently
  extended to include arbitrary text() expressions as well as
  Alembic’s internal textual component, which are required by
  Alembic for arbitrary index expressions which don’t imply double
  parenthesis. The check has been narrowed to include only binary/
  unary/functional expressions directly.
- Fixed regression in Oracle dialect introduced by #4894 in
  SQLAlchemy 1.3.11 where use of a SQL expression in RETURNING for
  an UPDATE would fail to compile, due to a check for
  “server_default” when an arbitrary SQL expression is not a
  column.
- Fixed bug in Oracle dialect where retriving a CLOB/BLOB column
  via Insert.returning() would fail as the LOB value would need to
  be read when returned; additionally, repaired support for
  retrieval of Unicode values via RETURNING under Python 2.
- Fixed issue where the stringification that is sometimes called
  when attempting to generate the “key” for the .c collection on a
  selectable would fail if the column were an unlabeled custom SQL
  construct using the sqlalchemy.ext.compiler extension, and did
  not provide a default compilation form; while this seems like an
  unusual case, it can get invoked for some ORM scenarios such as
  when the expression is used in an “order by” in combination with
  joined eager loading. The issue is that the lack of a default
  compiler function was raising CompileError and not
  UnsupportedCompilationError.

License-Update: Update year

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-05 10:26:10 -08:00
Leon Anavi
bac561a24e python3-pywbemtools: Upgrade 0.8.0 -> 0.8.1
Upgrade to release 0.8.1:

- Fixed a ValueError on Windows that was raised when the
  connections file was not on the home drive.
- Limit click package to < 8.0 because of a) incompatibility with
  python 2.7, b) incompatibility between click 8.0 and clicl-repl.
- Limit mock package to lt 4.0.3 to avoid issue issue that causes
  test failure.
- Increased minimum pywbem version from 1.1.1 to 1.1.3 to pick
  up fixes.
- Migrated from Travis and Appveyor to GitHub Actions. This required
  several changes in package dependencies for development.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-05 10:26:10 -08:00
Leon Anavi
cdf54c3ba5 python3-croniter: Upgrade 1.0.5 -> 1.0.6
Upgrade to release 1.0.6:

- Fix combination of star and invalid expression bugs

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-05 10:26:10 -08:00
Leon Anavi
7eb983e0d3 python3-ipython: Upgrade 7.19.0 -> 7.20.0
Upgrade to release 7.20.0:

- Support for PyQt5 >= 5.11
- %reset remove imports more agressively
- fix the %conda magic
- compatibility with Jedi 0.18, and bump minimum Jedi version

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-05 10:26:10 -08:00
Leon Anavi
dbf2d7da54 python3-pywbem: Upgrade 1.1.0 -> 1.1.3
Upgrade to release 1.1.3:

- MOF compiler: Fixed bug where MOF compiler did not correctly
  install a CIM schema in a non-default namespace because it tried
  to get the qualifiers from the default namespace.
- Test: Changed dependency to ‘typed-ast’ to match the needs of
  ‘astroid’ and to install it only on CPython. This allows
  re-enabling PyPy3 on Travis.
- Test: Pinned psutil to <=5.6.3 on PyPy2+3 to avoid an
  installation error.
- Test: Increased the minimum version of ‘pyzmq’ on Python 3.9
  to 19.0.0 to avoid an installation error.
- Test: Circumvented unicode issue with
  lxml.etree.fromstring()/XML() on Python 3.9 by passing in binary
  strings.
- Test: Adjusted _format()/_ascii2() testcases to PyPy3 behavior
  with binary vs unicode results.
- Test: Disabled leaktest in travis also on PyPy3 (in addition to
  PyPy2).
- Fixed a DeprecationWarning issued by urllib3 about using the
  whitelist_methods parameter of Retry.
- Fixed issue on GitHub Actions with macos by no longer running
  “brew update” in pywbem_os_setup.sh. (issue #2544)
- Docs: Fixed incorrect attribute name ‘provider_classnames’ in
  method provider example. (issue #2564)
- Mitigated the coveralls HTTP status 422 by pinning
  coveralls-python to <3.0.0.
- Migrated from Travis and Appveyor to GitHub Actions. This
  required several changes in package dependencies for development.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-05 10:26:10 -08:00
Leon Anavi
fb2f308724 python3-meh: Upgrade 0.49 -> 0.50
Upgrade to release 0.50:

- dump: Use exception's type and value when calculating hash

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-05 10:26:10 -08:00
Ross Burton
92d4e241bb python3-pykwalify: fix RDEPENDS
Version 1.8.0 dropped pyyaml and moved to ruamel, so update the RDEPENDS
so that this package continues to work.

Signed-off-by: Ross Burton <ross.burton@arm.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-05 10:26:10 -08:00
Ross Burton
416b83fbaf python3-ruamel-yaml: add native and nativesdk class extension
Signed-off-by: Ross Burton <ross.burton@arm.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-05 10:26:10 -08:00
Andrei Gherzan
8a0d21a5cb gateone: Cleanup assets for removed recipe
We removed this recipe in 809de9b057 but
the recipe related files (for example configuration) were left behind.
This patch cleans that up.

Signed-off-by: Andrei Gherzan <andrei.gherzan@huawei.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-04 09:26:47 -08:00
Leon Anavi
ba31675713 python3-alembic: Upgrade 1.5.2 -> 1.5.3
Upgrade to release 1.5.3:

- Changed the default ordering of “CREATE” and “DROP” statements
  indexes and unique constraints within the autogenerate process,
  so that for example in an upgrade() operation, a particular
  index or constraint that is to be replaced such as for a casing
  convention change will not produce any naming conflicts. For
  foreign key constraint objects, this is already how constraints
  are ordered, and for table objects, users would normally want to
  use Operations.rename_table() in any case.
- Fixed assorted autogenerate issues with SQL Server.
- Fixed issue where autogenerate rendering of op.alter_column()
  would fail to include MySQL existing_nullable=False if the column
  were part of a primary key constraint within the table metadata.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-02 18:50:06 -08:00
Leon Anavi
f8ec422c16 python3-pychromecast: Upgrade 7.7.2 -> 8.0.0
Upgrade to release 8.0.0:

- Infer contentType from playQueue items
- Lint example scripts
- Revert "Lint example scripts"
- Lint example scripts
- Bump pylint to 2.6.0
- Remove unintended 'async' from listener interfaces
- Update BubbleUPNP example
- Refactor listeners and controllers as ABCs
- Add more google devices to consts
- Make current_time optional when loading or queing media

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-02 18:50:06 -08:00
Leon Anavi
e2ae1dd5ba python3-croniter: Upgrade 1.0.4 -> 1.0.5
Upgrade to release 1.0.5:

- Security fix: fix overflow when using cron ranges

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-02 18:50:06 -08:00
Leon Anavi
bc68e8fdbf python3-elementpath: Upgrade 2.1.2 -> 2.1.3
Upgrade to release 2.1.3:

- Extend tests for XPath 2.0 with minor fixes
- Fix fn:round-half-to-even

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-02 18:50:06 -08:00
Leon Anavi
2e846b2d5d python3-cmd2: Upgrade 1.4.0 -> 1.5.0
Upgrade to release 1.5.0:

- Fixed bug where setting always_show_hint=True did not show a
  hint when completing Settables
- Fixed bug in editor detection logic on Linux systems that do not
  have which
- Fixed bug in table creator where column headers with tabs would
  result in an incorrect width calculation
- Fixed FileNotFoundError which occurred when running history
  --clear and no history file existed.
- Added silent_startup_script option to cmd2.Cmd.__init__(). If
  True, then the startup script's output will be suppressed.
  Anything written to stderr will still display.
- cmd2 now uses pyreadline3 when running Python 3.8 or greater
  on Windows
- This is the last release planned to support Python 3.5

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-02 18:50:06 -08:00
Peter Smith
b652a9cec0 python3-ruamel-yaml: add support for native and nativesdk
The recipe is missing the BBCLASSEXTEND so it has been added.

Signed-off-by: Peter Smith <salerio@gmail.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-01 10:44:59 -08:00
Leon Anavi
5fc34f7850 python3-prctl: Upgrade 1.7 -> 1.8.1
Upgrade to release 1.8.1:

- Master was renamed to main
- Backwards compatibility fixes
- Install dependencies before trying to build/publish

License-Update: Update year

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-01 10:44:55 -08:00
Leon Anavi
59506ec90e python3-aiohttp-jinja2: Upgrade 1.2.0 -> 1.4.2
Upgrade to release 1.4.2:

- Fix type annotation for context_processors argument
- Bump the minimal supported aiohttp version to 3.6.3 to avoid
  problems with uncompatibility between aiohttp and yarl
- Add async rendering support
- Document async rendering functions
- Add CHANGES.rst to MANIFEST.in and sdist

License-Update: Remove an empty line at the end of the file

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-01 10:44:51 -08:00
Leon Anavi
dc8afb18c1 python3-pyzmq: Upgrade 21.0.2 -> 22.0.2
Upgrade to release 22.0.2:

- Add workaround for bug in DLL loading for Windows wheels with
  conda Python >= 3.8
- Fix type of Frame.bytes for non-copying recvs with CFFI backend
  (regression in 21.0)
- Add manylinux wheels for pypy
- Some typing fixes
- Bump bundled libzmq to 4.3.4
- Strip unused symbols in manylinux wheels, resulting in
  dramatically smaller binaries. This matches behavior in v20 and
  earlier.
- Windows CPython wheels bundle public libzmq binary builds,
  instead of building libzmq as a Python Extension. This means
  they include libsodium for the first time.
- Our own implementation of bundling libzmq into pyzmq on Windows
  is removed, instead relying on delvewheel (or installations
  putting dlls on %PATH%) to bundle dependency dlls.
- The (new in 21.0) Windows wheels for PyPy likely require the
  Windows vcredist package. This may have always been the case,
  but the delvewheel approach doesn't seem to work.
- Windows + PyPy is now the only remaining case where a wheel has
  libzmq built as an Extension. All other builds ship libzmq built
  using its own tooling, which should result in better, more
  stable builds.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-01 10:44:46 -08:00
Leon Anavi
10ffcd08e0 python3-cantools: Upgrade 36.1.0 -> 36.2.0
Upgrade to release 36.2.0:

- Make matplotlib optional
- Only run release job for tagged commits

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-01 10:44:41 -08:00
Leon Anavi
ebdfd17567 python3-croniter: Upgrade 1.0.2 -> 1.0.4
Upgrade to release 1.0.4:

- Raise CroniterBadCronError when error syntax
- Fix spelling

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-01 10:44:36 -08:00
Mingli Yu
193078e6bb python3-h5py: improve reproducibility
Prevent absolute path from ending up in the egg-info SOURCES.txt.

Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-01 10:44:32 -08:00
Leon Anavi
0532eaf50b python3-xlrd: Upgrade 1.2.0 -> 2.0.1
Upgrade to release 2.0.1:

- Use the README as the long description on PyPI.
- Remove support for anything other than .xls files.
- Remove support for psyco.
- Change the default encoding used when no CODEPAGE record can be
  found from ascii to iso-8859-1.
- Add support for iterating over :class:`~xlrd.book.Book` objects.
- Add support for item access from :class:`~xlrd.book.Book`
  objects, where integer indices and string sheet names are
  supported.
- Non-unicode spaces are now stripped from the "last author"
  information.
- Workbook corruption errors can now be ignored using the
  ignore_workbook_corruption option to :class:`~xlrd.open_workbook`.
- Handle WRITEACCESS records with invalid trailing characters.
- Officially support Python 3.8 and 3.9.

Get the source code from the git repository rather than from PyPI
to obtain the tests.

License-Update: Use file LICENSE.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-01 10:44:27 -08:00
Leon Anavi
82b80e6ab1 python3-pybind11: Upgrade 2.5.0 -> 2.6.2
Upgrade to release 2.6.2:

- enum: add missing Enum.value property.
- Allow thread termination to be avoided during shutdown for CPython
  3.7+ via .disarm for gil_scoped_acquire/gil_scoped_release.
- Fix bug where the constructor of object subclasses would not
  throw on being passed a Python object of the wrong type.
- The type_caster for integers does not convert Python objects with
  __int__ anymore with noconvert or during the first round of trying
  overloads.
- When casting to a C++ integer, __index__ is always called and not
  considered as conversion, consistent with Python 3.8+.
- Fixed segfault in multithreaded environments when using
  scoped_ostream_redirect.
- Leave docstring unset when all docstring-related options are
  disabled, rather than set an empty string.
- The module key in builtins that pybind11 uses to store its
  internals changed from std::string to a python str type (more
  natural on Python 2, no change on Python 3).
- Fixed assertion error related to unhandled (later overwritten)
  exception in CPython 3.8 and 3.9 debug builds.
- Fix py::gil_scoped_acquire assert with CPython 3.9 debug build.
- Fix issue with a test failing on PyTest 6.2.
- Fix warning modifying constructor parameter 'flag' that shadows
  a field of 'set_flag' [-Wshadow-field-in-constructor-modified].
- Suppressed some deprecation warnings about old-style
  __init__/__setstate__ in the tests.
- Fix invalid access when calling a pybind11 __init__ on a
  non-pybind11 class instance.
- Fixed various minor memory leaks in pybind11's test suite.
- Resolved memory leak in cpp_function initialization when
  exceptions occurred.
- Added a Valgrind build, checking for leaks and memory-related
  UB, to CI.
- Intel compiler was not activating C++14 support due to a broken
  define.
- Support ICC and NVIDIA HPC SDK in C++17 mode.
- Support Intel OneAPI compiler (ICC 20.2) and add to CI.

License-Update: Update a link.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-01 10:44:20 -08:00
Leon Anavi
a66ddd88a7 python3-urllib3: Upgrade 1.26.2 -> 1.26.3
Upgrade to release 1.26.3:

- Fixed bytes and string comparison issue with headers
- Changed ProxySchemeUnknown error message to be more actionable
  if the user supplies a proxy URL without a scheme

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-01 10:44:16 -08:00
Leon Anavi
dcf10eaede python3-prompt-toolkit: Upgrade 3.0.11 -> 3.0.14
Upgrade to release 3.0.14:

- Disable bell when `PROMPT_TOOLKIT_BELL=false` environment
  variable has been set.
- Improve cancellation of history loading.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-01 10:44:11 -08:00
Leon Anavi
b3d4c2482c python3-gevent: Upgrade 20.9.0 -> 21.1.2
- Update the embedded libev from 4.31 to 4.33.
- Update the embedded libuv from 1.38.0 to 1.40.0.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-01 10:43:42 -08:00
Leon Anavi
fd123c9bb2 python3-pyzmq: Upgrade 21.0.1 -> 21.0.2
Upgrade to release 21.0.2:

- Fix wheels on macOS older than 10.15 (sets
  MACOSX_DEPLOYMENT_TARGET to 10.9, matching wheel ABI tag).

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-28 10:53:00 -08:00
Leon Anavi
a5744215be python3-typed-ast: Upgrade 1.4.1 -> 1.4.2
Upgrade to release 1.4.2:

- Fix linker error in debug build
- Fix cross compile by adjusting includes
- ast27: prefix exported symbols
- Add 3.9 to supported versions

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-28 10:52:56 -08:00
Leon Anavi
e630a5dc35 python3-pako: Upgrade 0.2.3 -> 0.3.0
Upgrade to release 0.3.0 which adds support for the following
package managers:

- DNF (as used by RPM based distributions)
- RPM-ostree (as used by Fedora CoreOS and RHEL CoreOS)
- Pacman (as used by Arch based distributions)
- Yum (as used by some RPM based distributions)
- Zypper (as used by OpenSUSE based distributions)
- APK (as used by Alpine Linux and postmarketOS)

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-28 10:52:51 -08:00
Leon Anavi
201417e0e3 python3-portion: Add recipe
Portion is a Python library providing data structure and
operations for intervals. It replaces python-intervals.
Release 2.1.4 brings:

- Much faster get, copy and | operations for IntervalDict.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-28 10:52:46 -08:00
Leon Anavi
8dc212e147 python3-intervals: Upgrade 1.10.0 -> 1.10.0.post1
Upgrade to release 1.10.0.post1:

- IntervalDict has a .combine method to merge its keys and values
  with another IntervalDict.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-28 10:52:42 -08:00
Leon Anavi
99922c4260 python3-xmlschema: Upgrade 1.4.1 -> 1.4.2
Upgrade to release 1.4.2:

- Add decoding of binary datatypes (xs:hexBinary and
  xs:base64Binary)
- Fix encoding from string values for some builtin datatypes
  (decimal, binary, duration and datetime)

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-28 10:52:37 -08:00
Leon Anavi
ee864c09d6 python3-aenum: Upgrade 2.2.6 -> 3.0.0
Upgrade to release 3.0.0:

- Flags only list single bit names, multi-bit are aliases
- error checking to go with that
- getattr magic is off for AutoValue
- Member creation has been redone to match Python 3.10's methods.
  This also allows all supported Pythons (2.7, 3.3+) to use the
  __set_name__ and __init_subclass__ protocols (more robustly
  than in aenum 2.2.5)
- enum_property() has been renamed to property() (old name still
  available, but deprecated)
- bin() replacement shows negative integers in twos-complement

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-28 10:52:32 -08:00
Leon Anavi
79e2a520bc python3-diskcache: Upgrade 5.1.0 -> 5.2.1
Upgrade to release 5.2.1:

- Install libmemcached-dev for release GitHub action

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-28 10:52:18 -08:00
Leon Anavi
3a53e12270 python3-coverage: Upgrade 5.3.1 -> 5.4
Upgrade to release 5.4:

- The text report produced by coverage report now always outputs
  a TOTAL line, even if only one Python file is reported. This
  makes regex parsing of the output easier.
- The skip_covered and skip_empty settings in the configuration
  file can now be specified in the [html] section, so that text
  reports and HTML reports can use separate settings. The HTML
  report will still use the [report] settings if there isn't a
  value in the [html] section.
- Combining files on Windows across drives how works properly.
- Fix an obscure warning from deep in the _decimal module.
- Update to support Python 3.10 alphas in progress, including
  PEP 626: Precise line numbers for debugging and other tools.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-28 10:52:13 -08:00
Leon Anavi
2a3f5f7de6 python3-cachetools: Upgrade 4.2.0 -> 4.2.1
Upgrade to release 4.2.1:

- Handle __missing__() not storing cache items.
- Clean up __missing__() example.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-28 10:52:09 -08:00
Zang Ruochen
e7d076556d python3-nmap: upgrade 1.4.8 -> 1.5.0
Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-28 10:52:05 -08:00
Zheng Ruoqin
87ebf80fa4 python3-ipy: upgrade 1.00 -> 1.01
Version 1.01 (2020-12-01)
------------
 * Update to support up to Python 3.9

Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-28 10:52:00 -08:00
Zheng Ruoqin
4e6508cb71 python3-djangorestframework: upgrade 3.12.1 -> 3.12.2
Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-28 10:51:57 -08:00
Leon Anavi
095dfc84d7 python3-custom-inherit: Upgrade 2.3.0 -> 2.3.1
Uprade to release 2.3.1:

- Methods section is now recognized in NumPy-style docstrings

License-Update: Use file LICENSE.md

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-28 10:51:52 -08:00
Leon Anavi
0589f102d8 python3-lazy-object-proxy: Upgrade 1.5.1 -> 1.5.2
Upgrade to release 1.5.2:

- Added Python 3.9 wheels.
- Removed Python 2.7 Windows wheels (not supported on newest
  image with Python 3.9).

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-28 10:51:47 -08:00
Leon Anavi
0ecbd163d0 python3-socketio: Upgrade 4.6.0 -> 5.0.4
- Include error message and arguments in CONNECT_ERROR packet
- Fix typos in the documentation
- Updated connection options in the documentation
- Update to match the JavaScript Socket.IO 3.x releases
  (Socket.IO v5 protocol revision)
- Remove unnecessary binary argument
- Remove dependency on the six package
- Added version compatibility chart to README

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-28 10:51:42 -08:00
Leon Anavi
83fb31b3ba python3-pymisp: Upgrade 2.4.135.3 -> 2.4.137.1
Upgrade to release 2.4.137.1:

- Fail if a duplicate object is added to an event.
- Add test case for page/limit in logs search.
- Improve docstring for get_event.
- Better warning if lief is outdated.
- Update minimal dependency for lief in setup.py.

Fetch source from the git repository to avoid extras_require issue
in setup.py from the archive for this release in PyPI.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-28 10:51:38 -08:00
Leon Anavi
8fde5ca189 python3-natsort: Upgrade 7.1.0 -> 7.1.1
Upgrade to release 7.1.1:

- Use GitHub Actions instead of Travis-CI
- No longer pin testing dependencies
- Correct a minor typo

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-28 10:51:15 -08:00
Andreas Müller
4877dd19c0 packagegroup-meta-python: Add asttokens/mypy/mypy-extensions/typed-ast/send2trash
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-27 10:21:14 -08:00
Trevor Gamblin
39e7c2e55b packagegroup-meta-python: add ptest packages to ptest group
There were a large number of Python package recipes with ptests that
were not included in packagegroup-meta-python3-ptest, so add them.

Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-27 10:21:14 -08:00
Trevor Gamblin
22abac54a7 packagegroup-meta-python: sort package names, add notes
The packagegroup-meta-python file's package lists were unsorted, so
they were reorded to make it easier to manually inspect. Additionally,
the packagegroup-meta-python3-extended and -connectivity packagegroups
did not appear to have any use except to be added to the main group,
so they were removed and their recipe lists combined into the main
packagegroup-meta-python3. Finally, a note about enabling Fortran
support in the compiler was added to the file, since python3-cvxopt
relies on it in order to build.

Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-27 10:21:14 -08:00
Junjie Mao
fab930d8d0 python3-xmlschema: Yocto recipes for validating against XSD 1.1
This patch adds recipes for xmlschema and its dependency in order to enable
XML validation against XSD 1.1 in Python.

Signed-off-by: Junjie Mao <junjie.mao@intel.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-27 10:21:14 -08:00
Leon Anavi
ff9f361413 python3-pyyaml: Upgrade 5.4 -> 5.4.1
Upgrade to release 5.4.1:

- Fix stub compat with older pyyaml versions that may unwittingly
  load it

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-27 10:21:14 -08:00
Leon Anavi
6632808407 python3-pyjwt: Upgrade 2.0.0 -> 2.0.1
Upgrade to release 2.0.1:

- Rename CHANGELOG.md to CHANGELOG.rst and include in docs
- Fix from_jwk() for all algorithms

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-27 10:21:14 -08:00
Andreas Müller
432984b96f python3-typed-ast: Initial add 1.4.1
Currently it lives in:

* meta-microcontroller
* meta-ros-common
* meta-sca

Seems important so add it to meta-python

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-27 10:21:14 -08:00
Andreas Müller
ce96b66482 python3-asttokens: initial add 2.0.4
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-27 10:21:14 -08:00
Andreas Müller
b654ca9c93 python3-send2trash_ initial add 1.5.0
Currently it lives in:

* meta-jupyter
* meta-microcontroller

Seems important so add it to meta-python

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-27 10:21:14 -08:00
Andreas Müller
7b78763428 python3-mypy: initial add 0.800
Currently it lives in:

* meta-microcontroller
* meta-ros-common
* meta-sca

Seems important so add it to meta-python

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-27 10:21:14 -08:00
Andreas Müller
4d22adb1c0 python3-mypy-extensions: Initial add 0.4.3
Currently it lives in:

* meta-iot-cloud
* meta-microcontroller
* meta-ros-common
* meta-sca

Seems important so add it to meta-python

Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-27 10:21:14 -08:00
Andrew Jeffery
9d8ad862fb meta-python: Add jstyleson
jstyleson is a library to parse JSON with js-style comments.

The license isn't shipped in the pypi package, so it was extracted from
the github repo at [1].

[1] 8c47cc9e66/LICENSE

Signed-off-by: Andrew Jeffery <andrew@aj.id.au>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-25 14:34:06 -08:00
Andrew Jeffery
1ac1e523cc meta-python: Add hexdump package
The hexdump package appears to be abandoned, but it's used as the
dependency of another project I'm packaging.

Signed-off-by: Andrew Jeffery <andrew@aj.id.au>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-25 14:34:06 -08:00
Leon Anavi
2dfe32fd82 python3-prompt-toolkit: Upgrade 3.0.10 -> 3.0.11
Upgrade to release 3.0.11:

- Poll terminal size: better handle resize events when the
  application runs in a thread other than the main thread (where
  handling SIGWINCH doesn't work) or in the Windows console.
- Fix bug in system toolbar. The execution of system commands was
  broken.
- A refactoring of patch_stdout that includes several fixes.
- A refactoring of the `ThreadedHistory`, which includes several
  fixes, in particular a race condition that happened when editing
  input while a big history was still being loaded in the
  background.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-25 14:34:06 -08:00
Leon Anavi
8841b219fb python3-alembic: Upgrade 1.5.1 -> 1.5.2
Upgrade to release 1.5.2:

- Fixed regression where new "loop detection" feature produced
  false positives for revision names that have overlapping
  substrings between revision number and down revision and/or
  dependency, if the downrev/dependency were not in sequence form.
- Fixed regression where Alembic would fail to create a
  transaction properly if the sqlalchemy.engine.Connection were a
  so-called "branched" connection, that is, one where the .connect()
  method had been called to create a "sub" connection.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-25 14:34:06 -08:00
Leon Anavi
cc12904210 python3-pyzmq: Upgrade 20.0.0 -> 21.0.1
Upgrade to release 21.0.1:

- drop support for Python 3.5. Python >= 3.6 is required
- mypy type stubs, which should improve static analysis of pyzmq,
  especially for dynamically defined attributes such as zmq
  constants. These are new! Let us know if you find any issues.
- support for zero-copy and sending bufferables with cffi backend.
  This is experimental! Please report issues.
- zero-copy support in CFFI backend (send(copy=False) now does
  something).
- Support sending any buffer-interface-providing objects in CFFI
  backend.
- Errors during teardown of asyncio Sockets
- Missing MSVCP140.dll in Python 3.9 wheels on Windows, causing
  vcruntime-redist package to be required to use the Python 3.9
  wheels for pyzmq 20.0
- pyzmq-21.0.1 only changes CI configuration for Windows wheels
  (built with VS2017 instead of VS2019), fixing compatibility with
  some older Windows on all Pythons and removing requirement of
  VC++ redistributable package on latest Windows and Python < 3.8.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-25 14:34:06 -08:00
Leon Anavi
74269b3f8e python3-smbus2: Upgrade 0.4.0 -> 0.4.1
Upgrade to release 0.4.1:

- SonarCloud quality checks.
- Tests added to the dist package.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-25 14:34:06 -08:00
Leon Anavi
90dcf3ce89 python3-ujson: Upgrade 4.0.1 -> 4.0.2
Upgrade to release 4.0.2:

- Travis CI: Test on 3.9 final, remove 3.8
- Toward matching Python standard library output for float
- Fix errors on reading long decimal floats
- Make empty dict/list indented serialization match stdlib json
- Fix dealing with None types

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-25 14:34:06 -08:00
Leon Anavi
830795a35f python3-croniter: Upgrade 1.0.1 -> 1.0.2
Upgrade to release 1.0.2:

- Fix match when datetime has microseconds

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-25 14:34:06 -08:00
Leon Anavi
4ee8ea68a5 python3-pykwalify: Upgrade 1.7.0 -> 1.8.0
Upgrade to release 1.8.0:

- Dropped support for python 3.5 and below, including 2.7
- ruamel.yaml is now the default and preffered yaml parser
- Dropped support for pyyaml parser
- Update minimum version of ruamel.yaml to 0.16.0
- Update minimum version of python-dateutil to 2.8.0
- Added new cli argument "--encoding ENCODING" that specifies what
  encoding to open data and schema files with
- Enum error strings now output all possible values for easier
  debugging
- Removed deprecated imp module. Dynamic imports imght be affected
- Implement new type email that uses a relative simple regex to
  validate email addresses according to RFC 5322 Official Standard
- Implement new type url that uses a relative simple regex to
  validate url:s according to RFC 1808
- Add new argument "schema_file_obj" to Core class. Allows to pass
  in StringIO or similar interfaced objects to use for validation.
- Add new argument "data_file_obj" to Core class. Allows to pass in
  StringIO or similar interfaced objects to use for validation.
- Fixed a regression from 1.6.1 where ruamel.yaml safe_load would
  break for all built-in custom python tags.
- All normal python tags should now be possible to use again.
- Fixed an issue with regex values that was not converted to str()
  before regex mapping was attempted.
- This should validate things like integers and objects that support
  str() conversion better.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-25 14:34:06 -08:00
Leon Anavi
1745dd9993 python3-bitarray: Upgrade 1.6.1 -> 1.6.3
Upgrade to release 1.6.3:

- add missing .h files to sdist tarball
- use `Py_SET_TYPE()` and `Py_SET_SIZE()` for Python 3.10
- add official Python 3.10 support
- fix slice assignement to same object, e.g. a[2::] = a or
  a[::-1] = a
- add bitarray.h

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-25 14:34:06 -08:00
Leon Anavi
38511064df python3-lz4: Upgrade 3.1.1 -> 3.1.3
Upgrade to release 3.1.3:

- Add support for publishing wheels to PyPi for Python 3.9. Wheel
  building is currently broken for Python 3.9 on Arm/Aarch64
- Drop building of wheels for Python 3.5
- Move to Visual Studio 2019 (14.2) on AppVeyor
- Build against the XCode 12.2 image on Travis

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-25 14:34:06 -08:00
Leon Anavi
9beb40969d python3-coverage: Upgrade 5.3 -> 5.3.1
Upgrade to release 5.3.1:

- When using --source on a large source tree, v5.x was slower than
  previous versions. This performance regression is now fixed.
- Mysterious SQLite errors can happen on PyPy. An immediate retry
  seems to fix the problem, although it is an unsatisfying
  solution.
- The HTML report now saves the sort order in a more widely
  supported way.
- The HTML report pages now have a Sleepy Snake favicon.
- Wheels are now provided for manylinux2010, and for PyPy3.
- Continuous integration has moved from Travis and AppVeyor to
  GitHub Actions.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-25 14:34:06 -08:00
Leon Anavi
6934bf3db8 python3-alembic: Upgrade 1.4.3 -> 1.5.1
Upgrade to release 1.5.1:

- Fixed installation issue where the "templates" directory was not
  being installed, preventing commands like "list_templates" and
  "init" from working.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-25 14:34:06 -08:00
Leon Anavi
83501388f1 python3-pandas: Upgrade 1.2.0 -> 1.2.1
Upgrade to release 1.2.1:

- Fixed regression in to_csv() that created corrupted zip files
  when there were more rows than chunksize
- Fixed regression in to_csv() opening codecs.StreamReaderWriter
  in binary mode instead of in text mode
- Fixed regression in read_csv() and other read functions were
  the encoding error policy (errors) did not default to "replace"
  when no encoding was specified
- Fixed regression in read_excel() with non-rawbyte file handles
- Fixed regression in DataFrame.to_stata() not removing the
  created file when an error occured
- Fixed regression in DataFrame.__setitem__ raising ValueError
  when expanding DataFrame and new column is from type "0 - name"
- Fixed regression in setting with DataFrame.loc() raising
  ValueError when DataFrame has unsorted MultiIndex columns and
  indexer is a scalar
- Fixed regression in setting with DataFrame.loc() raising
  KeyError with MultiIndex and list-like columns indexer enlarging
  DataFrame
- Fixed regression in groupby() with Categorical grouping column
  not showing unused categories for grouped.indices
- Fixed regression in GroupBy.sem() where the presence of
  non-numeric columns would cause an error instead of being
  dropped
- Fixed regression in DataFrameGroupBy.diff() raising for int8 and
  int16 columns
- Fixed regression in DataFrame.groupby() when aggregating an
  ExtensionDType that could fail for non-numeric values
- Fixed regression in Rolling.skew() and Rolling.kurt() modifying
  the object inplace
- Fixed regression in DataFrame.any() and DataFrame.all() not
  returning a result for tz-aware datetime64 columns
- Fixed regression in DataFrame.apply() with axis=1 using str
  accessor in apply function
- Fixed regression in DataFrame.replace() raising ValueError when
  DataFrame has dtype bytes
- Fixed regression in Series.fillna() that raised RecursionError
  with datetime64[ns, UTC] dtype
- Fixed regression in comparisons between NaT and datetime.date
  objects incorrectly returning True
- Fixed regression in calling NumPy accumulate() ufuncs on
  DataFrames, e.g. np.maximum.accumulate(df)
- Fixed regression in repr of float-like strings of an object
  dtype having trailing 0’s truncated after the decimal
- Fixed regression that raised AttributeError with PyArrow
  versions [0.16.0, 1.0.0)
- Fixed regression in pandas.testing.assert_frame_equal() raising
  TypeError with check_like=True when Index or columns have mixed
  dtype

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-25 14:34:06 -08:00
Leon Anavi
21b2842517 python3-pyserial: Upgrade 3.4 -> 3.5
Upgrade to release 3.5:

- iAdd a backend for Silicon Labs CP2110/4 HID-to-UART bridge.
  (depends on hid module)
- Use absolute import everywhere
- win32: miniterm Working CMD.exe terminal using Windows 10 ANSI
  support
- Make ListPortInfo hashable
- threaded: "write" returns byte count
- Add bytesize and stopbits argument parser to tcp_serial_redirect
- loop: add out_waiting
- list_ports_linux: Correct "interface" property on Linux hosts
- Remove Python 3.2 and 3.3 from test
- doc updates
- miniterm: add CTRL+T Q as alternative to exit
- miniterm: suspend function key changed to CTRL-T Z
- add command line tool entries pyserial-miniterm (replaces
  miniterm.py) and pyserial-ports (runs serial.tools.list_ports).
- python -m serial opens miniterm (use w/o args and it will print
  port list too) [experimental]
- Don't open port if self.port is not set while entering context
  manager
- refactor: raise new instances for PortNotOpenError and
  SerialTimeoutException
- list_ports: set default name attribute
- fix: compare only of the same type in
  list_ports_common.ListPortInfo
- rfc2217/close(): fix race-condition
- return b'' when connection closes on rfc2217 connection
- rfc2217/close(): fix race condition
- Fixed flush_input_buffer() for situations where the remote end
  has closed the socket.
- reset_input_buffer() can hang on sockets
- examples: port_publisher python 3 fixes
- miniterm: Fix miniterm constructor exit_character and
  menu_character
- miniterm: use exclusive access for native serial ports by
  default
- miniterm: fix double use of CTRL-T + s use z for suspend instead
- examples: refactor wx example, use Bind to avoid deprecated
  warnings, IsChecked, unichr
- posix: fix PosixPollSerial with timeout=None and add cancel
  support
- option for low latency mode on linux
- Add support to xr-usb-serial ports
- posix: Don't catch the SerialException we just raised
- posix: Fix custom baud rate to not temporarily set 38400 baud
  rates on linux
- list_ports: use hardcoded path to library on osx

Following the rename of miniterm.py and the new command line tool
entry, task do_install_append has been updated accordingly.

License-Update: Update year

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-25 14:34:06 -08:00
Leon Anavi
220d63cbc5 python3-pyusb: Upgrade 1.1.0 -> 1.1.1
Upgrade to release 1.1.1:

- Patch release that fixes a couple of bugs. Most notably it fixes
  compatibility with Python 3.9.
- As of PyUSB 1.1.1 changes that break under Python 2.7 and 3.5
  (both of which have reached end of life) are no longer considered
  regressions.

License-Update: Update year

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-25 14:34:06 -08:00
Leon Anavi
b9fce31173 python3-evdev: Upgrade 1.3.0 -> 1.4.0
Upgrade to release 1.4.0:

- Fix InputDevice.set_absinfo to allow setting parameters to zero.
- Fix off-by-one in ioctl_EVIOCG_bits, which causes value at the
  end of the list to not be reported back.
- Fix set_absinfo to allow setting parameters to zero.
- Fix leak when returning BlockingIOError from a read.
- Fix "There is no current event loop in thread" error for
  non asyncio code.
- Prevent InputDevice destructor from blocking.
- Add missing return codes to os.strerror() calls and fix force
  feedback example in docs (#138).
- Add the util.find_ecodes_by_regex() helper function.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-25 14:34:06 -08:00
Leon Anavi
d085d1887b python3-google-api-python-client: Upgrade 1.12.5 -> 1.12.8
Upgrade to release 1.12.8:

- add httplib2 authorization to thread_safety

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-25 14:34:06 -08:00
Leon Anavi
798dcdb0b5 python3-pyyaml: Upgrade 5.3.1 -> 5.4
Upgrade to release 5.4:

- Build modernization, remove distutils, fix metadata,
  build wheels, CI to GHA
- Fix for CVE-2020-14343, moves arbitrary python tags to
  UnsafeLoader
- Fix memory leak in implicit resolver setup
- Fix py2 copy support for timezone objects
- Fix compatibility with Jython

License-Update: Update year

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-25 14:34:06 -08:00
Leon Anavi
3d90d74013 python3-yappi: Upgrade 1.3.0 -> 1.3.2
Upgrade to release 1.3.2:

- Add support for Python 3.10

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-20 09:30:47 -08:00
Leon Anavi
ccd9792bdb python3-dbus-next: Upgrade 0.1.4 -> 0.2.2
Upgrade to release 0.2.2:

- Add connected instance variable to the MessageBus
- Better handling of message bus errors on disconnect
- Ensure futures are not done when settings results and exceptions

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-20 09:30:43 -08:00
Leon Anavi
c29e71f271 python3-pymysql: Upgrade 0.10.1 -> 1.0.2
Upgrade to release 1.0.2:

- Fix user, password, host, database are still positional
  arguments. All arguments of connect() are now keyword-only.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-20 09:30:38 -08:00
Leon Anavi
03aa496511 python3-openpyxl: Upgrade 3.0.5 -> 3.0.6
Upgrade to release 3.0.6:

- Borders in differential styles are incorrect
- Error when opening some pivot tables
- Resave breaks the border format in conditional formatting rules
- Read-only workbook not closed properly if generator interrupted
- Pandas.Multiindex.labels deprecated
- Pandas.Multiinex not expanded correctly
- Cannot read rows with exponents
- numpy.float is deprecated
- Cells without coordinate attributes not always correctly handled
- Improved handling of borders for differential styles
- Support subclasses of datetime objects
- Improved handling of cells without coordinates

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-20 09:30:32 -08:00
Leon Anavi
826495b4cb python3-lxml: Upgrade 4.6.1 -> 4.6.2
Upgrade to release 4.6.2:

- A vulnerability (CVE-2020-27783) was discovered in the HTML
  Cleaner by Yaniv Nizry, which allowed JavaScript to pass
  through. The cleaner now removes more sneaky "style" content.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-20 09:30:28 -08:00
Leon Anavi
dc0fbea48b python3-pyscaffold: Upgrade 3.3 -> 3.3.1
Upgrade to release 3.3.1:

- Code base changed to Black’s standards
- New docs about version numbers and git integration
- Updated pre-commit hooks
- Updated docs/Makefile to use Sphinx "make mode"
- deprecated setuptools extensions/commands python setup.py
  test/docs/doctests
- New tox test environments for generating docs and running
  doctests
- New built-in extension for Cirrus CI
- experimental get_template is now part of the public API and
  can be used by extensions, issue #252
- Updated setuptools_scm to version 4.1.2 in contrib
- Updated configupdater to version 1.1.2 in contrib
- precommit automatically fixes line endings by default
- deprecated log.configure_logger, use log.logger.reconfigure
  instead

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-20 09:30:23 -08:00
Leon Anavi
cec91a5fe4 python3-cheetah: Upgrade 3.2.5 -> 3.2.6
Upgrade to release 3.2.6:

- Fixed use of uninitialized variable in _namemapper

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-20 09:30:18 -08:00
Leon Anavi
dc4f8b3804 python3-pyperf: Upgrade 2.0.0 -> 2.1.0
Upgrade to release 2.1.0:

- The compare_to command now computes the geometric mean.
- The compare_to command no longer displays percentages: display
  less numbers to make the output easier to read. Also, percentage
  were almost the same values than the xxx faster or xxx slower
  values, but rounded differenly which introduced confusion.
- Project moved to https://github.com/psf/pyperf/
- system command now only emits a warning rather than failing with
  a hard error if it fails to get or set the frequency of a CPU.
- The pyperf project is now covered by the PSF Code of Conduct.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-20 09:30:14 -08:00
Leon Anavi
9ce09b667e python3-pyephem: Upgrade 3.7.7.0 -> 3.7.7.1
Upgrade to release 3.7.7.1:

- Fixed a memory leak in readdb()
- Fixed the Body.copy() method to correctly copy object-specific
  fields across to the new object, like Saturn ring tilt and Earth
  satellite catalog number

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-20 09:30:09 -08:00
Leon Anavi
4636a5ad3b python3-colorlog: Upgrade 4.6.2 -> 4.7.2
Upgrade to release 4.7.2:

- Fix linter errors
- Fix typo

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-20 09:30:05 -08:00
Zang Ruochen
47c4ccf478 python3-zopeinterface: upgrade 5.1.0 -> 5.2.0
5.2.0 (2020-11-05)

==================

- Add documentation section ``Persistency and Equality``
  (`#218 <https://github.com/zopefoundation/zope.interface/issues/218>`_).

- Create arm64 wheels.

- Add support for Python 3.9.

Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-20 09:30:00 -08:00
Zang Ruochen
7c6be93f60 python3-snappy: upgrade 0.5.4 -> 0.6.0
Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-20 09:29:56 -08:00
Zang Ruochen
d8ad8f4510 python3-smbus: upgrade 4.1 -> 4.2
4.2 (2020-09-22)
  manpages: Add BUGS section to let people know how to contact us
  Makefile: Allow to preset all CFLAGS and LDFLAGS variables
  tools: Consistently use snprintf instead of sprintf
         Restrict addresses 0x03-0x07, too (defined by I2C standard)
  decode-dimms: Print SPD revision for DDR3 too
                Print primary bus width for DDR3 and DDR4
                List ee1004 as a candidate driver
                Display MAC for DDR3
                Add MAC abbreviation for DDR4
                Round DDR4 speed properly
                Detect and report truncated input files
                Print kernel driver used
                Print DDR memory speed in MT/s
                Add DDR5 memory types
                Decode manufacturing data for LPDDR3
                Fix the version string
                Point the user to the right drivers
                Update the list of vendors to Jedec JEP106BB
  decode-vaio: Add support for the at24 driver
               Scan more i2c buses
  i2cset: Fix short writes with mask
  i2ctransfer: Mention '-a' everywhere in the manpage
               Support messages using I2C_M_RECV_LEN
               Add check for returned length from driver
  i2c-stub-from-dump: Read dumps from hexdump -C
  library: Add a manual page to document the API

Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-20 09:29:51 -08:00
Leon Anavi
2d65f27371 python3-parse: Upgrade 1.18.0 -> 1.19.0
Upgrade to release 1.19.0:

- Fix using digit field numbering and types

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-20 09:29:46 -08:00
Leon Anavi
7599690d9c python3-greenlet: Upgrade 0.4.17 -> 1.0.0
Upgrade to release 1.0.0:

- Add the ability to set a greenlet's PEP 567 contextvars context
  directly, by assigning to the greenlet's gr_context attribute.
  This restores support for some patterns of using greenlets atop
  an async environment that became more challenging in 0.4.17.
- The repr of greenlet objects now includes extra information
  about its state. This is purely informative and the details are
  subject to change.
- The greenlet module is now a package. There are no API changes,
  so all existing imports, including from C code, should continue
  to work.
- (C API) The undocumented GREENLET_VERSION macro that defined a
  string giving the greenlet version is now deprecated and will
  not be updated.
- Fix %s and %r formatting of a greenlet on Python 2. Previously
  it would result in a Unicode string instead of a native string.
- Move continuous integration from Travis CI to Github Actions.

License-Update: move to the src/ layout and this affects the note
in LICENSE about Stackless Python

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-20 09:27:59 -08:00
Shlomi Vaknin
2ed25eb4ef python3-sh: remove python3-tests from RDEPENDS
python3-tests installs the unit tests of python
as well as stuff that no one should care about
in its rootfs. Thus, it is not a runtime dependency
of python3-sh.

Signed-off-by: Shlomi Vaknin <shlomi.39sd@gmail.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-18 14:30:00 -08:00
Leon Anavi
e02edae797 python3-pyzmq: Upgrade 19.0.2 -> 20.0.0
Upgrade to release 20.0.0:

- Update bundled libzmq to 4.3.3
- Socket.bind() and Socket.connect() can now be used as context
  managers
- Better error when libzmq is bundled and fails to be loaded
- Hold GIL while calling zmq_curve_ functions, which may fix
  apparent threadsafety issues

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-14 11:58:59 -08:00
Leon Anavi
f02869c5c4 python3-wheel: Upgrade 0.35.1 -> 0.36.2
Upgrade to release 0.36.2:

- Updated vendored packaging library to v20.8
- Fixed wheel sdist missing LICENSE.txt
- Don't use default macos/arm64 deployment target in calculating
  the platform tag for fat binaries

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-14 11:58:55 -08:00
Leon Anavi
d640807d46 python3-cryptography-vectors: Upgrade 3.2 -> 3.3.1
Following the upgrade of python3-cryptography, upgrade to release
3.3.1:

- BACKWARDS INCOMPATIBLE: The
  :class:`~cryptography.hazmat.primitives.ciphers.modes.GCM` and
  :class:`~cryptography.hazmat.primitives.ciphers.aead.AESGCM` now
  require 64-bit to 1024-bit (8 byte to 128 byte) initialization
  vectors. This change is to conform with an upcoming OpenSSL
  release that will no longer support sizes outside this window.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-14 11:58:50 -08:00
Leon Anavi
f6169b2b29 python3-cryptography: Upgrade 3.2 -> 3.3.1
Upgrade to release 3.3.1:

- Re-added a legacy symbol causing problems for older pyOpenSSL
  users.
- BACKWARDS INCOMPATIBLE: Support for Python 3.5 has been removed
  due to low usage and maintenance burden.
- BACKWARDS INCOMPATIBLE: The
  :class:`~cryptography.hazmat.primitives.ciphers.modes.GCM` and
  :class:`~cryptography.hazmat.primitives.ciphers.aead.AESGCM` now
  require 64-bit to 1024-bit (8 byte to 128 byte) initialization
  vectors. This change is to conform with an upcoming OpenSSL
  release that will no longer support sizes outside this window.
- BACKWARDS INCOMPATIBLE: When deserializing asymmetric keys we
  now raise ValueError rather than UnsupportedAlgorithm when an
  unsupported cipher is used. This change is to conform with an
  upcoming OpenSSL release that will no longer distinguish between
  error types.
- BACKWARDS INCOMPATIBLE: We no longer allow loading of finite
  field Diffie-Hellman parameters of less than 512 bits in length.
  This change is to conform with an upcoming OpenSSL release that
  no longer supports smaller sizes. These keys were already wildly
  insecure and should not have been used in any application
  outside of testing.
- Updated Windows, macOS, and manylinux wheels to be compiled with
  OpenSSL 1.1.1i.
- Python 2 support is deprecated in cryptography. This is the last
  release that will support Python 2.

License-Update: Update note about the code derived from CPython

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-14 11:58:45 -08:00
Leon Anavi
8f49ee518c python3-regex: Upgrade 2020.10.28 -> 2020.11.13
Upgrade to release 2020.11.13:

- clock() calls for timeout cause slowdown in Docker
- Unexpected behaviour in fuzzy matching with limited character
  set with IGNORECASE flag
- Added password arguments to twine upload in .travis.yml

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-14 11:58:40 -08:00
Leon Anavi
3ee0d3fad0 python3-ecdsa: Upgrade 0.16.0 -> 0.16.1
Upgrade to release 0.16.1:

- VerifyingKey.precompute() supports lazy argument to delay
  precomputation to the first time the key is used to verify
  a signature.
- Documentation for the VerifyingKey.precompute() method.
- Make created signatures correct when the hash used is bigger
  than the curve order bit size and the curve order is not a
  multiple of 8 (this affects only users of custom curves or
  hashes with output larger than 512 bits when used with NIST
  P-521 curve).
- Speed up library load time by calculating the generator point
  multiplication tables the first time the points are used, not
  when they are initialised.
- Include Python 3.9 in CI testing.
- Test coverage for the VerifyingKey.precompute() method.
- Small speed-ups for the test suite.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-14 11:58:35 -08:00
Leon Anavi
43c16133c4 python3-pyopenssl: Upgrade 19.1.0 -> 20.0.1
Upgrade to release 20.0.1:

- Fixed compatibility with OpenSSL 1.1.0
- Added a new optional chain parameter to
  OpenSSL.crypto.X509StoreContext() where additional untrusted
  certificates can be specified to help chain building.
- Added OpenSSL.crypto.X509Store.load_locations to set trusted
  certificate file bundles and/or directories for verification.
- Added Context.set_keylog_callback to log key material.
- Added OpenSSL.SSL.Connection.get_verified_chain to retrieve
  the verified certificate chain of the peer.
- Make verification callback optional in Context.set_verify. If
  omitted, OpenSSL’s default verification is used.
- Fixed a bug that could truncate or cause a zero-length key
  error due to a null byte in private key passphrase in
  OpenSSL.crypto.load_privatekey and OpenSSL.crypto.dump_privatekey.
- Deprecated OpenSSL.crypto.loads_pkcs7 and
  OpenSSL.crypto.loads_pkcs12.
- The minimum cryptography version is now 3.2.
- Remove deprecated OpenSSL.tsafe module.
- Removed deprecated OpenSSL.SSL.Context.set_npn_advertise_callback,
  OpenSSL.SSL.Context.set_npn_select_callback, and
  OpenSSL.SSL.Connection.get_next_proto_negotiated.
- Drop support for Python 3.4
- Drop support for OpenSSL 1.0.1 and 1.0.2

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-14 11:58:30 -08:00
Leon Anavi
48aa4712e5 python3-msgpack: Upgrade 1.0.0 -> 1.0.2
Upgrade to release 1.0.2:

- Fix overflow in unpacking timestamp to datetime
- Format markdown
- Update readme

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-14 11:58:26 -08:00
Leon Anavi
9da01fe4d4 python3-lz4: Upgrade 3.1.0 -> 3.1.1
Upgrade to release 3.1.1:

- Correct how pkgconfig is handled in setup.py to account for
  multiple build flags
- Improve how CHAR_BIT is handled

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-14 11:58:22 -08:00
Leon Anavi
5211e51d43 python3-isort: Upgrade 5.6.4 -> 5.7.0
Upgrade to release 5.7.0:

- In rare circumstances an extra comma is added after import
  and before comment.
- isort encounters bug in Python 3.6.0.
- Provide ways for extension formatting and file paths to be
  specified when using streaming input from CLI.
- Ability to output and diff within a single API call to
  isort.file.
- Better more useful fatal error messages.
- Support for automatically fixing mixed indentation of import
  sections.
- Added a CLI option for skipping symlinks.
- Support for disabling float_to_top from the command line.
- Allow toggling section comments on and off for indented import
  sections.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-14 11:58:17 -08:00
Leon Anavi
0039644c36 python3-pyjwt: Upgrade 1.7.1 -> 2.0.0
Upgrade to release 2.0.0:

- Drop support for Python 2 and Python 3.0-3.5
- Drop support for PyCrypto and ECDSA
- Improve typings
- Introduce better experience for JWKs
- Support for JWKs containing ECDSA keys
- Add support for Ed25519 / EdDSA

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-14 11:58:12 -08:00
Leon Anavi
f9af96120b python3-rsa: Upgrade 4.6 -> 4.7
Upgrade to release 4.7:

- Fix: CVE-2020-25658 - Bleichenbacher-style timing oracle in
  PKCS#1 v1.5 decryption code
- Add padding length check as described by PKCS#1 v1.5
- Reuse of blinding factors to speed up blinding operations
- Declare & test support for Python 3.9

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-14 11:58:08 -08:00
Leon Anavi
95d4bb0508 python3-cffi: Upgrade 1.14.3 -> 1.14.4
Upgrade to release 1.14.4:

- Release done for pip reasons.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-14 11:58:03 -08:00
Leon Anavi
67ede77508 python3-pyscaffold: Upgrade 3.2.3 -> 3.3
Upgrade to release 3.3:

- Code base changed to Black's standards
- New docs about version numbers and git integration
- Updated pre-commit hooks
- Updated docs/Makefile to use Sphinx "make mode"
- deprecated setuptools extensions/commands
  python setup.py test/docs/doctests
- New tox test environments for generating docs and running
  doctests
- New built-in extension for Cirrus CI
- experimental get_template is now part of the public API and
  can be used by extensions
- Updated setuptools_scm to version 4.1.2 in contrib
- Updated configupdater to version 1.1.2 in contrib
- precommit automatically fixes line endings by default
- deprecated log.configure_logger, use log.logger.reconfigure
  instead

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-14 11:57:45 -08:00
Leon Anavi
fad349f009 python3-mock: Upgrade 4.0.2 -> 4.0.3
Upgrade to release 4.0.3:

- Remove unexpected call of __bool__ when passing a spec_arg
  argument to a Mock.
- Revert bpo-25597. unittest.mock.MagicMock with wraps’ set uses
  default return values for magic methods.
- Mock objects which are not unsafe will now raise an
  AttributeError if an attribute with the prefix asert, aseert, or
  assrt is accessed, in addition to this already happening for the
  prefixes assert or assret.
- Fixed reverting multiple patches in unittest.mock. Patcher’s
  __exit__() is now never called if its __enter__() is failed.
  Returning true from __exit__() silences now the exception.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-12 09:16:44 -08:00
Leon Anavi
f03a3313c3 python3-jedi: Upgrade 0.17.2 -> 0.18.0
Upgrade to release 0.18.0:

- Dropped Python 2 and Python 3.5
- Using pathlib.Path() as an output instead of str in most places:
  - Project.path - Script.path - Definition.module_path
  - Refactoring.get_renames - Refactoring.get_changed_files
- Functions with @property now return property instead of function
  in Name().type
- Started using annotations
- Better support for the walrus operator
- Project attributes are now read accessible
- Removed all deprecations

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-12 09:16:39 -08:00
Leon Anavi
c903eadedd python3-certifi: Upgrade 2020.11.8 -> 2020.12.5
Upgrade to release 2020.12.5:

- Add 2 basic unit tests
- Add Github workflow for pytest run
- Various cleanups

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-12 09:16:35 -08:00
Leon Anavi
c168aa09f6 python3-ptyprocess: Upgrade 0.6.0 -> 0.7.0
Upgrade to release 0.7.0:

- Add pass_fds parameters
- Switch to Github actions for CI

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-12 09:16:31 -08:00
Leon Anavi
1ca2f1235f python3-prompt-toolkit: Upgrade 3.0.9 -> 3.0.10
Upgrade to release 3.0.10:

- Improved `WordCompleter`: accept `display_dict`. Also accept
  formatted text for both `display_dict` and `meta_dict`.
- Allow customization of button arrows.
- Correctly recognize backtab on Windows.
- Show original display text in fuzzy completer if no filtering
  was done.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-12 09:16:26 -08:00
Leon Anavi
70b2d8df6d python3-dnspython: Upgrade 2.0.0 -> 2.1.0
Upgrade to release 2.1.0:

- End-of-line comments are now associated with rdata when read
  from text. For backwards compatibility with prior versions of
  dnspython, they are only emitted in to_text() when requested.
- Synchronous I/O is a bit more efficient, as we now try the I/O
  and only use poll() or select() if the I/O would block.
- The resolver cache classes now offer basic hit and miss
  statistics, and the LRUCache can also provide hits for every
  cache key.
- The resolver has a canonical_name() method.
- There is now a registration mechanism for EDNS option types.
- The default EDNS payload size has changed from 1280 to 1232.
- The SVCB, HTTPS, and SMIMEA RR types are now supported.
- TSIG has been enhanced with TKEY and GSS-TSIG support. Thanks
  to Nick Hall for writing this.
- Zones now can be updated via transactions.
- A new zone subclass, dns.versioned.Zone is available which has
  a thread-safe transaction implementation and support for keeping
  many versions of a zone.
- The zone file reading code has been adapted to use transactions,
  and is now a public API.
- Inbound zone transfer support has been rewritten and is available
  as dns.query.inbound_xfr() and dns.asyncquery.inbound_xfr(). It
  uses the transaction mechanism, and fully supports IXFR and AXFR.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-12 09:16:21 -08:00
Leon Anavi
455203f391 python3-hyperlink: Upgrade 20.0.1 -> 21.0.0
Upgrade to release 21.0.0:

- Update plus sign (+) handling to work with/like HTML form
  encoding (POST) by default, fixes #129, and associated
  roundtripping
- Package IDNA tables
- Long overdue dependency bumps

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-12 09:16:17 -08:00
Leon Anavi
d87d355a32 python3-pychromecast: Upgrade 7.7.1 -> 7.7.2
Upgrade to release 7.7.2:

- Use urllib.request instead of requests
- docs: fix simple typo, neeeded -> needed

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-12 09:16:13 -08:00
Leon Anavi
97f7d81a95 python3-croniter: Upgrade 0.3.37 -> 1.0.1
Upgrade to release 1.0.1:

- no changes, just to make sense with new semver2 (making croniter
  on a stable state)

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-12 09:16:08 -08:00
Leon Anavi
ae76da9210 python3-pillow: Upgrade 7.2.0 -> 8.1.0
Upgrade to release 8.1.0:

- Fix TIFF OOB Write error
- Fix for Buffer Read Overrun in PCX Decoding
- Fix for SGI Decode buffer overrun
- Fix OOB Read when saving GIF of xsize=1
- Add support for PySide6
- Moved QApplication into one test
- Use disposal settings from previous frame in APNG
- Revert "skip wheels on 3.10-dev due to wheel#354"
- Better _binary module use
- Added exception explaining that repr_png saves to PNG
- Use previous disposal method in GIF load_end
- Do not catch a ValueError only to raise another
- Allow putpalette to accept 1024 integers to include alpha values
- Fix OOB Read when writing TIFF with custom Metadata
- Removed unused variable
- Fix dereferencing of potential null pointers
- Fixed warnings assigning to "unsigned char *" from "char *"
- Add append_images support for ICO
- Fixed comparison warnings
- Block TIFFTAG_SUBIFD
- Fix dereferencing potential null pointer
- Replaced PyErr_NoMemory with ImagingError_MemoryError
- Remove duplicate code
- Moved warning to end of execution
- Removed unused fromstring and tostring C methods
- init() if one of the formats is unrecognised

License-Update: Updated copyright year

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-12 09:16:03 -08:00
Leon Anavi
49d3d32fae python3-parso: Upgrade 0.8.0 -> 0.8.1
Upgrade to release 0.8.1:

- Various small bugfixes

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-12 09:15:58 -08:00
Leon Anavi
69302c9ef8 python3-pymisp: Upgrade 2.4.133 -> 2.4.135.3
Upgrade to release 2.4.135.3:

- Bump version.
- Improve typing.
- Improve add_attribute with a list.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-12 09:15:54 -08:00
Leon Anavi
05c860d60e python3-jsonrpcserver: Upgrade 4.1.3 -> 4.2.0
Upgrade to release 4.2.0:

- Add ability to use custom serializer and deserializer
- Add ability to use custom method name
- Deny additional parameters in json-rpc request

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-12 09:15:49 -08:00
Leon Anavi
278e1c83a3 python3-coloredlogs: Upgrade 14.0 -> 15.0
Upgrade to release 15.0:

- Don’t enable system logging on MacOS and Windows anymore.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-12 09:15:42 -08:00
Leon Anavi
0fa3f8366b python3-aiohttp: Upgrade 3.7.2 -> 3.7.3
Upgrade to release 3.7.3:

- Use Brotli instead of brotlipy
- Made exceptions pickleable. Also changed the repr of some
  exceptions.
- Raise a ClientResponseError instead of an AssertionError for
  a blank HTTP Reason Phrase.
- Fix web_middlewares.normalize_path_middleware behavior for
  patch without slash.
- Fix overshadowing of overlapped sub-applications prefixes.
- Make BaseConnector.close() a coroutine and wait until the client
  closes all connections. Drop deprecated "with Connector():"
  syntax.
- Reset the sock_read timeout each time data is received for a
  aiohttp.client response.
- Fixed type annotation for add_view method of UrlDispatcher to
  accept any subclass of View
- Fixed querying the address families from DNS that the current
  host supports.
- Change return type of MultipartReader.aiter() and
  BodyPartReader.aiter() to AsyncIterator.
- Provide x86 Windows wheels.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-12 09:15:10 -08:00
Leon Anavi
4599fea881 python3-babel: Upgrade 2.8.0 -> 2.9.0
Upgrade to release 2.9.0:

- CLDR: Use CLDR 37
- Dates: Handle ZoneInfo objects in get_timezone_location,
  get_timezone_name
- Numbers: Add group_separator feature in number formatting
- Dates: Correct default Format().timedelta format to 'long' to
  mute deprecation warnings
- Import: Simplify iteration code in "import_cldr.py"
- Import: Stop using deprecated ElementTree methods
  "getchildren()" and "getiterator()"
- Messages: Fix unicode printing error on Python 2 without TTY.
- Messages: Introduce invariant that _invalid_pofile() takes
  unicode line.
- Tests: fix tests when using Python 3.9
- Tests: Remove deprecated 'sudo: false' from Travis configuration
- Tests: Support Py.test 6.x
- Utilities: LazyProxy: Handle AttributeError in specified func
- Utilities: Replace usage of parser.suite with ast.parse

License-Update: Update year

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-08 08:42:39 -08:00
Leon Anavi
dc654eb56a python3-sentry-sdk: Upgrade 0.19.1 -> 0.19.5
Upgrade to release 0.19.5:

- Fix two regressions added in 0.19.2 with regard to sampling
  behavior when reading the sampling decision from headers.
- Increase internal transport queue size and make it configurable.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-08 08:42:34 -08:00
Leon Anavi
8ce3a93a4d python3-cantools: Upgrade 35.5.0 -> 36.1.0
Upgrade to release 36.1.0:

- Added sub command plot
- plot test: parse output of cantools decode
- added plot subcommand to readme
- removed unneeded code

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-08 08:42:29 -08:00
Leon Anavi
abd029baa1 python3-smbus2: Upgrade 0.3.0 -> 0.4.0
Upgrade to release 0.4.0:

- Support for SMBus PEC (Packet Error Checking).
- Support for Python 3 type hinting and mypy static type analysis.
  Type stubs added to the project.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-08 08:42:24 -08:00
Leon Anavi
4ab083606b python3-pytest-metadata: Upgrade 1.10.0 -> 1.11.0
Upgrade to release 1.11.0:

- Provide a session fixture to include metadata in Junit XMLs
  as property tags

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-08 08:42:20 -08:00
Leon Anavi
7dde75fdf0 python3-transitions: Upgrade 0.8.5 -> 0.8.6
Upgrade to release 0.8.6:

- HierarchicalMachine.add_states will raise a ValueError when an
  Enum name contains the currently used NestedState.separator.
- Bugfix: Reset NestedState._scope when enter/exit callbacks raise
  an exception
- Bugfix: Let HierarchicalMachine._get_trigger which is bound to
  model.trigger raise a MachineError for invalid events and
  AttributeError for unknown events
- Introduced HierarchicalMachine.has_trigger to determine whether
  an event is valid for an HSM
- Feature: AsyncMachine features an event queue dictionary for
  individual models when queued='model'
- Feature: Machine.remove_model will now also remove model events
  from the event queue when queued=True
- Feature: Machine.get_transitions and its HSM counterpart now
  accept Enum and State for source and dest

License-Update: Update year

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-08 08:42:15 -08:00
Leon Anavi
d191a87770 python3-sqlalchemy: Upgrade 1.3.20 -> 1.3.22
Upgrade to release 1.3.22:

- Fixed regression which occured due to #5755 which implemented
  isolation level support for Oracle. It has been reported that
  many Oracle accounts don't actually have permission to query
  the v$transaction view so this feature has been altered to
  gracefully fallback when it fails upon database connect, where
  the dialect will assume "READ COMMITTED" is the default
  isolation level as was the case prior to SQLAlchemy 1.3.21.
  However, explicit use of the Connection.get_isolation_level()
  method must now necessarily raise an exception, as Oracle
  databases with this restriction explicitly disallow the user
  from reading the current isolation level.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-08 08:42:10 -08:00
Leon Anavi
0c0255a513 python3-humanfriendly: Upgrade 8.2 -> 9.1
Upgrade to release 9.1:

- Added on_macos() function to detect Apple MacOS
- Changed format_number() to properly support negative numbers
- Changed pluralize() to generate “1.5 seconds” instead of
  "1.5 second"
- Enhanced concatenate() to support conjunction and serial_comma
  keyword arguments
- Added pluralize_raw() to select singular or plural form without
  prefixing the count to the text that is returned

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-08 08:42:04 -08:00
Leon Anavi
615494acb6 python3-twine: Upgrade 3.2.0 -> 3.3.0
Upgrade to release 3.3.0:

- Print files to be uploaded using upload --verbose
- Print configuration file location when using upload --verbose
- Print source and values of credentials when using upload
  --verbose
- Add support for Python 3.9
- Turn warnings into errors when using check --strict

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-08 08:41:59 -08:00
Leon Anavi
c7e7e1846f python3-sympy: Upgrade 1.6.2 -> 1.7.1
Upgrade to release 1.7.1:

- There was a regression in 1.7 that meant that __slots__ would
  not work correctly for Basic instances and they would end up
  having __dict__. This also made it possible to set arbitrary
  attributes on Basic instances such as symbols which breaks
  immutability. This was fixed in 1.7.1 to ensure that Basic
  instances do not have __dict__ and it is not possible to set
  attributes on them.
- Fixed lazy iteration of series with expr.series(x, n=None)
  which was broken in the 1.7 release.
- Updated documentation for sympy.stats.sample for seed argument.
- sympy.stats.sample now has an optional seed argument.
- Random failures with sympy.stats.sample have now been fixed.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-08 08:41:54 -08:00
Leon Anavi
4e066e9a1e python3-pandas: Upgrade 1.1.4 -> 1.2.0
Upgrade to release 1.2.0:

- Optionally disallow duplicate labels
- Passing arguments to fsspec backends
- Support for binary file handles in to_csv
- Support for short caption and table position in to_latex
- Change in default floating precision for read_csv and read_table
- Experimental nullable data types for float data
- Index/column name preservation when aggregating
- GroupBy supports EWM operations directly
- Various bug fixes

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-08 08:41:49 -08:00
Leon Anavi
ab7a90e844 python3-croniter: Upgrade 0.3.36 -> 0.3.37
Upgrade to release 0.3.37:

- Added Python 3.8 and 3.9 support

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-08 08:41:44 -08:00
Leon Anavi
5c10b76911 python3-txaio: Upgrade 20.4.1 -> 20.12.1
Upgrade to release 20.12.1:

- CI/CD migrated to GitHub Actions
- support Python 3.9 (CI / testing added)
- minimum Python version is now 3.6

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-08 08:41:40 -08:00
Leon Anavi
c90c83ac85 python3-pychromecast: Upgrade 7.6.0 -> 7.7.1
Upgrade to release 7.7.1:

- Update local http API, re-add get_multizone_status
- Don't throw if socket is already closed when cleaning up

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-08 08:41:35 -08:00
Leon Anavi
66f28b9b69 python3-prompt-toolkit: Upgrade 3.0.8 -> 3.0.9
Upgrade to release 3.0.9:

- Handle c-tab for TERM=linux.
- Improve rendering speed of `print_formatted_text`. (Don't render
  styling attributes to output between fragments that have
  identical styling.)
- Gracefully handle `FileHistory` decoding errors.
- Prevent asyncio deprecation warnings.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-08 08:41:29 -08:00
Leon Anavi
fb0d2290d5 python3-nocaselist: Upgrade 1.0.3 -> 1.0.4
Upgrade to release 1.0.4:

- Migrated from Travis and Appveyor to GitHub Actions. This
  required changes in several areas including dependent packages
  used for testing and coverage. This did not cause any changes
  on dependent packages used for the installation of the package.

License-Update: File changed but the licence remains the same.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-08 08:41:24 -08:00
Leon Anavi
783897c53e python3-multidict: Upgrade 5.0.0 -> 5.1.0
Upgrade to release 5.1.0:

- Support GenericAliases (MultiDict[str]) for Python 3.9+
- Synchronize the declared supported Python versions in setup.py
  with actually supported and tested ones.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-08 08:41:19 -08:00
Leon Anavi
b5cba105cc python3-argcomplete: Upgrade 1.12.1 -> 1.12.2
Upgrade to release 1.12.2:

- Update importlib-metadata dependency pin
- Add change log project URL
- Replace Travis CI with GitHub Actions

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-08 08:41:14 -08:00
Leon Anavi
78cf804178 python3-psutil: Upgrade 5.7.3 -> 5.8.0
Upgrade to release 5.8.0:

- disk_partitions() exposes 2 extra fields: maxfile and maxpath,
  which are the maximum file name and path name length.
- [Windows] added support for PyPy 2.7.
- provide pre-compiled wheels for Linux and macOS.
- get rid of Travis and Cirrus CI services (they are no longer
  free). CI testing is now done by GitHub Actions on Linux, macOS
  and FreeBSD (yes). AppVeyor is still being used for Windows CI.
- [Linux] get rid of sensors_temperatures() duplicates.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-08 08:41:09 -08:00
Leon Anavi
c0e6098cf0 python3-jsonpatch: Upgrade 1.26 -> 1.28
Upgrade to release 1.28:

- Declare json-patch operations as a class-based attribute

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-08 08:41:05 -08:00
Leon Anavi
f3f0fc2d0e python3-soupsieve: Upgrade 2.0.1 -> 2.1
Upgrade to release 2.1:

- Officially support Python 3.9.
- Drop official support for Python 3.5.
- In order to avoid conflicts with future CSS specification
  changes, non-standard pseudo classes will now start with the
  :-soup- prefix. As a consequence, :contains() will now be known
  as :-soup-contains(), though for a time the deprecated form of
  :contains() will still be allowed with a warning that users
  should migrate over to :-soup-contains().
- Added new non-standard pseudo class :-soup-contains-own() which
  operates similar to :-soup-contains() except that it only looks
  at text nodes directly associated with the currently scoped
  element and not its descendants.
- Import bs4 globally instead of in local functions as it appears
  there are no adverse affects due to circular imports as bs4 does
  not immediately reference soupsieve functions and soupsieve does
  not immediately reference bs4 functions. This should give a
  performance boost to functions that had previously included bs4
  locally.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-08 08:40:59 -08:00
Leon Anavi
28e0dab9fe python3-nocasedict: Upgrade 1.0.1 -> 1.0.2
Upgrade to release 1.0.2:

- Migrated from Travis and Appveyor to GitHub Actions. This
  required changes in several areas including dependent packages
  used for testing and coverage. This did not cause any changes
  on dependent packages used for the installation of the package.

License-Update: File changed but the licence remains the same.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-08 08:40:54 -08:00
Leon Anavi
78399ff7a0 python3-requests: Upgrade 2.25.0 -> 2.25.1
Upgrade to release 2.25.1:

- Requests now treats application/json as utf8 by default.
  Resolving inconsistencies between r.text and r.json output.
- Requests now supports chardet v4.x.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-08 08:40:29 -08:00
Mingli Yu
191add187c python3-astor: switch to python3
As python2 reached end of life(EOL), so convert rtrip.py to python3.

Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-04 14:48:29 -08:00
Leon Anavi
d361fb7d3b python3-pymongo: Upgrade 3.11.0 -> 3.11.2
Upgrade to release 3.11.2:

- Fixed a memory leak caused by failing SDAM monitor checks on
  Python 3 (PYTHON-2433).
- Fixed a regression that changed the string representation of
  BulkWriteError (PYTHON-2438).
- Fixed a bug that made it impossible to use
  bson.codec_options.CodecOptions.with_options() and
  with_options() on some early versions of Python 3.4 and
  Python 3.5 due to a bug in the standard library implementation
  of collections.namedtuple._asdict() (PYTHON-2440).
- Fixed a bug that resulted in a TypeError exception when a
  PyOpenSSL socket was configured with a timeout of None
  (PYTHON-2443).

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-04 14:48:29 -08:00
Leon Anavi
558a6a00d2 python3-gmqtt: Upgrade 0.6.8 -> 0.6.9
Upgrade to release 0.6.9:

- Handle unexpected errors while reconnecting
- Improve tests: Increased the time for waiting of the message

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-04 14:48:29 -08:00
Leon Anavi
ed121f7da0 python3-natsort: Upgrade 7.0.1 -> 7.1.0
Upgrade to release 7.1.0:

- os_sorted, os_sort_keygen, and os_sort_key to better support
  sorting like the file browser on the current operating system
- Support for Python 3.9
- Treat None like NaN internally to avoid TypeError
- No longer fail tests every time a new Python version is released
- Various typos, missing figures, and out-of-date information in
  the "How it works"
- Fix typo in CHANGELOG
- Updated "How it works" to account for Pandas updates

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-04 14:48:29 -08:00
Ola X Nilsson
80f5dae544 python3-idna Remove 2.8
Should have been removed when the recipe was upgraded to 2.9.

Signed-off-by: Ola x Nilsson <olani@axis.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-04 14:48:29 -08:00
Zang Ruochen
0f7cc1eeae python3-cachetools: upgrade 4.1.1 -> 4.2.0
v4.2.0 (2020-12-10)

===================

- Add FIFO cache implementation.

- Add MRU cache implementation.

- Improve behavior of decorators in case of race conditions.

- Improve documentation regarding mutability of caches values and use
  of key functions with decorators.

- Officially support Python 3.9.

The ptest log is as follows:
START: ptest-runner
2020-12-22T02:58
BEGIN: /usr/lib/python3-cachetools/ptest
============================= test session starts ==============================
platform linux -- Python 3.9.0, pytest-6.1.2, py-1.9.0, pluggy-0.13.1
rootdir: /usr/lib/python3-cachetools/ptest
collected 164 items
...
============================= 164 passed in 12.95s =============================
DURATION: 21
END: /usr/lib/python3-cachetools/ptest
2020-12-22T02:58
STOP: ptest-runner

Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-04 14:48:29 -08:00
Zang Ruochen
d9f3b767a2 python3-bandit: upgrade 1.6.2 -> 1.7.0
CHANGES

=======

1.7.0
-----

* Create CODEOWNERS (#661)
* Remove blacklist call to input() (#662)
* Give some tips on how to resolve B101 in the doc (#616)
* Remove universal support on the wheel (#655)
* Update pythonpackage.yml

Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-04 14:48:29 -08:00
Zang Ruochen
a6135398b1 python3-autobahn: upgrade 20.7.1 -> 20.12.3
Add homepage description.

Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-04 14:48:29 -08:00
Zang Ruochen
9122e21a9f python3-aenum: upgrade 2.2.4 -> 2.2.6
Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-04 14:48:29 -08:00
Leon Anavi
a5307dd7a7 python3-watchdog: Upgrade 0.10.3 -> 1.0.2
Upgrade to release 1.0.2:

- Versioning is now following the semver
- Drop support for Python 2.7, 3.4 and 3.5
- Use pathlib from the standard library, instead of pathtools
- Allow file paths on Unix that don't follow the file system
  encoding
- Removed the long-time deprecated events.LoggingFileSystemEventHandler
  class, use LoggingEventHandler instead
- Wheels are published for GNU/Linux, macOS and Windows
- Uniformize event for deletion of watched dir

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-04 14:48:29 -08:00
Leon Anavi
8d838b0844 python3-chardet: Upgrade 3.0.4 -> 4.0.0
Upgrade to release 4.0.0:

- Single-byte charset probers now use nested dictionaries under
  the hood, so they are usually a little faster than before.
- The CharsetGroupProber class now properly short-circuits when
  one of the probers in the group is considered a definite match.
  This lead to a substantial speedup.
- There is now a chardet.detect_all function that returns a list
  of possible encodings for the input with associated confidences.
- Support for Python 2.6, 3.4, and 3.5 was dropped as they are all
  past end-of-life.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-01-04 14:48:29 -08:00
Leon Anavi
f0b1671175 python3-luma-core: Upgrade 2.0.1 -> 2.2.0
Upgrade to release 2.2.0:

- Linux framebuffer: Support BGR, RGBA & BGRA colorspace displays
- Linux framebuffer pseudo-device uses diff-to-previous algorithm
- Change order of namepaces cmdline, so SSD1306 is default

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-12-21 17:53:38 -08:00
Leon Anavi
7e0fb6f8c5 python3-fasteners: Upgrade 0.15 -> 0.16
Upgrade to release 0.16:

- Move from travis and appveyor to github actions
- Add interprocess reader writer lock
- Improve README
- remove unused eventlet import
- use stdlib monotonic instead of external for python >= 3.4

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-12-21 17:53:34 -08:00
Leon Anavi
cf4288d1cf python3-humanize: Upgrade 3.1.0 -> 3.2.0
Upgrade to release 3.2.0:

- Internationalise intcomma and add fr_FR
- Apply setup-py-upgrade
- Test Python 3.9 final on Travis CI
- Fix grammar mistake in the Dutch translations

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-12-21 17:53:26 -08:00
Leon Anavi
ac7222f7bc python3-pychromecast: Upgrade 7.5.1 -> 7.6.0
Upgrade to release 7.6.0:

- Spotify quick play (again)
- Fix next/previous track
- Add support for BubbleUPNP

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-12-21 17:53:22 -08:00
Leon Anavi
b8241bb074 python3-stevedore: Upgrade 3.2.2 -> 3.3.0
Upgrade to release 3.3.0:

- Use py3 as the default runtime for tox
- Adding pre-commit
- Fix cache dir flooding when running from /tmp
- Add Python3 wallaby unit tests
- Update master for stable/victoria

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-12-21 17:53:15 -08:00
Hongxu Jia
4a0ee53848 python3-wrapt: add native support
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-12-21 17:52:34 -08:00
Khem Raj
566fe41c1c python3-matplotlib: Disable LTO on mips/clang
It needs lld with lto and lld does not yet support gnu_hash for mips

Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-12-15 00:52:55 -08:00
Qi.Chen@windriver.com
73dd8a4c83 python3-requests: upgrade to 2.25.0
The License checksum changes but the license remains the same, as
the change is only about copying apache2 license contents there.

This upgrade also solves the following issue on target.

root@qemux86-64:~# python3 -c 'import requests'
/usr/lib64/python3.9/site-packages/requests/_init_.py:89: RequestsDependencyWarning: urllib3 (1.26.2) or chardet (3.0.4) doesn't match a supported version!
warnings.warn("urllib3 ({}) or chardet ({}) doesn't match a supported "

Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-12-15 00:52:55 -08:00
Vyacheslav Yurkov
8e7c57bd8f python3-aiohttp: added missing RDEPENDs
aiohttp implicitly RDEPENDs on html, json, and socketserver modules,
which are part of python3 recipe. They can't be properly imported if
they are missing from RDEPENDS

Signed-off-by: Vyacheslav Yurkov <uvv.mail@gmail.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-12-07 11:19:28 -08:00
Khem Raj
2beb56814f packagegroup-meta-python: Remove packages moved to core
These packages are not in meta-python anymore

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Acked-by: Tim Orling <ticotimo@gmail.com>
2020-12-03 22:32:56 -08:00
Khem Raj
f623d8b574 python3-matplotlib: Disable LTO for clang/riscv
LTO fails to link on RV32/RV64

| Hard-float 'd' ABI can't be used for a target that doesn't support the D instruction set extension (
ignoring target-abi)
| riscv64-yoe-linux-ld.lld: error: lto.tmp: cannot link object files with different floating-point ABI

Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-11-29 22:02:15 -08:00
Tim Orling
bf5aeb92c0 python3-sortedcontainers: drop (moved to oe-core)
Signed-off-by: Tim Orling <ticotimo@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-11-29 22:02:15 -08:00
Tim Orling
2a5ced38de python3-hypothesis: drop (moved to oe-core)
Signed-off-by: Tim Orling <ticotimo@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-11-29 22:02:15 -08:00
Tim Orling
ca2ffd5e03 python3-pytest: drop (moved to oe-core)
Signed-off-by: Tim Orling <ticotimo@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-11-29 22:02:15 -08:00
Tim Orling
68aadc891a python3-pluggy: drop (moved to oe-core)
Signed-off-by: Tim Orling <ticotimo@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-11-29 22:02:15 -08:00
Tim Orling
423851fd27 python3-importlib-metadata: drop (moved to oe-core)
Signed-off-by: Tim Orling <ticotimo@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-11-29 22:02:15 -08:00
Tim Orling
79e2177d32 python3-zipp: drop (moved to oe-core)
Signed-off-by: Tim Orling <ticotimo@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-11-29 22:02:15 -08:00
Tim Orling
3b06e2518b python3-wcwidth: drop (moved to oe-core)
Signed-off-by: Tim Orling <ticotimo@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-11-29 22:02:15 -08:00
Tim Orling
b21c943eac python3-packaging: drop (moved to oe-core)
Signed-off-by: Tim Orling <ticotimo@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-11-29 22:02:15 -08:00
Tim Orling
0945428471 python3-setuptools-scm: drop (moved to oe-core)
Signed-off-by: Tim Orling <ticotimo@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-11-29 22:02:15 -08:00
Tim Orling
e166aa1eb4 python3-py: drop (moved to oe-core)
Signed-off-by: Tim Orling <ticotimo@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-11-29 22:02:15 -08:00
Tim Orling
c5c059b22b python3-toml: drop (moved to oe-core)
Signed-off-by: Tim Orling <ticotimo@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-11-29 22:02:15 -08:00
Tim Orling
c0b40b6ad7 python3-pathlib2: drop (moved to oe-core)
Signed-off-by: Tim Orling <ticotimo@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-11-29 22:02:15 -08:00
Tim Orling
ebd8df8ea2 python3-more-itertools: drop (moved to oe-core)
Signed-off-by: Tim Orling <ticotimo@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-11-29 22:02:15 -08:00
Tim Orling
01538fc650 python3-iniconfig: drop (moved to oe-core)
Signed-off-by: Tim Orling <ticotimo@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-11-29 22:02:15 -08:00
Tim Orling
0fcc4ce697 python3-attrs: drop (moved to oe-core)
Signed-off-by: Tim Orling <ticotimo@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-11-29 22:02:15 -08:00
Tim Orling
f627aa0003 python3-atomicwrites: drop (moved to oe-core)
Signed-off-by: Tim Orling <ticotimo@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-11-29 22:02:15 -08:00
Leon Anavi
d9874ce27c python3-transitions: Upgrade 0.8.4 -> 0.8.5
Upgrade to release 0.8.5:

- AsyncMachine.switch_model_context is expected to be async now
  for easier integration of async code during model switch.
- Bugfix: Initializing a machine with GraphSupport threw an
  exception when initial was set to a nested or parallel state

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-11-27 11:54:04 -08:00
Leon Anavi
b2d4c4fb9b python3-urllib3: Upgrade 1.25.11 -> 1.26.2
Upgrade to release 1.26.2:

- NOTE: urllib3 v2.0 will drop support for Python 2.
- Added support for HTTPS proxies contacting HTTPS servers
- Deprecated negotiating TLSv1 and TLSv1.1 by default. Users that
  still wish to use TLS earlier than 1.2 without a deprecation
  warning should opt-in explicitly by setting
  ssl_version=ssl.PROTOCOL_TLSv1_1 Starting in urllib3 v2.0:
  Connections that receive a ``DeprecationWarning`` will fail
- Deprecated Retry options Retry.DEFAULT_METHOD_WHITELIST,
  Retry.DEFAULT_REDIRECT_HEADERS_BLACKLIST and
  Retry(method_whitelist=...) in favor of Retry.DEFAULT_ALLOWED_METHODS,
  Retry.DEFAULT_REMOVE_HEADERS_ON_REDIRECT, and
  Retry(allowed_methods=...)
  Starting in urllib3 v2.0: Deprecated options will be removed
- Added default User-Agent header to every request
- Added urllib3.util.SKIP_HEADER for skipping User-Agent,
  Accept-Encoding, and Host headers from being automatically
  emitted with requests
- Collapse transfer-encoding: chunked request data and framing
  into the same socket.send() call
- Send http/1.1 ALPN identifier with every TLS handshake by default
- Properly terminate SecureTransport connections when CA
  verification fails
- Don't emit an SNIMissingWarning when passing server_hostname=None
  to SecureTransport
- Disabled requesting TLSv1.2 session tickets as they weren't
  being used by urllib3
- Suppress BrokenPipeError when writing request body after the
  server has closed the socket
- Wrap ssl.SSLError that can be raised from reading a socket
  (e.g. "bad MAC") into an urllib3.exceptions.SSLError
- Fixed an issue where two User-Agent headers would be sent if a
  User-Agent header key is passed as bytes

License-Update: Update copyright date

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-11-27 11:54:04 -08:00
Leon Anavi
eed4c901af python3-prettytable: Upgrade 1.0.1 -> 2.0.0
Upgrade to release 2.0.0:

- Add tbody and thead tags
- Add add_rows to add several rows at once
- Add Python 3.10-dev to CI Tests
- Stop testing on Travis CI due to new open-source limitations
- Move to src/ and tests/ layout
- Drop support for EOL Python 2.7 and 3.5
- Fix padding_width = 0
- Don't create universal wheel for Python 2 (and 3)
- Fix docs to match code: from_cursor -> from_db_cursor
- readme: update function name in example

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-11-27 11:54:04 -08:00
Leon Anavi
e3c9a42603 python3-ansi2html: Upgrade 1.5.2 -> 1.6.0
Add native setuptools-scm and toml to the dependencies. Upgrade
to release 1.6.0:

- Add support for vt100 box drawing mode and high-intensity
  ansi codes
- Fix undefined behavior with linkify when same url is repeated
  in same line
- Prune CSS classes from output that are not used
- Update style.py
- Give more useful TaskWarrior example
- Fix handling cursor move up with unique and empty lines
- enable python 3 input decoding
- Fix missing color CSS definitions
- Prevent IndexError while handling CursorMoveUp
- added setup.cfg
- fix long lines
- Started to implement LaTeX support
- add option --title for filling in the title
- add empty title element to head section in html output
- added 2 color-schemes (solarized, osx). improved optparse
  handling schemes.
- added support to select a color-scheme. added schemes 'xterm'
  and 'xterm...
- Improve Makefile
- Add and ship AsciiDoc manpage, improve --help, add --version
- Fix README example to not produce unwanted spaces
- Add missing license headers
- Fix line handling
- Add support for previously unhandled ANSI codes, improve
  approach on handling color state
- Fix italic to be font-style (rather than font-weight)
- Stop adding unwanted spaces
- Fix writing to sys.stdout.buffer
- Add convenience Makefile
- Fix some bugs
- add --inline style
- Fix UnicodeDecodeError exception when Unicode characters appear
  in input

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-11-27 11:54:04 -08:00
Leon Anavi
515f976712 python3-fastnumbers: Upgrade 3.0.0 -> 3.1.0
Upgrade to release 3.1.0:

- query_type function to determine what as type fastnumbers will
  interpret a given input
- Support for Python 3.9 (eliminate use of private Python C
  function that is now hidden in 3.9)

License-Update: Update year

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-11-27 11:54:04 -08:00
Leon Anavi
8cdf980c0b python3-luma-oled: Upgrade 3.7.0 -> 3.8.1
Upgrade to release 3.8.1:

- Improved diff_to_previous framebuffer performance
- Fix mutable default parameter bug when using multiple displays

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-11-27 11:54:04 -08:00
Leon Anavi
da677455b4 python3-luma-core: Upgrade 1.17.3 -> 2.0.1
Upgrade to release 2.0.1:

- Improved diff_to_previous framebuffer performance
- Add Linux framebuffer pseudo-device
- Allow a wider range of SPI bus speeds
- Fix to allow cmdline args to dynamically create a full_frame()
  instance

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-11-27 11:54:04 -08:00
Leon Anavi
24517fa18b python3-yarl: Upgrade 1.6.2 -> 1.6.3
Upgrade to release 1.6.3:

- No longer loose characters when decoding incorrect
  percent-sequences (like %e2%82%f8). All non-decodable
  percent-sequences are now preserved.
- Provide x86 Windows wheels.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-11-27 11:54:04 -08:00
Leon Anavi
80b096966e python3-bitstruct: Upgrade 8.11.0 -> 8.11.1
Upgrade to release 8.11.1:

- Fix memory leak in unpack dict C extension
- Release with python3

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-11-27 11:54:04 -08:00
Leon Anavi
fdf6726fa8 python3-pyrad: Upgrade 2.3 -> 2.4
Upgrade to release 2.4:

- Support poetry for for building this project
- Use secrets.SysRandom instead of random.SystemRandom if possible
- .get on Packets has an optional default parameter (to mimic
  dict.get())
- Fix: digestmod is not optional in python3.8 anymore
- Fix: authenticator was refreshed before the packet was generated
- Fix bug causing Message-Authenticator verification to fail if
  multiple instances of an attribute do not appear sequentially in
  the attributes list
- Fixed VerifyReply broken when multiple instances of same
  attribute are not adjacent on reply
- Fixed Missing send_packet for async Client
- Fixed python3 support for SaltCrypt (was previously broken)

License-Update: Use file PKG-INFO.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-11-27 11:54:04 -08:00
Khem Raj
57a540a541 packagegroup-meta-python: Add newly added recipes to packagegroup-meta-python3
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-11-25 12:05:13 -08:00
Trevor Gamblin
51c495772d python3-markupsafe: Fix ptest RDEPENDS and installation
markupsafe's ptest is failing when running meta-python-ptest-image. This is
because python3-markupsafe is in oe-core, but the ptests are disabled and so
do_install_ptest doesn't actually install them when using the meta-python
bbappend for the recipe. This patch adds do_install_ptest and the ptest
RDEPENDS to the meta-python version of the recipe so that this works.

Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-11-24 16:01:53 -08:00
Trevor Gamblin
ffafb00e45 python3-jinja2: Fix ptest RDEPENDS and file installation
jinja2's ptest is failing when running meta-python-ptest-image. This is
happening for two reasons:

1) python3-jinja2 is in oe-core, but the ptests are disabled.
2) python3-toml is required for the ptest;

Because of #1, do_install_ptest doesn't actually run and so no tests are
installed for ptest-runner to use. This patch adds do_install_ptest to the
bbappend file for jinja2, and also adds python3-toml to the ptest RDEPENDS so
that it will install the tests and run correctly.

Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-11-23 22:51:38 -08:00
Khem Raj
46ca7c82d7 python3-sortedcontainers: Add recipe
Its needed by python3-numpy pytests

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2020-11-23 13:00:55 -08:00
Khem Raj
cc0e096f0d python3-hypothesis: Add recipe
Its needed by python3-numpy pytests

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2020-11-23 13:00:55 -08:00
Khem Raj
b2e6fa5b7b python3-pytest: Upgrade to 6.1.2
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2020-11-23 13:00:55 -08:00
Leon Anavi
7d319015e1 python3-toml: Upgrade 0.10.1 -> 0.10.2
Upgrade to release 0.10.2:

- Added toml.dump example to Quick Tutorial
- Skip numpy tests when numpy is not available
- Bug fix: ids were based on the string, rather than the actual
  object which causes incorrect detection of circular references
- Show meaningful error message for wrong case booleans
- Bug fix: broken quoted section name starts with dot

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-11-23 13:00:55 -08:00
Leon Anavi
05a1e43472 python3-arpeggio: Upgrade 1.9.2 -> 1.10.1
Upgrade to release 1.10.1:

- Fix packaging, exclude examples from wheel

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-11-23 13:00:55 -08:00
Leon Anavi
3065fb6b1d python3-cantools: Upgrade 35.3.0 -> 35.5.0
Upgrade to release 35.5.0:

- Added support for CAN FD in monitor.py cli tool

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-11-23 13:00:55 -08:00
Leon Anavi
da931e3903 python3-certifi: Upgrade 2020.6.20 -> 2020.11.8
Upgrade to release 2020.11.8:

- Declare support for Python 3.9

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-11-23 13:00:55 -08:00
Leon Anavi
1f7a95eed1 python3-bitarray: Upgrade 1.6.0 -> 1.6.1
Upgrade to release 1.6.1:

- use PyType_Ready for all types: bitarray, bitarrayiterator,
  decodeiterator, decodetree, searchiterator

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-11-23 13:00:54 -08:00
Leon Anavi
9cd7cf19e3 python3-croniter: Upgrade 0.3.35 -> 0.3.36
Upgrade to release 0.3.36:

- Updated docs section regarding max_years_between_matches to
  be more shorter and hopefully more relevant
- Don't install tests

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-11-23 13:00:54 -08:00
Leon Anavi
b918a70abd python3-diskcache: Upgrade 5.0.3 -> 5.1.0
Upgrade to release 5.1.0:

- Support transactions in FanoutCache (probably a bad idea)
- Prevent cache shard attribute access when unsafe

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-11-23 13:00:54 -08:00
Leon Anavi
f6e2f5de3b python3-gmqtt: Upgrade 0.6.7 -> 0.6.8
Upgrade to release 0.6.8:

- Fix encode str to bytes

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-11-23 13:00:54 -08:00
hasan.men
121c94e3c3 python3-jsonpath-rw: Add recipe for v1.4.0
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2020-11-23 13:00:54 -08:00
Khem Raj
50bbf80abf python3-pykwalify: Do not unset _PYTHON_SYSCONFIGDATA_NAME
its been shoved out of setuptools3 in oe-core now

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2020-11-18 08:18:45 -08:00
Khem Raj
6b3e3bdaf8 python-grpcio-tools: Add missing space for append
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2020-11-18 08:18:37 -08:00
Leon Anavi
4642dd56b7 python3-attrs: 20.2.0 -> 20.3.0
Upgrade to release 20.3.0:

- attr.define(), attr.frozen(), attr.mutable(), and attr.field()
  remain provisional.
- attr.s() now has a field_transformer hook that is called for all
  Attributes and returns a (modified or updated) list of Attribute
  instances. attr.asdict() has a value_serializer hook that can
  change the way values are converted. Both hooks are meant to
  help with data (de-)serialization workflows.
- kw_only=True now works on Python 2.
- raise from now works on frozen classes on PyPy.
- attr.asdict() and attr.astuple() now treat frozensets like sets
  with regards to the retain_collection_types argument.
- The type stubs for attr.s() and attr.make_class() are not
  missing the collect_by_mro argument anymore.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-11-18 08:18:31 -08:00
Leon Anavi
ca243baa6c python3-pandas: Upgrade 1.1.3 -> 1.1.4
Upgrade to release 1.1.4:

- Fixed regression in read_csv() raising a ValueError when names
  was of type dict_keys
- Fixed regression in read_csv() with more than 1M rows and
  specifying a index_col argument
- Fixed regression where attempting to mutate a DateOffset object
  would no longer raise an AttributeError
- Fixed regression where DataFrame.agg() would fail with TypeError
  when passed positional arguments to be passed on to the
  aggregation function
- Fixed regression in RollingGroupby with sort=False not being
  respected
- Fixed regression in Series.astype() converting None to "nan"
  when casting to string
- Fixed regression in Series.rank() method failing for read-only
  data
- Fixed regression in RollingGroupby causing a segmentation fault
  with Index of dtype object
- Fixed regression in DataFrame.resample(...).apply(...)() raised
  AttributeError when input was a DataFrame and only a Series was
  evaluated
- Fixed regression in DataFrame.groupby(..).std() with nullable
  integer dtype
- Fixed regression in PeriodDtype comparing both equal and unequal
  to its string representation
- Fixed regression where slicing DatetimeIndex raised AssertionError
  on irregular time series with pd.NaT or on unsorted indices
- Fixed regression in certain offsets (pd.offsets.Day() and below)
  no longer being hashable
- Fixed regression in StataReader which required chunksize to be
  manually set when using an iterator to read a dataset
- Fixed regression in setitem with DataFrame.iloc() which raised
  error when trying to set a value while filtering with a boolean
  list
- Fixed regression in setitem with a Series getting aligned before
  setting the values
- Fixed regression in MultiIndex.is_monotonic_increasing returning
  wrong results with NaN in at least one of the levels
- Fixed regression in inplace arithmetic operation on a Series not
  updating the parent DataFrame
- Fixed bug causing groupby(...).sum() and similar to not preserve
  metadata
- Fixed bug in Series.isin() and DataFrame.isin() raising a
  ValueError when the target was read-only
- Fixed bug in GroupBy.fillna() that introduced a performance
  regression after 1.0.5
- Fixed bug in DataFrame.info() was raising a KeyError when the
  DataFrame has integer column names
- Fixed bug in DataFrameGroupby.apply() would drop a
  CategoricalIndex when grouped on

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-11-18 08:18:24 -08:00
Leon Anavi
4729c7008b python3-colorlog: Upgrade 4.4.0 -> 4.6.2
Upgrade to release 4.6.2:

- Include tests using MANIFEST.in instead of setup.py
- Switch to GitHub Actions
- Don't publish to test pypi - we'd have to bump the version
  every commit

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-11-18 08:18:20 -08:00
Leon Anavi
6027141c0c python3-dill: Upgrade 0.3.2 -> 0.3.3
Upgrade to release 0.3.3:

- Treat extension modules as built-in
- Fix typo in README.md

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-11-18 08:18:15 -08:00
Leon Anavi
45c2cb0cd0 python3-cmd2: Upgrade 1.3.11 -> 1.4.0
Upgrade to release 1.4.0:

- Fixed tab completion crash on Windows
- Changed how multiline doc string help is formatted to match
  style of other help messages

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-11-18 08:17:53 -08:00
Khem Raj
7a6a1ac1d3 python3-cvxopt: Exclude from world builds
it needs lapack which need fortran

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2020-11-12 16:13:30 -08:00
Gregory Anders
167c48962c Add python3-cvxopt
Signed-off-by: Gregory Anders <greg@gpanders.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-11-12 16:13:05 -08:00
Khem Raj
24b704c925 meta-python: Drop RDEPEND'ing on python3-typing
Its part of core python package now

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2020-11-12 12:45:11 -08:00
Khem Raj
1a3788c926 python3-icu: Update to 2.6
Among others, it supports latest ICU 68.x release

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2020-11-12 12:45:04 -08:00
Gregory Anders
adf407f3f8 Add python3-cerberus
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2020-11-12 12:45:00 -08:00
Gregory Anders
8c3fc85553 Add python3-dill
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2020-11-12 12:44:53 -08:00
Gregory Anders
d1c2512eee Add python3-transitions
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2020-11-12 12:44:25 -08:00
Khem Raj
8fbaa7e41c layer.conf: Add hardknott to LAYERSERIES_COMPAT
Thats codename for 3.3

Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-11-04 12:43:55 -08:00
Leon Anavi
1204ed0a0e python3-ipython: Upgrade 7.18.1 -> 7.19.0
Upgrade to release 7.19.0:

- Fix to restore the ability to specify more than one extension
  using command line flags when using traitlets 5.0
- Docs docs formatting that make the install commands work on zsh
- Always display the last frame in tracebacks even if hidden with
  __traceback_hide__
- Avoid an issue where a callback can be registered multiple times.
- Avoid an issue in debugger mode where frames changes could be
  lost.
- Never hide the frames that invoke a debugger, even if marked as
  hidden by __traceback_hide__
- Fix calling the debugger in a recursive manner

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-11-04 11:10:16 -08:00
Leon Anavi
9610511f35 python3-tornado: Upgrade 6.0.4 -> 6.1
Upgrade to release 6.1:

- Windows support has been improved. Tornado is now compatible
  with the proactor event loop (which became the default in Python
  3.8) by automatically falling back to running a selector in a
  second thread. This means that it is no longer necessary to
  explicitly configure a selector event loop, although doing so
  may improve performance. This does not change the fact that
  Tornado is significantly less scalable on Windows than on other
  platforms.
- Binary wheels are now provided for Windows, MacOS, and Linux
  (amd64 and arm64).
- This is the last release of Tornado to support Python 3.5.
  Future versions will require Python 3.6 or newer

License-Update:  Checksum change, lisense remains "Apache-2.0"

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-11-04 11:10:11 -08:00
Leon Anavi
b32e97a451 python3-kiwisolver: Upgrade 1.3.0 -> 1.3.1
Upgrade to release 1.3.1:

- allow to avoid linking against VC2014_1 on windows
- do not mark move constructor / assignment operator of expression
  as noexcept. This is to circumvent a suspected bug in the GCC
  compiler in the manylinux1 image.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-11-04 11:10:02 -08:00
Mark Jonas
7fe65b887e python3-pyinotify: Add missing ctypes dependency
pyinotify 0.9.6 has a runtime dependency on ctypes.
See https://github.com/seb-m/pyinotify/blob/0.9.6/python3/pyinotify.py#L82

pyinotify prefers ctypes to inotify_syscalls. The latter is only a
fallback.
See https://github.com/seb-m/pyinotify/blob/0.9.6/python3/pyinotify.py#L129

Signed-off-by: Mark Jonas <toertel@gmail.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-11-04 11:09:57 -08:00
Leon Anavi
563033d0a1 python3-langtable: Upgrade 0.0.53 -> 0.0.54
Upgrade to release 0.0.54:

- Add list_common_languages derived from gnome-control-center

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-11-04 11:09:53 -08:00
Leon Anavi
c808f9086b python3-dateparser: Upgrade 0.7.6 -> 1.0.0
Upgrade to release 1.0.0:

- Drop support for Python 2.7 and pypy
- Now DateDataParser.get_date_data() returns a DateData object
  instead of a dict
- From now wrong settings are not silenced and raise
  SettingValidationError
- Now dateparser.parse() is deterministic and doesn't try previous
  locales. Also, DateDataParser.get_date_data() doesn't try the
  previous locales by default
- Remove the 'base-formats' parser
- Extract the 'no-spaces-time' parser from the 'absolute-time'
  parser and make it an optional parser
- Remove numeral_translation_data
- Remove the undocumented SKIP_TOKENS_PARSER and FUZZY settings
- Remove support for using strings in date_formats
- The undocumented ExactLanguageSearch class has been moved to the
  private scope and some internal methods have changed
- Changes in dateparser.utils: normalize_unicode() doesn't accept
  bytes as input and convert_to_unicode has been deprecated
- Add Python 3.9 support
- Detect hours separated with a period/dot
- Add support for "decade"
- Add support for the hijri calendar in Python ≥ 3.6
- New logo!
- Improve the README and docs
- Fix the "calendars" extra
- Fix leap years when PREFER_DATES_FROM is set
- Fix STRICT_PARSING setting in no-spaces-time parser
- Consider RETURN_AS_TIME_PERIOD setting for relative-time parser
- Parse the 24hr time format with meridian info
- Other small improvements

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-11-04 11:09:47 -08:00
Leon Anavi
2ee827ff12 python3-regex: Upgrade 2020.10.23 -> 2020.10.28
Upgrade to release 2020.10.28:

- Added Apache 2.0 licence file to the files in the git repository

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-11-04 11:09:43 -08:00
Leon Anavi
fd72a9d1dc python3-aiofiles: Upgrade 0.5.0 -> 0.6.0
Upgrade to release 0.6.0:

- aiofiles is now tested on ppc64le.
- Added name and mode properties to async file objects.
- Fixed a DeprecationWarning internally.
- Python 3.9 support and tests.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-11-04 11:09:39 -08:00
Leon Anavi
031c9344d4 python3-aiohttp: Upgrade 3.7.1 -> 3.7.2
Upgrade to release 3.7.2:

- Fixed static files handling for loops without .sendfile()
  support

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-11-04 11:09:35 -08:00
Leon Anavi
c6965d9460 python3-kiwisolver: Upgrade 1.2.0 -> 1.3.0
Upgrade to release 1.3.0:

- add c++ benchmarks and run them on CIs
- modernize the c++ code by using more c++11 features
- introduce move semantic in some c++ constructors to improve
  performances
- add support for Python 3.9

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-11-04 11:09:31 -08:00
Leon Anavi
551e72b9d3 python3-sh: Upgrade 1.14.0 -> 1.14.1
Upgrade to release 1.14.1:

- bugfix where setting _ok_code to not include 0, but 0 was the
  exit code

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-11-04 11:09:26 -08:00
Leon Anavi
3a7670013b python3-markdown: Upgrade 3.3.2 -> 3.3.3
Upgrade to release 3.3.3:

- Unify all block-level tags
- Fix issue where some empty elements would have text rendered
  as None when using md_in_html
- Avoid catastrophic backtracking in hr regex
- Fix hr HTML handling

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-11-04 11:09:21 -08:00
Leon Anavi
9239ab9812 python3-pyexpect: Upgrade 1.0.20 -> 1.0.21
Upgrade to release 1.0.21:

- Ensure .includes() handles a generator correcly
- Also check python 3.8 and 3.9
- Ignore tox directory

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-11-04 11:08:50 -08:00
Leon Anavi
2506cf2d47 python3-cryptography-vectors: Upgrade 3.1.1 -> 3.2
Upgrade to release 3.2:

- SECURITY ISSUE: Attempted to make RSA PKCS#1v1.5 decryption more
  constant time, to protect against Bleichenbacher vulnerabilities.
  Due to limitations imposed by our API, we cannot completely
  mitigate this vulnerability and a future release will contain a
  new API which is designed to be resilient to these for contexts
  where it is required. Credit to Hubert Kario for reporting the
  issue. CVE-2020-25659
- Support for OpenSSL 1.0.2 has been removed. Users on older
  version of OpenSSL will need to upgrade.
- Added basic support for PKCS7 signing (including SMIME) via
  :class:`~cryptography.hazmat.primitives.serialization.pkcs7.PKCS7SignatureBuilder`.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-11-04 11:08:45 -08:00
Leon Anavi
19cb4a8e3a python3-luma-oled: Upgrade 3.6.0 -> 3.7.0
Upgrade to release 3.7.0:

- Drop support for Python 3.5, only 3.6 or newer is supported now
- Add support for SSD1351 128x96 display
- Pin luma.core to 1.x.y line only, in anticipation of performance
  improvements in upcoming major release

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-11-04 11:08:21 -08:00
Alexander Kanavin
7e24fb6817 python3-mprpc: remove the recipe
The project has been abandoned for a few years now, and
no longer builds with python 3.9.

Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-11-02 09:00:32 -08:00
Leon Anavi
164a6030b0 python3-aiohttp: Upgrade 3.6.3 -> 3.7.1
Upgrade to release 3.7.1:

- Fixed a type error caused by the conditional import of Protocol
- Server doesn't send Content-Length for 1xx or 204
- Fix run_app typing
- Always require typing_extensions library
- Fix a variable-shadowing bug causing ThreadedResolver.resolve
  to return the resolved IP as the hostname in each record, which
  prevented validation of HTTPS connections
- Added annotations to all public attributes
- Fix flaky test_when_timeout_smaller_second
- Ensure sending a zero byte file does not throw an exception
- Fix a bug in web.run_app() about Python version checking on
  Windows

License-Update: Update year

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-28 10:22:06 -07:00
Leon Anavi
7ccadfb68b python3-zipp: Upgrade 3.3.1 -> 3.4.0
Upgrade to release 3.4.0:

- Path.joinpath now takes arbitrary positional arguments and no
  longer accepts add as a keyword argument.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-28 10:22:06 -07:00
Leon Anavi
8e7d326c26 python3-luma-core: Upgrade 1.17.2 -> 1.17.3
Upgrade to release 1.17.3:

- Drop support for Python 3.5, only 3.6 or newer is supported now
- Add missing cmdline interfaces: "noop" & "gpio_cs_spi"
- Legacy proportional font wrapper raises user-friendly error
  message when character is not in the font table

License-Update: Update year

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-28 10:22:05 -07:00
Leon Anavi
c7ce9d0378 python3-u-msgpack-python: Upgrade 2.7.0 -> 2.7.1
Upgrade to release 2.7.1:

- Add Ext type value validation to Ext class and
  ext_serializable() decorator
- Change string formatting from % to .format() throughout codebase

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-28 10:22:05 -07:00
Leon Anavi
2c24916b5d python3-tqdm: Upgrade 4.50.2 -> 4.51.0
Upgrade to release 4.51.0:

- add {eta} datetime bar_format argument
- fix py3 CLI --update & --update_to
- replace nosetests with pytest
- add & update tests

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-28 10:22:05 -07:00
Leon Anavi
dd349aa2ce python3-pyparted: Upgrade 3.11.6 -> 3.11.7
Upgrade to release 3.11.7:

- Set PY_SSIZE_T_CLEAN for the build
- add nvme support
- Update RELEASE file to make last step be "make pypi"

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-28 10:22:05 -07:00
Leon Anavi
e37647c283 python3-psutil: Upgrade 5.7.2 -> 5.7.3
Upgrade to release 5.7.3:

- [FreeBSD] add support for Process.rlimit().
- [BSD] add support for Process.environ()
- [UNIX] net_if_stats()'s isup also checks whether the NIC is
  running (meaning Wi-Fi or ethernet cable is connected)
- [Linux] improved battery detection and charge "secsleft"
  calculation
- [Linux] physical cpu_count() result is incorrect on systems with
  more than one CPU socket
- [macOS] Process.exe() may raise FileNotFoundError if process is
  still alive but the exe file which launched it got deleted
- [macOS] fix missing include for getpagesize()
- [Windows] Process.open_files() may cause a segfault due to a
  NULL pointer
- [Linux] sensors_battery(): if percent can be determined but not
  the remaining values, still return a result instead of None.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-28 10:22:05 -07:00
Leon Anavi
a00b9d8eba python3-cryptography: Upgrade 3.1.1 -> 3.2
Upgrade to release 3.2:

- SECURITY ISSUE: Attempted to make RSA PKCS#1v1.5 decryption more
  constant time, to protect against Bleichenbacher vulnerabilities.
  Due to limitations imposed by our API, we cannot completely
  mitigate this vulnerability and a future release will contain a
  new API which is designed to be resilient to these for contexts
  where it is required. Credit to Hubert Kario for reporting the
  issue. CVE-2020-25659
- Support for OpenSSL 1.0.2 has been removed. Users on older
  version of OpenSSL will need to upgrade.
- Added basic support for PKCS7 signing (including SMIME) via
  :class:`~cryptography.hazmat.primitives.serialization.pkcs7.PKCS7SignatureBuilder`.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-28 10:22:05 -07:00
Sakib Sajal
870d5f5a35 python3-prettytable: add python3-wcwidth to RDEPENDS
Upstream prettytable uses wcwidth since v1.0.0,
see commit 83689922af58c152993e8ef5bcf7dd1464371272.
Hence, add python3-wcwidth to RDEPENDS .

Signed-off-by: Sakib Sajal <sakib.sajal@windriver.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-28 10:22:05 -07:00
Leon Anavi
cfbaf7ef79 python3-google-api-python-client: Upgrade 1.12.3 -> 1.12.5
Upgrade to release 1.12.5:

- Don't raise when downloading zero byte files

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-28 10:22:05 -07:00
Leon Anavi
e3564f7503 python3-regex: Upgrade 2020.10.15 -> 2020.10.23
Upgrade to release 2020.10.23:

- Compilaton flag to avoid storing compiled regexp in internal
  cache

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-28 10:22:05 -07:00
Leon Anavi
4a86d0784d python3-lxml: Upgrade 4.5.2 -> 4.6.1
Upgrade to release 4.6.1:

- lxml.html.InputGetter supports __len__() to count the number of
  input fields.
- lxml.html.InputGetter has a new .items() method to ease
  processing all input fields.
- lxml.html.InputGetter.keys() now returns the field names in
  document order.
- GH-309: The API documentation is now generated using
  sphinx-apidoc.
- C14N 2.0 serialisation failed for unprefixed attributes when a
  default namespace was defined.
- TreeBuilder.close() raised AssertionError in some error cases
  where it should have raised XMLSyntaxError. It now raises a
  combined exception to keep up backwards compatibility, while
  switching to XMLSyntaxError as an interface.
- A vulnerability was discovered in the HTML Cleaner by Yaniv
  Nizry, which allowed JavaScript to pass through. The cleaner
  now removes more sneaky "style" content.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-28 10:22:05 -07:00
Leon Anavi
1c18656fda python3-sentry-sdk: Upgrade 0.19.0 -> 0.19.1
Upgrade to release 0.19.1:

- Fix dependency check for blinker fixes
- Fix incorrect timeout warnings in AWS Lambda and GCP integrations

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-28 10:22:05 -07:00
Leon Anavi
1bef24d3a5 python3-traitlets: Upgrade 5.0.4 -> 5.0.5
Upgrade to release 5.0.5:

- Support deprecated literals for sets, tuples on the command-line:
  nbconvert --TagRemovePreprocessor.remove_cell_tags='{"tag"}'
- Fix from_string_list for Tuples in general
- Fix support for List(default_value=None, allow_none=True) and
  other Container traits
- Fix help output for nested aliases and tuple traits

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-28 10:22:05 -07:00
Leon Anavi
1a53121ff5 python3-typeguard: Upgrade 2.9.1 -> 2.10.0
Upgrade to release 2.10.0:

- Added support for Python 3.9
- Added support for nested Literal
- Added support for TypedDict inheritance (with some caveats; see
  the user guide on that for details)
- An appropriate TypeError is now raised when encountering an
  illegal Literal value
- Fixed checking NoReturn on Python < 3.8 when typing_extensions
  was not installed
- Fixed import hook matching unwanted modules
- Install the pytest plugin earlier in the test run to support
  more use cases

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-22 22:17:30 -07:00
Leon Anavi
aa4f5c9f96 python3-pymisp: Upgrade 2.4.131 -> 2.4.133
Upgrade to release 2.4.133:

- [attribute type] telfhash added.
- [add_gitlab_user] new gitlab user fetch script to MISP object.
- Bump object templates.
- Bump changelog.
- Bump version.
- Bump test cases.
- [type] updated.
- Bump file obj version in tests.
- [data] misp-objects updated.
- Bump build system to poetry 1.1.
- [type] new type added.
- [add_github_user] add ssh keys of the user in the MISP object.
- [add_github_user] more fields added from the GitHub API.
- Bump deps, objects.
- Add test for delete=True in get_event.
- [add_github_user] add following to the MISP object.
- Bump dependencies.
- Pass a list to add_attributes.
- Use MISPObject instead of GenericObjectGenerator.
- [doc] add a reference to the license.
- Add docstrings and extend conf.py for RTD.
- Remove PyMISPExpanded from the docs.
- Add comments to ELF, PE, and MachO object generators.
- Improve error message, add comments, rename whitelist to
  allowedlist.
- Remove SG search for search() func as this doesn't support SG
  searching, but the index does.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-22 22:17:24 -07:00
Leon Anavi
be61777d1c python3-markdown: Upgrade 3.3.1 -> 3.3.2
Upgrade to release 3.3.2:

- Properly parse inline HTML in md_in_html
- Account for Etree Elements in HTML Stash

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-22 22:17:19 -07:00
Leon Anavi
7353781cfe python3-bitarray: Upgrade 1.5.3 -> 1.6.0
Upgrade to release 1.6.0:

- add `decodetree` object, for speeding up consecutive calls
  to `.decode()` and `.iterdecode()`, in particular when dealing
  with large prefix codes, see #103
- add optional parameter to `.tolist()` which changes the items in
  the returned list to integers (0 or 1), as opposed to Booleans
- remove deprecated `bitdiff()`, which has been deprecated since
  version 1.2.0, use `bitarray.util.count_xor()` instead
- drop Python 2.6 support

License-Update: Update license file, license remains the same.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-22 22:17:13 -07:00
Leon Anavi
6668270895 python3-urllib3: Upgrade 1.25.10 -> 1.25.11
Upgrade to release 1.25.11:

- Fix retry backoff time parsed from Retry-After header when given
  in the HTTP date format. The HTTP date was parsed as the local
  timezone rather than accounting for the timezone in the HTTP
  date (typically UTC)
- Fix issue where an error would be raised when the SSLKEYLOGFILE
  environment variable was set to the empty string. Now
  SSLContext.keylog_file is not set in this situation

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-22 22:17:08 -07:00
Leon Anavi
4eb7dff81c python3-dominate: Upgrade 2.5.2 -> 2.6.0
Upgrade to release 2.6.0:

- Add get_current() to return the current active element in a with
  context

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-22 22:17:04 -07:00
Leon Anavi
4fbb740722 python3-humanize: Upgrade 3.0.1 -> 3.1.0
Upgrade to release 3.1.0:

- Declare support for Python 3.9
- testing/docs: Include doctests in testing
- Allow custom "now" in naturaldelta and naturaltime
- Represent with a zero if the delta is too small

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-22 22:17:00 -07:00
Leon Anavi
7622e9d2e3 python3-pydicti: Upgrade 1.1.3 -> 1.1.4
Upgrade to release 1.1.4:

- use str.casefold() on python3
- make normalization function a parameter of build_dict, so that
  user-defined normalization functions can be passed

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-22 22:16:54 -07:00
Leon Anavi
cb70540717 python3-semver: Upgrade 2.10.2 -> 2.13.0
Upgrade to release 2.13.0:

- Document how to create subclass from VersionInfo
- Ensure equal versions have equal hashes. Version equality means
  for semver, that major, minor, patch, and prerelease parts are
  equal in both versions you compare. The build part is ignored.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-22 22:16:49 -07:00
Leon Anavi
a2e4d6ad22 python3-pychromecast: Upgrade 7.5.0 -> 7.5.1
Upgrade to release 7.5.1:

- Use threading.Thread.is_alive
- Bump flake8 from 3.8.3 to 3.8.4

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-22 22:16:44 -07:00
Leon Anavi
5e174c3fb9 python3-zipp: Upgrade 3.3.0 -> 3.3.1
Upgrade to release 3.3.1:

- bpo-42043: Add tests capturing subclassing requirements.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-22 22:16:40 -07:00
Leon Anavi
d7a0124684 python3-colorama: Upgrade 0.4.3 -> 0.4.4
Upgrade to release 0.4.4:

- Re-org of README, to put the most insteresting parts near
  the top.
- Added Linux makefile targets and Windows powershell scripts to
  automate bootstrapping a development environment, and automate
  the process of testing wheels before they are uploaded to PyPI.
- Use stdlib unittest.mock where available
- Travis CI now also builds on arm64
- Demo06 demonstrates existing cursor positioning feature
- Fix OSC regex & handling to prevent hang or crash
- Document enterprise support by Tidelift

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-22 22:16:35 -07:00
Leon Anavi
ea278ac349 python3-regex: Upgrade 2020.10.11 -> 2020.10.15
Upgrade to release 2020.10.15:

- Fix GCC 10 warnings

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-22 22:15:30 -07:00
Leon Anavi
de8198b93f python3-iniconfig: Upgrade 1.0.1 -> 1.1.1
Upgrade to release 1.1.1:

- typing stubs
- ci fixes
- fix version determination

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-19 18:40:39 -07:00
Leon Anavi
db0ff6af8b python3-yappi: Upgrade 1.2.5 -> 1.3.0
Upgrade to release 1.3.0:

- Add support for profiling gevent applications
- A new API has been defined: `set_context_backend` which accepts
  `greenlet` as a backend.
- Fix various issues

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-19 18:40:35 -07:00
Martin Jansa
351eac0e70 python3-colorama: add native and nativesdk to BBCLASSEXTEND
* python3-cmd2 depends on colorama since the first version in:
  commit dc66ca8495
  Author: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com>
  Date:   Mon Sep 2 13:22:08 2019 +0800

    python-cmd2: Add python3 version

    Providing a python3 version of python-cmd2.

  has both BBCLASSEXTENDs since:

  commit e929ea7a18
  Author: Binghua Guan <freebendy@gmail.com>
  Date:   Mon Jul 23 21:29:50 2018 +0800

    python-cmd2: add native and nativesdk

  causing:
ERROR: Nothing RPROVIDES 'python3-colorama-native' (but virtual:native:/OE/meta-openembedded/meta-python/recipes-devtools/python/python3-cmd2_1.3.11.bb RDEPENDS on or otherwise requires it)
NOTE: Runtime target 'python3-colorama-native' is unbuildable, removing...
Missing or unbuildable dependency chain was: ['python3-colorama-native']
NOTE: Runtime target 'python3-cmd2-native' is unbuildable, removing...
Missing or unbuildable dependency chain was: ['python3-cmd2-native', 'python3-colorama-native']
NOTE: Runtime target 'python3-pyflakes-native' is unbuildable, removing...
Missing or unbuildable dependency chain was: ['python3-pyflakes-native', 'python3-cmd2-native', 'python3-colorama-native']
ERROR: Required build target 'meta-world-pkgdata' has no buildable providers.
Missing or unbuildable dependency chain was: ['meta-world-pkgdata', 'ament-cmake-pyflakes', 'ament-pyflakes-native', 'python3-pyflakes-native', 'python3-cmd2-native', 'python3-colorama-native']

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-19 18:40:29 -07:00
Leon Anavi
4af06c3862 python3-graphviz: Upgrade 0.14.1 -> 0.14.2
Upgrde to release 0.14.2:

- Adapt graphviz.version() to support the Graphviz Release version
  entry format introduced with 2.44.2 (version() is needed to run
  the tests).

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-19 18:40:24 -07:00
Leon Anavi
17ad7ccba9 python3-luma-core: Upgrade 1.17.1 -> 1.17.2
Upgrade to release 1.17.2:

- Remove SPI cs_high capability (causing SystemException in latest
  version of spidev on 5.4 kernel line)

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-19 18:40:20 -07:00
Leon Anavi
2cd59d07b9 python3-xlsxwriter: Upgrade 1.3.6 -> 1.3.7
Upgrade to release 1.3.7:

- Fixed issue where custom chart data labels didn't inherit the
  position of the data labels in the series.
- Added text alignment for textboxes. The existing options allowed
  the text area to be aligned but didn't offer control over the
  text within that area.
- Added Python 3.9 to the test matrix.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-19 18:40:15 -07:00
Leon Anavi
15e05da9d1 python3-pywbemtools: Upgrade 0.7.3 -> 0.8.0
Upgrade to release 0.8.0:

- Moving the commands “server profiles” and “serve
  centralinsts” to the new group profiles with the commmand
  names “profile list” and “profile centralinsts” added a
  command group and removed 2 commands from the server
  command group.
- The –deprecation-warnings / –no-deprecation-warnings
  general option has been remamed to –warn / –no-warn, and
  it now controls the display of all Python warnings.
- Order display of instance names when the .? is used to pick
  an instance name so the same order of instance names is
  displayed for all versions of Python.
- Pinned prompt-toolkit to <3.0 on Python 3.8 on Windows to
  avoid WinError 995.
- Fixed exception when command entered in interactive mode,
  on Python 2.
- Test: Default connection file does not get restored in some
  cases during test.
- AssociationShrub produces instancename slightly different table
  output in some cases for pywbem 1 vs previous
  versions(inclusion of “/:” prefix).
- Test: Fixed attempt in test_class_cmds.py to invoke a non-static
  method on a class object.
- Fix help message for “–deprecated” to be unicode so python 2.7
  help does not fail.
- Upgraded nocasedict and nocaselist packages to pick up fixes.
- Error in test defintion for qualdecl Indication causes failure
  with pywbem i.1.0 where mocker validates qualifiers scopes.
- Test: Preventive fix for potential issue with virtualenv raising
  AttributeError during installtest on Python 3.4.
- Test: Added checking for no expected warning.
- Fixed incorrect property order in instance table output, where
  key properties were not ordered before non-key properties but
  ordered along with them.
- Docs/Test: Fixed failing install of Jinja2 on Python 3.4 by
  adding it to dev-requirements.txt and pinning it to <2.11 for
  Python 3.4.
- Test: Aligned qualifier definitions in test MOF with CIM Schema.
- Upgraded pywbem to 1.1.1 to pick up fixes and enhancements.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-19 18:40:01 -07:00
Leon Anavi
07e5568a9e python3-markdown: Upgrade 3.3 -> 3.3.1
Upgrade to release 3.3.1:

- Correctly parse raw script and style tags
- Ensure consistent class handling by fenced_code and codehilite

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-19 18:39:48 -07:00
Leon Anavi
86a7820b79 python3-sentry-sdk: Upgrade 0.18.0 -> 0.19.0
Upgrade to release 0.19.0:

- Removed _experiments.auto_enabling_integrations in favor of just
  auto_enabling_integrations which is now enabled by default.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-16 23:11:58 -07:00
Leon Anavi
c02f933221 python3-sqlalchemy: Upgrade 1.3.19 -> 1.3.20
Upgrade to release 1.3.20:

orm:
- An ArgumentError with more detail is now raised if the target
  parameter for Query.join() is set to an unmapped object. Prior
  to this change a less detailed AttributeError was raised.
- Fixed issue where using a loader option against a string
  attribute name that is not actually a mapped attribute, such
  as a plain Python descriptor, would raise an uninformative
  AttributeError; a descriptive error is now raised.

engine:
- Fixed issue where a non-string object sent to SQLAlchemyError or
  a subclass, as occurs with some third party dialects, would fail
  to stringify correctly.
- Repaired a function-level import that was not using SQLAlchemy’s
  standard late-import system within the sqlalchemy.exc module.

sql:
- Fixed issue where the pickle.dumps() operation against Over
  construct would produce a recursion overflow.
- Fixed bug where an error was not raised in the case where a
  column() were added to more than one table() at a time. This
  raised correctly for the Column and Table objects. An
  ArgumentError is now raised when this occurs.

postgresql:
- The psycopg2 dialect now support PostgreSQL multiple host
  connections, by passing host/port combinations to the query
  string.
- Adjusted the Comparator.any() and Comparator.all() methods to
  implement a straight “NOT” operation for negation, rather than
  negating the comparison operator.
- Fixed issue where the ENUM type would not consult the schema
  translate map when emitting a CREATE TYPE or DROP TYPE during the
  test to see if the type exists or not. Additionally, repaired an
  issue where if the same enum were encountered multiple times in a
  single DDL sequence, the “check” query would run repeatedly rather
  than relying upon a cached value.

mysql:
- Adjusted the MySQL dialect to correctly parenthesize functional
  index expressions as accepted by MySQL 8.
- The “skip_locked” keyword used with with_for_update() will emit a
  warning when used on MariaDB backends, and will then be ignored.
  This is a deprecated behavior that will raise in SQLAlchemy 1.4,
  as an application that requests “skip locked” is looking for a
  non-blocking operation which is not available on those backends.
- Fixed bug where an UPDATE statement against a JOIN using MySQL
  multi-table format would fail to include the table prefix for the
  target table if the statement had no WHERE clause, as only the
  WHERE clause were scanned to detect a “multi table update” at
  that particular point. The target is now also scanned if it’s a
  JOIN to get the leftmost table as the primary table and the
  additional entries as additional FROM entries.
- Add new MySQL reserved words: cube, lateral added in MySQL 8.0.1
  and 8.0.14, respectively; this indicates that these terms will
  be quoted if used as table or column identifier names.

mssql:
- Fixed issue where a SQLAlchemy connection URI for Azure DW with
  authentication=ActiveDirectoryIntegrated (and no username+password)
  was not constructing the ODBC connection string in a way that was
  acceptable to the Azure DW instance.

misc:
- Fixed issue where the following pool parameters were not being
  propagated to the new pool created when Engine.dispose() were
  called: pre_ping, use_lifo. Additionally the recycle and
  reset_on_return parameter is now propagated for the AssertionPool
  class.
- An informative error is now raised when attempting to use an
  association proxy element as a plain column expression to be
  SELECTed from or used in a SQL function; this use case is not
  currently supported.
- Fixed incompatibilities in the test suite when running against
  Pytest 6.x.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-16 23:11:58 -07:00
Leon Anavi
3ae56a340a python3-sqlparse: Upgrade 0.3.1 -> 0.4.1
Upgrade to release 0.4.1:

- Just removed a debug print statement
- Remove support for end-of-life Python 2.7 and 3.4. Python 3.5+
  is now required.
- Remaining strings that only consist of whitespaces are not
  treated as statements anymore. Code that ignored the last
  element from sqlparse.split() should be updated accordingly
  since that function now doesn't return an empty string as the
  last element in some cases.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-16 23:11:58 -07:00
Leon Anavi
362eebb12e python3-yarl: Upgrade 1.6.0 -> 1.6.2
Upgrade to release 1.6.2:

- Provide generated .c files in TarBall distribution.
- Provide wheels for aarch64, i686, ppc64le, s390x architectures
  on Linux as well as x86_64.
- Provide wheels for Python 3.9.
- human_repr() now always produces valid representation equivalent
  to the original URL (if the original URL is valid).
- Fixed requoting a single percent followed by a percent-encoded
  character in the Cython implementation.
- Fix ValueError when decoding % which is not followed by two
  hexadecimal digits.
- Fix decoding % followed by a space and hexadecimal digit.
- Fix annotation of with_query()/update_query() methods for
  key=[val1, val2] case.
- Drop Python 3.5 support; Python 3.6 is the minimal supported
  Python version.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-16 23:11:58 -07:00
Leon Anavi
53018fc6fe python3-prompt-toolkit: Upgrade 3.0.7 -> 3.0.8
Upgrade to release 3.0.8:

- Added `validator` parameter to `input_dialog`.
- Cope with stdout not having a working `fileno`.
- Handle situation when /dev/null is piped into stdin, or when
  stdin is closed somehow.
- Fix for telnet/ssh server: `isatty` method was not implemented.
- Display correct error when a tuple is passed into
  `to_formatted_text`.
- Pass along WORD parameter in `Document._is_word_before_cursor_complete`.
  Fixes some key bindings.
- Expose `ProgressBarCounter` in shortcuts module.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-16 23:11:58 -07:00
Leon Anavi
6dfa4c5a4b python3-isort: Upgrade 5.5.4 -> 5.6.4
Upgrade to release 5.6.4:

- Fix: Empty line added between imports that should be skipped.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-16 23:11:58 -07:00
Leon Anavi
84e9bdad04 python3-croniter: Upgrade 0.3.34 -> 0.3.35
Upgrade to release 0.3.35:

- Handle L in ranges.
- Add a new initializaton paramter max_years_between_matches to
  support finding the next/previous date beyond the default 1 year
  window, if so desired. Updated README to include additional
  notes and example of this usage.
- The croniter_range() function was updated to automatically
  determines the appropriate max_years_between_matches value, this
  preventing handling of the CroniterBadDateError exception.
- Updated exception handling classes: CroniterBadDateError now
  only applies during date finding operations (next/prev), and all
  parsing errors can now be caught using CroniterBadCronError. The
  CroniterNotAlphaError exception is now a subclass of
  CroniterBadCronError. A breif description of each exception
  class was added as an inline docstring.
- Updated iterable interfaces to replace the CroniterBadDateError
  with StopIteration if (and only if) the max_years_between_matches
  argument is provided. The rationale here is that if the user has
  specified the max tollernace between matches, then there's no need
  to further inform them of no additional matches. Just stop the
  iteration. This also keeps backwards compatibility.
- Minor docs update.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-16 23:11:58 -07:00
Leon Anavi
7be7b6fd66 python3-passlib: Upgrade 1.7.2 -> 1.7.4
Upgrade to release 1.7.4:

- passlib.ext.django – updated tests to pass for Django 1.8-3.1;
  along with some internal refactoring of the test classes.
- CryptContext will now throw UnknownHashError when it can't
  identify a hash provided to methods such as CryptContext.verify().
  Previously it would throw a generic ValueError.

License-Update: Updated URLs, styling fixes, bumped copyright year

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-16 23:11:58 -07:00
Leon Anavi
60ae1e819a python3-ujson: Upgrade 3.2.0 -> 4.0.1
Upgrade to release 4.0.1:

- Fix UnicodeDecodeError on arm64/aarch64
- Add support for Python 3.9
- Build wheels for Python 3.9
- Drop support for EOL Python 3.5
- Fix indent and add test case
- Update code samples in README

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-16 23:11:58 -07:00
Leon Anavi
c32f491964 python3-aiohttp: Upgrade 3.6.2 -> 3.6.3
Upgrade to release 3.6.3:

- Pin yarl to <1.6.0 to avoid buggy behavior that will be fixed
  by the next aiohttp release.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-16 23:11:58 -07:00
Siming Yuan
a952d21168 python3-paramiko: fixing runtime dependencies
added bcrypt, cryptography, pynacl, unixadmin as required by the
actual python package.

Signed-off-by: Siming Yuan <siyuan@cisco.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>
2020-10-16 23:11:58 -07:00
Khem Raj
cd9eaf4318 meta-openembedded: Add gatesgarth to LAYERSERIES_COMPAT
Remove older releases from COMPAT

Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-15 11:42:15 -07:00
Leon Anavi
2258c9a767 python3-pyperclip: Upgrade 1.8.0 -> 1.8.1
Upgrade to release 1.8.1:

- Get rid of trailing whitespace.
- Updated supported python versions in the setup.py file
- Added the ability to copy text from the command line.
- Fix for WSL2 and Ubuntu LTS 20.04
- Made PyQt checks in tests more specific

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-13 22:29:01 -07:00
Leon Anavi
8874b90853 python3-prettytable: Upgrade 1.0.0 -> 1.0.1
Upgrade to release 1.0.1:

- Add setuptools as a dependency
- Fix string comparison and deprecation warning
- Update release checklist to deploy from GitHub Actions
- Use Release Drafter to draft GH Releases from labelled PRs

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-13 22:28:56 -07:00
Leon Anavi
8bc833a6bc python3-multidict: Upgrade 4.7.6 -> 5.0.0
Upgrade to release 5.0.0:

- Provide wheels for aarch64, i686, ppc64le, s390x architectures
  on Linux as well as x86_64.
- Provide wheels for Python 3.9.
- Drop Python 3.5 support; Python 3.6 is the minimum supported
  Python version.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-13 22:28:52 -07:00
Leon Anavi
65afded948 python3-regex: Upgrade 2020.9.27 -> 2020.10.11
Upgrade to release 2020.10.11:

- Updated .yml file for Python 3.9.
- Didn't parse regex comments property when in VERBOSE mode.

License-Update: Changed to Apache Software License

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-13 22:28:48 -07:00
Leon Anavi
ad018b6b5a python3-pywbem: Upgrade 1.0.2 -> 1.1.0
Upgrade to release 1.1.0:

- Test: Fixed dependency issues with ‘pyrsistent’ package on
  Python 2.7 and Python 3.4.
- Increased minimum versions of nocasedict to 1.0.0 and nocaselist
  to 1.0.2 to pick up fixes needed for pywbem.
- Windows install: Upgraded WinOpenSSL to 1.1.1h.
- Test: Changed collection of .yaml files in function tests to
  address DeprecationWarning issued by pytest.
- Upgraded the minimum versions of nocasedict to 1.0.3 and of
  nocaselist to 1.0.1, to pick up fixes in these packages.
- Removed dependency on package custom-inherit and removed package
  from pywbem.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-13 22:28:43 -07:00
Leon Anavi
be736aefd5 python3-tqdm: Upgrade 4.50.0 -> 4.50.2
Upgrade to release 4.50.2:

- fixed platform.system() causing fork() warnings
- fixed contrib.concurrent.process_map pickling error with
  threading.RLock
- updated documentation & examples
- updated CI framework
- updated tests
- misc code tidy

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-13 22:28:38 -07:00
Leon Anavi
78025edfb5 python3-markdown: Upgrade 3.2.2 -> 3.3
Upgrade to release 3.3:
- The prefix language- is now prepended to all language classes
  by default on code blocks.
- Attribute Lists are more strict.
- All Pygments' options are now available for syntax highlighting.
- Fenced Code Blocks now work with Attribute Lists when syntax
  highlighting is disabled. Any random HTML attribute can be
  defined and set on the <code> tag of fenced code blocks when the
  attr_list extension is enabled.
- The HTML parser has been completely replaced. The new HTML
  parser is built on Python's html.parser.HTMLParser, which
  alleviates various bugs and simplify maintenance of the code.
- The Markdown in HTML extension has been rebuilt on the new HTML
  Parser, which drastically simplifies it. Note that raw HTML
  elements with a markdown attribute defined are now converted to
  ElementTree Elements and are rendered by the serializer. Various
  bugs have been fixed.
- Link reference parsing, abbreviation reference parsing and
  footnote reference parsing has all been moved from preprocessors
  to blockprocessors, which allows them to be nested within other
  block level elements. Specifically, this change was necessary to
  maintain the current behavior in the rebuilt Markdown in HTML
  extension. A few random edge-case bugs (see the included tests)
  were resolved in the process.
- An alternate function markdown.extensions.headerid.slugify_unicode
  has been included with the Table of Contents extension which
  supports Unicode characters in table of contents slugs. The old
  markdown.extensions.headerid.slugify method which removes
  non-ASCII characters remains the default. Import and pass
  markdown.extensions.headerid.slugify_unicode to the slugify
  configuration option to use the new behavior.
- Support was added for Python 3.9 and dropped for Python 3.5.
- Document how to pass configuration options to Extra.
- Fix HR which follows strong em.
- Support short reference image links.
- Avoid a RecursionError from deeply nested blockquotes.
- Fix issues with complex emphasis.
- Fix unescaping of HTML characters <> in CodeHilite.
- Fix complex scenarios involving lists and admonitions.
- Fix complex scenarios with nested ordered and unordered lists in
  a definition list.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-13 22:28:31 -07:00
Leon Anavi
7c23a0ea1a python3-colorlog: Upgrade 4.2.1 -> 4.4.0
Upgrade to release 4.4.0:

- Add parameters to basic config
- Update README
- Init colorama with strip=False to avoid unanticipated behavior
  differences dependent on whether or not colorama is installed.

License-Update: Use file LICENSE

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-13 22:28:25 -07:00
Leon Anavi
516ec2606d python3-pywbemtools: Upgrade 0.7.2 -> 0.7.3
Upgrade to release 0.7.3:

- Docs/Test: Fixed failing install of Jinja2 on Python 3.4 by
  adding it to dev-requirements.txt and pinning it to <2.11 for
  Python 3.4.
- Fixed incorrect property order in instance table output, where
  key properties were not ordered before non-key properties but
  ordered along with them.
- Test: Fixed qualifier definitions in qualifier_filter_model.mof
  to accomodate improved MOF compiler in pywbem 1.1.0.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-13 22:28:19 -07:00
Leon Anavi
e90b67da58 python3-configparser: Upgrade 5.0.0 -> 5.0.1
Upgrade to release 5.0.1:

- Synced with Python 3.9.0.
- Refreshed package metadata.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-13 22:27:59 -07:00
Martin Jansa
cc512cd9e1 utouch-*, ifenslave, iozone3, ttf-honkyfonts, python3-smbus: don't use trailing slash in S
* see oe-core base.bbclass changes from:
  https://lists.openembedded.org/g/openembedded-core/message/143159
  https://lists.openembedded.org/g/openembedded-core/message/143161

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-09 17:22:31 -07:00
Leon Anavi
d25d21a8b4 python3-pandas: Upgrade 1.1.2 -> 1.1.3
Upgrade to release 1.1.3. This is a minor bug-fix release. It
includes some regression fixes and bug fixes. Details are
available at:
https://github.com/pandas-dev/pandas/releases/tag/v1.1.3

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-07 08:43:10 -07:00
Leon Anavi
b3ccf4e3bc python3-nocaselist: Upgrade 1.0.2 -> 1.0.3
Upgrade to release 1.0.3:

- Test: Fixed issue with virtualenv raising AttributeError during
  installtest on Python 3.4.
- Added checking for no expected warning. Adjusted a testcase to
  accomodate the new check.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-07 08:43:06 -07:00
Leon Anavi
01c125358d python3-prettytable: Upgrade 0.7.2 -> 1.0.0
Add a dependency on setuptools-scm and upgrade to release 1.0.0:

- Dropped support for EOL Python 2.4-2.6 and 3.0-3.4.
- Added support for Python 3.5-3.9.
- Added del_column(field_name).
- Added get_csv_string with delimiter option (comma or tab) and
  optional header.
- Use wcwidth for better wide char support.
- New paginate method can be used to produce strings suitable for
  piping to lp/lpr.
- from_html now handles HTML tables with colspan, rather than
  choking on them.
- Added min_width, min_table_width and max_table_width
  attribute/options for better control of table sizing.
- Added "title" attribute/option for table titles.
- When slice syntax is used to create a new sub-table out of an
  existing table, the rows are sorted before, not after, the
  slicing. The old behaviour (slice then sort) can be achieved
  by setting oldsortslice=True.
- The from_csv table factory now accepts CSV format parameters as
  keyword arguments (e.g. delimiter, doublequote, escapechar, etc.)
- Added 0x000f to the list of special characters with width 0, to
  fix problems with coloured strings produced by the Blessings
  library.
- Fixed constructor argument float_format to work as intended.
- Removed print_html() from README.
- Added from_json and get_json_string to PrettyTable.
- Fixed PLAIN_COLUMN to PLAIN_COLUMNS in README.
- Added Markdown and Org mode styles.

License-Update: Use wcwidth for better wide char support

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-07 08:43:01 -07:00
Leon Anavi
0c856b5fd9 python3-pywbemtools: Upgrade 0.7.1 -> 0.7.2
Upgrade to release 0.7.2:

- Test: Fixed attempt in test_class_cmds.py to invoke a non-static
  method on a class object.
- Test: Preventive fix for potential issue with virtualenv raising
  AttributeError during installtest on Python 3.4.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-07 08:42:56 -07:00
Leon Anavi
e248c8a5b9 python3-cmd2: Upgrade 1.3.10 -> 1.3.11
Upgrade to release 1.3.11:

- Fixed issue where quoted redirectors and terminators in aliases
  and macros were not being restored when read from a startup
  script.
- Fixed issue where instantiating more than one cmd2-based class
  which uses the @as_subcommand_to decorator resulted in
  duplicated help text in the base command the subcommands belong
  to.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-07 08:42:52 -07:00
Leon Anavi
a432d526c1 python3-zipp: Upgrade 3.2.0 -> 3.3.0
Upgrade to release 3.3.0:

- Path objects now expose a .filename attribute and rely on that
  to resolve .name and .parent when the Path object is at the
  root of the zipfile.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-07 08:42:47 -07:00
Leon Anavi
fdfc1265fa python3-humanize: Upgrade 3.0.0 -> 3.0.1
Upgrade to release 3.0.1:

- Fix some translation for id_ID

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-07 08:42:43 -07:00
Leon Anavi
21691291db beautifulsoup4: Upgrade 4.9.2 -> 4.9.3
Upgrade to release 4.9.3:

- Implemented a significant performance optimization to the
  process of searching the parse tree.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-07 08:42:38 -07:00
Leon Anavi
2e241c4ffc python3-google-api-python-client: Upgrade 1.12.2 -> 1.12.3
Upgrade to release 1.12.3:

- deps: update setup.py to install httplib2>=0.15.0

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-07 08:42:34 -07:00
Leon Anavi
d680ab4dfc python3-nocasedict: Upgrade 1.0.0 -> 1.0.1
Upgrade to release 1.0.1:

- Test: Fixed issue with virtualenv raising AttributeError during
  installtest on Python 3.4.
- Fixed UserWarning about unpreserved order of input items.
- Added checking for no expected warning. Adjusted a testcase to
  accomodate the new check.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-07 08:42:29 -07:00
Andrey Zhizhikin
1fa9a11c42 python3-pybind11: extend to native and nativesdk
Extend this recipe with native and nativesdk classes to be able to
provide a package in SDK and run on the build system.

Signed-off-by: Andrey Zhizhikin <andrey.zhizhikin@leica-geosystems.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-07 08:42:21 -07:00
Leon Anavi
7e60006ecc python3-sentry-sdk: Upgrade 0.17.8 -> 0.18.0
Upgrade to release 0.18.0:

- Breaking change: The no_proxy environment variable is now
  honored when inferring proxy settings from the system.
- Added Performance/Tracing support for AWS and GCP functions.
- Fix an issue with Django instrumentation where the SDK modified
  resolver_match.callback and broke user code.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-04 20:23:15 -07:00
Leon Anavi
2ddacf6d4b python3-pystemd: Upgrade 0.7.0 -> 0.8.0
Upgrade to release 0.8.0:

- add initial support for python 3.7 and 3.8
- added options StandardOutputFile, StandardOutputFileToAppend,
  StandardErrorFile and StandardErrorFileToAppend to known unit
  signatures.
- Added type stubs for pystemd.daemon, pystemd.dbuslib,
  pystemd.systemd1.Unit and pystemd.systemd1.Manager because we
  still "support python 3.4.
- fix issue when char is unsigned, and <char *> -1 returns 255.
- added slice_ option to pystemd.run to specify the cgroup where
  the unit is created.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-04 20:23:10 -07:00
Leon Anavi
42cae0315c python3-humanize: Upgrade 2.6.0 -> 3.0.0
Upgrade to release 3.0.0:

- Add explicit setuptools dependency for pkg_resources
- Drop support for Python 3.5
- pdate minimum_unit handling of naturaldelta and naturaltime
- Internationalise a previously hardcoded 'and'
- Update docs

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-04 20:23:05 -07:00
Leon Anavi
af323dc29a python3-cbor2: Upgrade 5.1.2 -> 5.2.0
Upgrade to release 5.2.0:

- Final version tested with Python 2.7 and 3.5
- README: Announce deprecation of Python 2.7, 3.5
- README: More detail and examples
- Bugfix: Fix segfault on loading huge arrays with C-backend
- Build system: Allow packagers to force C-backend building or
  disable using env var
- Feature: :module:`cbor2.tool` Command line diagnostic tool
- Feature: Ignore semantic tag used for file magic 55799 AKA
  "Self-Described CBOR"

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-04 20:22:59 -07:00
Leon Anavi
a7e065c0b4 python3-isort: Upgrade 5.5.3 -> 5.5.4
Upgrade to release 5.5.4:

- In rare cases isort changes the content of multiline strings
  after a yield statement.
- Support case where known_SECTION points to a section not listed
  in sections.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-10-04 20:22:33 -07:00
Leon Anavi
c53b1218e8 python3-djangorestframework: Upgrade 3.11.1 -> 3.12.1
Upgrade to release 3.12.1:

- Add --file option to generateschema command.
- Support tags for OpenAPI schema generation. See the schema docs.
- Support customising the operation ID for schema generation. See
  the schema docs.
- Support OpenAPI components for schema generation. See the schema
  docs.
- The following methods on AutoSchema become public API:
  get_path_parameters, get_pagination_parameters,
  get_filter_parameters, get_request_body, get_responses,
  get_serializer, get_paginator, map_serializer, map_field,
  map_choice_field, map_field_validators, allows_filters.
  See the schema docs.
- Add support for Django 3.1's database-agnositic JSONField.
- SearchFilter now supports nested search on JSONField and
  HStoreField model fields.
- SearchFilter now supports searching on annotate() fields.
- The authtoken model no longer exposes the pk in the admin URL.
- Add __repr__ for Request instances.
- UTF-8 decoding with Latin-1 fallback for basic auth credentials.
- CharField treats surrogate characters as a validation failure.
- Don't include callables as default values in schemas.
- Improve ListField schema output to include all available child
  information.
- Allow default=False to be included for BooleanField schema
  outputs.
- Include "type" information in ChoiceField schema outputs.
- Include "type": "object" on schema objects.
- Don't include component in schema output for DELETE requests.
- Fix schema types for DecimalField.
- Fix schema generation for ObtainAuthToken view.
- Support passing context=... to view .get_serializer() methods.
- Pass custom code to PermissionDenied if permission class has one
  set.
- Include "example" in schema pagination output.
- Default status code of 201 on schema output for POST requests.
- Use camelCase for operation IDs in schema output.
- Warn if duplicate operation IDs exist in schema output.
- Improve handling of decimal type when mapping ChoiceField to a
  schema output.
- Disable YAML aliases for OpenAPI schema outputs.
- Fix action URL names for APIs included under a namespaced URL.
- Update jQuery version from 3.4 to 3.5.
- Fix UniqueTogether handling when serializer fields use
  source=....
- HTTP HEAD requests now set self.action correctly on a ViewSet
  instance.
- Return a valid OpenAPI schema for the case where no API schema
  paths exist.
- Include tests in package distribution.
- Allow type checkers to support annotations like
  ModelSerializer[Author].
- Don't include invalid charset=None portion in the request
  Content-Type header when using APIClient.
- Fix \Z/\z tokens in OpenAPI regexs.
- Fix PrimaryKeyRelatedField and HyperlinkedRelatedField when
  source field is actually a property.
- Token.generate_key is now a class method.
- @action warns if method is wrapped in a decorator that does not
  preserve information using @functools.wraps.
- Add TokenProxy migration.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-30 15:58:14 -07:00
Leon Anavi
30ed7bb022 python3-regex: Upgrade 2020.7.14 -> 2020.9.27
Upgrade to release 2020.9.27:

- Fix Memory Error - regex.findall. The problem was caused by a
  lazy repeat looping forever, growing the backtracking stack.
  Greedy repeats were OK.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-30 15:58:08 -07:00
Leon Anavi
9a7b3bf8cf python3-luma-oled: Upgrade 3.5.0 -> 3.6.0
Upgrade to release 3.6.0:

- Add support for Winstar OLED displays

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-30 15:58:02 -07:00
Leon Anavi
8786e8abf9 python3-luma-core: Upgrade 1.16.2 -> 1.17.1
Upgrade to release 1.17.1:

- Add cmdline opt: "pcf8574" and "bitbang_6800" interfaces
- Added --inverse option for ST7735 to cmdline opt
- Allow SPI interface to define reset duration
- Change bitmap_font to be compatible with Pillow < 7.0

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-30 15:57:57 -07:00
Leon Anavi
c04c92ec5c python3-argcomplete: Upgrade 1.12.0 -> 1.12.1
Upgrade to release 1.12.1:

- Update importlib-metadata dependency version range
- Bash nounset mode fixes

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-30 15:57:51 -07:00
Leon Anavi
c65f93c44f python3-tqdm: Upgrade 4.49.0 -> 4.50.0
Upgrade to release 4.50.0:

- add bar colour option
- for notebook as well as std/CLI
- plain text as well as hex (e.g. 'green' or '#00ff00')
- notebook improvements: split bar description into separate
  widget and improve reset() (handle width and colour)
- fix exceptions when file is closed
- add & update tests
- minor documentation updates
- move and configure issue/pr templates

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-30 15:57:46 -07:00
Leon Anavi
ee85497952 python3-beautifulsoup4: Upgrade 4.9.1 -> 4.9.2
- Fixed a bug that caused too many tags to be popped from the tag
  stack during tree building, when encountering a closing tag that
  had no matching opening tag.
- Fixed a bug that inconsistently moved elements over when passing
  a Tag, rather than a list, into Tag.extend().
- Specify the soupsieve dependency in a way that complies with
  PEP 508.
- Change the signatures for BeautifulSoup.insert_before and
  insert_after (which are not implemented) to match
  PageElement.insert_before and insert_after, quieting warnings in
  some IDEs.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-30 15:57:40 -07:00
Leon Anavi
f7c4754725 python3-pychromecast: Upgrade 7.3.0 -> 7.5.0
Upgrade to release 7.5.0:

- Allow passing additional media information through to play_media
- Add support for lists, playQueues, and playlists on Plex
  controller
- Misc spelling changes

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-30 15:57:35 -07:00
Kai Kang
b8eb80b985 python3-pytest: 5.4.3 -> 6.1.0
Upgrade python3-pytest from 5.4.3 to 6.1.0
* add runtime dependency python3-iniconfig

And the release changelog is at:

https://docs.pytest.org/en/stable/changelog.html#pytest-6-1-0-2020-09-26

Signed-off-by: Kai Kang <kai.kang@windriver.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-30 15:57:23 -07:00
Kai Kang
5a0120e822 python3-iniconfig: add recipe
python3-iniconfig is required by pytest 6.1.0. And add it to
packagegroup-meta-python.

Signed-off-by: Kai Kang <kai.kang@windriver.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-30 15:56:48 -07:00
Leon Anavi
80efddfabb python3-pycrypto: Consolidate in a single file
Consolidate inc and bb files into a single bb file.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-28 20:49:15 -07:00
Leon Anavi
07843a418b python3-gevent: Upgrade 20.6.2 -> 20.9.0
Upgrade to release 20.9.0:

- The embedded libev is now asked to detect the availability of
  clock_gettime and use the realtime and/or monotonic clocks, if
  they are available. On Linux, this can reduce the number of
  system calls libev makes. Originally provided by Josh Snyder.
- On CPython, depend on greenlet >= 0.4.17. This version is binary
  incompatible with earlier releases on CPython 3.7 and later.
- On Python 3.7 and above, the module gevent.contextvars is no
  longer monkey-patched into the standard library. contextvars are
  now both greenlet and asyncio task local.
- The DummyThread objects created automatically by certain
  operations when the standard library threading module is
  monkey-patched now match the naming convention the standard
  library uses ("Dummy-12345"). Previously (since gevent 1.2a2)
  they used "DummyThread-12345".
- Fix compatibility with dnspython 2.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-28 20:49:15 -07:00
Leon Anavi
bd6e846e65 python3-cryptography-vectors: Upgrade 3.1 -> 3.1.1
Upgrade to release 3.1.1:

- Updated Windows, macOS, and manylinux wheels to be compiled with
  OpenSSL 1.1.1h.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-28 20:49:15 -07:00
Leon Anavi
ae30c7645d python3-cryptography: Upgrade 3.1 -> 3.1.1
Upgrade to release 3.1.1:

- Updated Windows, macOS, and manylinux wheels to be compiled with
  OpenSSL 1.1.1h.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-28 20:49:15 -07:00
Leon Anavi
a9374e8b9b python3-google-api-python-client: Upgrade 1.12.1 -> 1.12.2
Upgrade to release 1.12.2:

- add method to close httplib2 connections

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-28 20:49:15 -07:00
Leon Anavi
c492a9db90 python3-sentry-sdk: Upgrade 0.17.7 -> 0.17.8
Upgrade to release 0.17.8:

- Fix yet another bug with disjoint traces in Celery.
- Added support for Chalice 1.20. Thanks again to the folks at
  Cuenca MX!

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-28 20:49:15 -07:00
Leon Anavi
4ab4f4d747 python3-yarl: Upgrade 1.5.1 -> 1.6.0
Upgrade to release 1.6.0:

- Allow for int and float subclasses in query, while still denying
  bool.
- Do not requote arguments in URL.build(), with_xxx() and in /
  operator.
- Keep IPv6 brackets in origin().

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-28 20:49:15 -07:00
Leon Anavi
8cc8f13508 python3-xlsxwriter: Upgrade 1.3.5 -> 1.3.6
Upgrade to release 1.3.6:

- Added the worksheet :func:`unprotect_range()` method to allow
  ranges within a protected worksheet to be unprotected.
- There are now over 1500 test cases in the test suite, including
  900 tests that compare the output from XlsxWriter, byte for
  byte, against test files created in Excel. This is to ensure the
  maximum possible compatibility with Excel.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-28 20:49:15 -07:00
Hongxu Jia
d8826b63b8 python3-docopt: add version 0.6.2
It is required by python3-pykwalify cli
...
$ pykwalify -h
x86_64-wrlinuxsdk-linux/usr/lib/python3.8/site-packages/pykwalify/cli.py", line 11, in <module>
    from docopt import docopt
ModuleNotFoundError: No module named 'docopt'
...

Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-24 12:52:49 -07:00
Hongxu Jia
a88c7c9bbe python3-pykwalify: fix missing comma
...
|/usr/lib/python3.8/site-packages/pykwalify/rule.py:343: SyntaxWarning:
'tuple' object is not callable; perhaps you missed a comma?
...

Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-24 12:52:45 -07:00
Leon Anavi
71b077e8b1 python3-greenlet: Upgrade 0.4.16 -> 0.4.17
Upgrade to release 0.4.17:

- Provide support for PEP 567 ContextVars
- Provide a feature flag indicating whether we handle context vars
- Switch contextvars when switching greenlets

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-24 12:52:39 -07:00
Leon Anavi
250aa347e7 python3-xlsxwriter: Upgrade 1.3.4 -> 1.3.5
Upgrade to release 1.3.5:

- Fixed issue where relative url links in images didn't work.
- Added ``use_zip64`` as a constructor option.
- Added check, and warning, for worksheet tables with no data row.
  Either with or without a header row.
- Add a warning when the string length in
  :func:`write_rich_string()` exceeds Excel's limit.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-24 12:52:34 -07:00
Leon Anavi
36f7f6edc6 python3-zipp: Upgrade 3.1.0 -> 3.2.0
Upgrade to release 3.2.0:

- Mutate the passed ZipFile object type instead of making a copy.
  Prevents issues when both the local copy and the caller's copy
  attempt to close the same file handle.
- Path._next now honors subclasses.
- Path.is_file() now returns False for non-existent names.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-24 12:52:28 -07:00
Leon Anavi
26b4a9aa6f python3-pint: Upgrade 0.16 -> 0.16.1
Upgrade to release 0.16.1:

- Fix unpickling, now it is using the APP_REGISTRY as expected.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-24 12:52:24 -07:00
Leon Anavi
69b2bca15e python3-importlib-metadata: Upgrade 1.7.0 -> 2.0.0
Upgrade to release 2.0.0:

- importlib_metadata no longer presents a __version__ attribute.
  Consumers wishing to resolve the version of the package should
  query it directly with
  importlib_metadata.version('importlib-metadata').

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-24 12:52:20 -07:00
Leon Anavi
179f4fadf1 python3-sentry-sdk: Upgrade 0.17.6 -> 0.17.7
Upgrade to release 0.17.7:

- Internal: Change data category for transaction envelopes.
- Fix a bug under Celery 4.2+ that may have caused disjoint
  traces or missing transactions.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-24 12:52:17 -07:00
Leon Anavi
695d3ef1a1 python3-paho-mqtt: Upgrade 1.5.0 -> 1.5.1
Upgrade to release 1.5.1:

- Exceptions that occur in callbacks are no longer suppressed by
  default. They can optionally be suppressed by setting
  `client.suppress_exceptions = True`.
- Fix PUBREL remaining length of > 2 not being accepted for MQTT
  v5 message flows.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-24 12:52:12 -07:00
Hongxu Jia
b18f740260 python3-dateutil/python3-pykwalify: add nativesdk support
Call pykwalify module in SDK

Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-24 12:51:54 -07:00
Tim Orling
2c6f69cc43 packagegroup-meta-python: -jinja2 -markupsafe => ptest
The main recipes for python3-jinja2 and python3-markupsafe
have moved to oe-core. No need to duplicate them here.

Instead, we add them to meta-python3-ptest sub-package, since
we do enable ptest with bbappends.

Signed-off-by: Tim Orling <ticotimo@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-23 10:13:35 -07:00
Tim Orling
d964d093f5 python3-jinja2: bbappend for ptest
The main recipe has moved to oe-core, but with ptest
disabled. Here we simply conditionally inherit ptest
to enable it in meta-python.

Remove the original recipe and the python3-jinja2/
directory.

Signed-off-by: Tim Orling <ticotimo@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-23 10:13:35 -07:00
Tim Orling
92be59704b python3-markupsafe: bbappend for ptest
The main recipe has moved to oe-core, but with ptest
disabled. Here we simply conditionally inherit ptest
to enable it in meta-python.

Remove the original recipe and the python3-markupsafe/
directory.

Signed-off-by: Tim Orling <ticotimo@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-23 10:13:35 -07:00
Leon Anavi
2a460d8c67 python3-flask-uploads: Consolidate in a single file
Consolidate inc and bb files into a single bb file.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-23 10:13:31 -07:00
Leon Anavi
5c61f29d25 python3-xlsxwriter: Upgrade 1.3.3 -> 1.3.4
Upgrade to release 1.3.4:

- Replaced internal MD5 digest used to check for duplicate images
  with a SHA256 digest to avoid issues on operating systems such
  as Red Hat in FIPS mode which don't support MD5 for security
  reasons

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-23 10:13:27 -07:00
Leon Anavi
118d8d95a8 python3-isort: Upgrade 5.5.2 -> 5.5.3
Upgrade to release 5.5.3:

- Bug fix: in rare cases isort can mangle yield from or raise
  from statements.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-23 10:13:23 -07:00
Leon Anavi
810f203e96 python3-luma-core: Upgrade 1.16.1 -> 1.16.2
Upgrade to release 1.16.2:
- Added new parallel interface module
- Renamed parallel class to bitbang_6800; moved to parallel module

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-23 10:13:16 -07:00
Leon Anavi
fa09a99e3a python3-h2: Upgrade 3.2.0 -> 4.0.0
Upgrade to release 4.0.0:

- Support for Python 2.7 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.
- Support for Python 3.8 has been added.
- Receiving DATA before HEADERS now raises a ProtocolError.

License-Update: Update copyright year to 2020.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-23 10:12:51 -07:00
Leon Anavi
d7c8d85f95 python3-rfc3339-validator: Upgrade 0.1.1 -> 0.1.2
Upgrade to release 0.1.2:

- setup.py: move pytest-runner to test_requirements

Patch has been removed from the recipe because it has been already
upstreamed in the new release.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-21 08:57:41 -07:00
Leon Anavi
ea5d1e2298 python3-cmd2: Upgrade 1.3.9 -> 1.3.10
Upgrade to release 1.3.10:

- Added user-settable option called always_show_hint. If True,
  then tab completion hints will always display even when tab
  completion suggestions print. Arguments whose help or hint text
  is suppressed will not display hints even when this setting is
  True.
- argparse tab completion now groups flag names which run the same
  action. Optional flags are wrapped in brackets like it is done
  in argparse usage text.
- default category decorators are now heritable by default and
  will propagate the category down the class hierarchy until
  overridden. There's a new optional flag to set heritable to
  false.
- Added --silent flag to alias/macro create. If used, then no
  confirmation message will be printed when aliases and macros
  are created or overwritten.
- Added --with_silent flag to alias/macro list. Use this option
  when saving to a startup script that should silently create
  aliases and macros.
- Fixed issue where flag names weren't always sorted correctly in
  argparse tab completion

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-21 08:57:33 -07:00
Leon Anavi
50cc12f693 python3-sentry-sdk: Upgrade 0.17.5 -> 0.17.6
Upgrade to release 0.17.6:

- Support for Flask 0.10 (only relaxing verson check)

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-21 08:57:26 -07:00
Leon Anavi
9b895954bb python3-langtable: Upgrade 0.0.52 -> 0.0.53
Upgrade to release 0.0.53:

- Capitalize the return values of language_name() and
  territory_name()
- Add more translations from CLDR
- Get translation changes from CLDR

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-21 08:57:10 -07:00
Hongxu Jia
7f70cce019 python3-argcomplete: add recipe 1.12.0
Tab complete all the things!

Argcomplete provides easy, extensible command line tab completion of
arguments for your Python script.

Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-21 08:55:57 -07:00
Zang Ruochen
bccd3277e4 python3-test-generator: Enable ptest
Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-16 09:16:41 -07:00
Leon Anavi
5b8df78562 python3-msk: Upgrade 0.3.15 -> 0.3.16
Upgrade to release 0.3.16:

- Ensure local HEAD matches remote during upgrade
- Remove typing dependency - only required for Python <= 3.4
- Include license file in sdist package
- Add default icon and color during Skill creation
- Improved category selection and display
- Improve PyPI listing info

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-16 09:16:37 -07:00
Leon Anavi
110e978c9a python3-ruamel-yaml: Upgrade 0.16.11 -> 0.16.12
Upgrade to release 0.16.12:

- update links in doc

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-16 09:16:33 -07:00
Leon Anavi
44d93eab94 python3-pyrsistent: Upgrade 0.16.0 -> 0.17.3
Upgrade 0.17.3:

- Remove Python 2 support code. This includes dropping some
  compatibility code and the dependency on six.
- Python 3 exception chaining. This is a minor backwards
  incompatibility, hence stepping to 0.17.0.
- Restrict package to Python >= 3.5 to not break unpinned
  Python 2 dependencies.
- Release v0.17.3 with proper meta data requiring Python >= 3.5.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-16 09:16:27 -07:00
Leon Anavi
c5406a6d48 python3-pychromecast: Upgrade 7.2.1 -> 7.3.0
Upgrade to release 7.3.0:

- add support for QUEUE_INSERT
- Run black and flake8 on examples
- Fix get_chromecasts non blocking mode
- Black 20.8b1

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-16 09:16:06 -07:00
Leon Anavi
3833774054 python3-matplotlib: Upgrade 3.3.1 -> 3.3.2
Upgrade to release 3.3.2:

- fix Axis scale on twinned Axes
- fix auto-close of Figures in nbagg
- fix automatic title placement if Axes is off the Figure
- fix autoranging of log scales with barstacked histogram
- fix extra redraws when using Button or TextBox widgets
- fix imshow with LogNorm and large vmin/vmax ranges
- fix plotting Pandas DataFrame with string MultiIndex
- fix scatter with marker=''
- fix scatter3d color/linewidth re-projection
- fix state of mode buttons in TkAgg backends
- include license files in built distribution
- reduce Visual C++ runtime requirements on Windows

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-16 09:16:02 -07:00
Leon Anavi
275c9da05e python3-stevedore: Upgrade 3.2.1 -> 3.2.2
Upgrade to release 3.2.2:

- fix supported python versions in documentation

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-16 09:15:57 -07:00
Leon Anavi
4d655195b4 python3-pymisp: Upgrade 2.4.130 -> 2.4.131
Upgrade to release 2.4.131:

- [test] Validate tag removal.
- [describeTypes] updated and sha3 added.
- Bump version, file template version objects and dependencies.
- Rename blacklist -> blocklist.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-16 09:15:53 -07:00
Leon Anavi
065641165f python3-nocaselist: Upgrade 1.0.1 -> 1.0.2
Upgrade to release 1.0.2:

- Fixed an AttributeError during unpickling.
- Optimized pickling a NocaseList object by serializing only the
  original list, but not the second lower-cased list. This
  optimization is only implemented for Python 3.
- Added tests for pickling and unpickling.
- Suppressed new Pylint issue 'super-with-arguments', because
  this package still supports Python 2.7.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-16 09:15:48 -07:00
Leon Anavi
7a19eeae41 python3-attrs: Upgrade 20.1.0 -> 20.2.0
Upgrade to release 20.2.0:

- Backward-incompatible: attr.define(), attr.frozen(),
  attr.mutable(), and attr.field() remain provisional.
- attr.define() et al now correct detect __eq__ and __ne__.
- attr.define() et al's hybrid behavior now also works correctly
  when arguments are passed.
- It's possible to define custom __setattr__ methods on slotted
  classes again.
- In 20.1.0 we introduced the inherited attribute on the
  attr.Attribute class to differentiate attributes that have been
  inherited and those that have been defined directly on the
  class.It has shown to be problematic to involve that attribute
  when comparing instances of attr.Attribute though, because when
  sub-classing, attributes from base classes are suddenly not
  equal to themselves in a super class.
  Therefore the inherited attribute will now be ignored when
  hashing and comparing instances of attr.Attribute.
- zope.interface is now a "soft dependency" when running the test
  suite; if zope.interface is not installed when running the test
  suite, the interface-related tests will be automatically skipped.
- The ergonomics of creating frozen classes using
  @define(frozen=True) and sub-classing frozen classes has been
  improved: you don't have to set on_setattr=None anymore. #687

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-16 09:15:41 -07:00
Leon Anavi
415cf6bdec python3-sentry-sdk: Upgrade 0.17.3 -> 0.17.5
Upgrade to release 0.17.5:

- Work around an issue in the Python stdlib that makes the entire
  process deadlock during garbage collection if events are sent
  from a __del__ implementation.
- Add possibility to wrap ASGI application twice in middleware to
  enable split up of request scope data and exception catching.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-16 09:15:03 -07:00
Leon Anavi
0f347c01c7 python3-google-api-python-client: Upgrade 1.11.0 -> 1.12.1
Upgrade to release 1.12.1:

- deps: require six>=1.13.0
- add quota_project, credentials_file, and scopes support
- convert print statement to function
- remove http from batch execute docs

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-16 09:14:58 -07:00
Leon Anavi
b31347847d python3-cffi: Upgrade 1.14.2 -> 1.14.3
Upgrade to release 1.14.3:

- Don't call PyEval_InitThreads() on CPython >= 3.7, where it
  should always be a no-op.  It is explicitly deprecated in 3.9.
- Let the test run directly on pypy too
- Remove extremely old and outdated .gitignore

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-16 09:14:22 -07:00
Leon Anavi
b6870570cf python3-parse: Upgrade 1.17.0 -> 1.18.0
Upgrade to release 1.18.0:

- Correct bug in int parsing introduced in 1.16.0

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-15 09:28:35 -07:00
Leon Anavi
e926680b8d python3-pint: Upgrade 0.15 -> 0.16
Upgrade to release 0.16:

- Fixed issue where performing an operation of a Quantity with
  certain units would perform an in-place unit conversion that
  modified the operand in addition to the returned value
- Implements Logarithmic Units like dBm, dB or decade
- Drop dependency on setuptools pkg_resources to read package
  resources, using std lib importlib.resources instead.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-15 09:28:35 -07:00
Leon Anavi
3430952804 python3-pandas: Upgrade 1.1.1 -> 1.1.2
Upgrade to release 1.1.2:

- Regression in DatetimeIndex.intersection() incorrectly raising
  AssertionError when intersecting against a list
- Fix regression in updating a column inplace
- Fix regression in DataFrame.append() mixing tz-aware and
  tz-naive datetime columns
- Performance regression for RangeIndex.format()
- Regression where MultiIndex.get_loc() would return a slice
  spanning the full index when passed an empty list
- Bug in DataFrame.eval() with object dtype column binary
  operations
- Bug in Series constructor raising a TypeError when constructing
  sparse datetime64 dtypes
- Bug in DataFrame.apply() with result_type="reduce" returning
  with incorrect index
- Bug in Series.astype() and DataFrame.astype() not respecting the
  errors argument when set to "ignore" for extension dtypes
- Bug in DateTimeIndex.format() and PeriodIndex.format() with
  name=True setting the first item to "None" where it should be ""
- Other bug fixes

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-15 09:28:35 -07:00
Leon Anavi
fc1bac1f23 python3-pyusb: Upgrade 1.0.2 -> 1.1.0
Upgrade to release 1.1.0:

- Make deploy script compatible with setuptools_scm and add
  prompts
- tutorial: fix the description of the return of
  find(find_all=True)
- Fix broken link in tutorial to libusb caveats
- Use setuptools_scm for versioning
- simplify version_info regex
- Bug fixes

License-Update: Normalize all copyright disclaimers, update year

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-15 09:28:35 -07:00
Leon Anavi
39abd92a7e python3-pyroute2: Upgrade 0.5.13 -> 0.5.14
Upgrade to release 0.5.14:

- iproute: ip neigh get
- iproute: link_lookup fix
- nftables: missing hooks
- netns: bug fix

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-15 09:28:34 -07:00
Leon Anavi
a5a11b54b3 python3-nocasedict: Upgrade 0.5.0 -> 1.0.0
Upgrade to release 1.0.0 with the following bug fixes:

- Test: Fixed that the reversed test against the built-in dict
  was attempted on Python 3.7, but the built-in dict became
  reversible only in Python 3.8.
- Test: Fixed issue on pypy2 (Python 2.7) where the testcases for
  update() passed keyword arguments that had integer-typed
  argument names. That is supported by CPython 2.7 when passing
  them as a kwargs dict, but not by pypy2. Removed these
  testcases, because the support for that feature in CPython 2.7
  is not part of the Python language.
- Docs: Fixed missing Python 2 only methods in RTD docs
- Pylint: Accomodated new ‘raise-missing-from’ check in Pylint
  2.6.0.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-15 09:28:34 -07:00
Leon Anavi
68cafa5a95 python3-alembic: Upgrade 1.4.2 -> 1.4.3
Upgrade to release 1.4.3:

- Added support to drop named CHECK constraints that are specified
  as part of a column, rather than table wide. Previously, only
  constraints associated with the table were considered.
- Fixed issue where the MySQL dialect would not correctly render
  the server default of a column in an alter operation, if the
  operation were programmatically generated from an autogenerate
  pass as it would not accommodate for the full structure of the
  DefaultClause construct.
- Fixed issue where the CAST applied to a JSON column when copying
  a SQLite table during batch mode would cause the data to be lost,
  as SQLite's CAST with JSON appears to convert the data to the
  value "0". The CAST is now skipped in a dialect-specific manner,
  including for JSON columns on SQLite.
- The alembic current command no longer creates an alembic_version
  table in the database if one does not exist already, returning
  no version as the current version. This allows checking for
  migrations in parallel without introducing race conditions.
- Fixed issue where columns in a foreign-key referenced table
  would be replaced with null-type columns during a batch
  operation; while this did not generally have any side effects,
  it could theoretically impact a batch operation that also
  targets that table directly and also would interfere with future
  changes to the .append_column() method to disallow implicit
  replacement of columns.
- Fixed issue where the mssql_drop_foreign_key=True flag on
  op.drop_column would lead to incorrect syntax error due to a
  typo in the SQL emitted, same typo was present in the test as
  well so it was not detected.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-15 09:28:34 -07:00
Leon Anavi
a09767b5cc python3-pymysql: Upgrade 0.10.0 -> 0.10.1
Upgrade to release 0.10.1:

- Fix missing import of ProgrammingError.
- Fix auth switch request handling.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-15 09:28:34 -07:00
Leon Anavi
f807d8454a python3-haversine: Upgrade 2.2.0 -> 2.3.0
Upgrade to release 2.3.0:

- Added the comb parameter for haversine_vector

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-15 09:28:34 -07:00
Leon Anavi
76fa68032a python3-diskcache: Upgrade 5.0.2 -> 5.0.3
Upgrade to release 5.0.3:

- Add python_requires kwarg to setup

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-15 09:28:34 -07:00
Leon Anavi
7a0bf421cf python3-coverage: Upgrade 5.2.1 -> 5.3
Upgrade to release 5.3:

- The source setting has always been interpreted as either a file
  path or a module, depending on which existed. If both
  interpretations were valid, it was assumed to be a file path.
  The new source_pkgs setting can be used to name a package to
  disambiguate this case.
- If a plugin was disabled due to an exception, we used to still
  try to record its information, causing an exception. This is now
  fixed.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-15 09:28:34 -07:00
Leon Anavi
4097284092 python3-isort: Upgrade 5.5.0 -> 5.5.2
Upgrade to release 5.5.2:

- Fixed: --diff option is ignored when input is from stdin.
- Fixed: Ensure indented import sections with import heading and
  a preceding comment don't cause import sorting loops.
- Fixed: isort error when float to top on almost empty file.
- Fixed: noqa comment moved to where flake8 cant see it.
- Fixed: .svn missing from default ignore list.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-15 09:28:34 -07:00
Leon Anavi
c1a0881979 python3-tqdm: Upgrade 4.48.2 -> 4.49.0
Upgrade to release 4.49.0:

- CLI: add --tee
- CLI: add --update and --update_to
- CLI: add --null
- CLI: accept - instead of _ in options (e.g. --update-to)
- make update() return True on display to ease efficient use of
  custom callbacks
- fix py>=3 CLI --delim encoding error
- fix py>=3.5 version detection in tqdm.auto
- fix final ETA when using initial
- update documentation
- add & update tests

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-15 09:28:34 -07:00
Leon Anavi
75a78b8a2a python3-trafaret: Upgrade 2.0.2 -> 2.1.0
Upgrade to release 2.1.0:

- fix for `Dict` merge
- new `is_valid` method

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-15 09:28:34 -07:00
Leon Anavi
3eeda97b3c python3-ujson: Upgrade 3.1.0 -> 3.2.0
Upgrade to release 3.2.0:

- Make PEP 384 compliant
- Build and deploy aarch64 wheels

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-15 09:28:34 -07:00
Leon Anavi
35e3e374d6 python3-dbus-next: Upgrade 0.1.3 -> 0.1.4
Upgrade to release 0.1.4:

- Support tcp transport addresses
- Add support for the annonymous authentication protocol
- Add flags kwarg to aio high level client method call
- Allow subclassing of DBusError
- Fix exception in aio message handler loop on task cancellation
- Improve error messages
- Fix match rule memory leak bug
- Don't add match rules for high level client by default
- Add empty properties interface to standard interfaces

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-15 09:28:34 -07:00
Leon Anavi
3cb8969680 python3-iso8601: Upgrade 0.1.12 -> 0.1.13
Upgrade to release 0.1.13:

- Move project source code to GitHub
- Remove python 2.6, 3.2, 3.3 and 3.4 from tests
- Add python 3.7 and 3.8 to tests

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-15 09:28:34 -07:00
Leon Anavi
9c9aab3b8c python3-texttable: Upgrade 1.6.2 -> 1.6.3
Upgrade to release 1.6.3:

- Improve int conversion

License-Update: Update copyright year to 2020.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-15 09:28:34 -07:00
Leon Anavi
cabb94a3ba python3-traitlets: Upgrade 5.0.3 -> 5.0.4
Upgrade to release 5.0.4:

- Support deprecated use of byte-literals for bytes on the
  command-line: ipython kernel --Session.key="b'abc'". The b
  prefix is no longer needed in traitlets 5.0, but is supported
  for backward-compatibility
- Improve output of configuration errors, especially when help
  output would make it hard to find the helpful error message

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-15 09:28:34 -07:00
Leon Anavi
e85ac5357d python3-hyperframe: Upgrade 5.2.0 -> 6.0.0
Upgrade to release 6.0.0:

API Changes (Backward-incompatible):
- Introduce HyperframeError base exception class for all errors
  raised within hyperframe.
- Change exception base class of UnknownFrameError to
  HyperframeError
- Change exception base class of InvalidPaddingError to
  HyperframeError
- Change exception base class of InvalidFrameError to
  HyperframeError
- Invalid frames with wrong stream id (zero vs. non-zero) now
  raise InvalidDataError.
- Invalid SETTINGS frames (non-empty but ACK) now raise
  InvalidDataError.
- Invalid ALTSVC frames with non-bytestring field or origin now
  raise InvalidDataError.

API Changes (Backward-compatible)
- Deprecate total_padding - use pad_length instead.
- Improve repr() output for all frame classes.
- Introduce Frame.explain(data) for quick introspection of raw
  data.

Bugfixes
- Fixed padding parsing for PushPromiseFrame.
- Fixed unchecked frame length for PriorityFrame. It now correctly
  raises InvalidFrameError.
- Fixed promised stream id validation for PushPromiseFrame. It now
  raises InvalidDataError.
- Fixed unchecked frame length for WindowUpdateFrame. It now
  correctly raises InvalidFrameError.
- Fixed window increment value range validation. It now raises
  InvalidDataError.
- Fixed parsing of SettingsFrame with mutual exclusion of ACK flag
  and payload.

Other Changes
- Removed support for Python 2.7, 3.4, 3.5, pypy.
- Added support for Python 3.8.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-15 09:28:34 -07:00
Trevor Gamblin
ab05d6522f python3-django: add recipe for 3.1.1
meta-python only contains a recipe for django 2.2.x, so
add a recipe file for the newest branch.

Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-15 09:28:34 -07:00
Trevor Gamblin
eb69aad33f python3-django: upgrade 2.2.13 -> 2.2.16
Summary of release notes from https://docs.djangoproject.com/en/2.2/releases/

2.2.14 release notes:

- Fixed messages of InvalidCacheKey exceptions and CacheKeyWarning warnings
  raised by cache key validation (#31654).

2.2.15 release notes:

- Allowed setting the SameSite cookie flag in HttpResponse.delete_cookie()
  (#31790).
- Fixed crash when sending emails to addresses with display names longer than
  75 chars on Python 3.6.11+, 3.7.8+, and 3.8.4+ (#31784).

2.2.16 release notes:

- Fixed CVE-2020-24583: Incorrect permissions on intermediate-level directories
  on Python 3.7+
- Fixed CVE-2020-24584: Permission escalation in intermediate-level directories
  of the file system cache on Python 3.7+
- Fixed a data loss possibility in the select_for_update(). When using related
  fields pointing to a proxy model in the of argument, the corresponding model
  was not locked (#31866).
- Fixed a data loss possibility, following a regression in Django 2.0, when
  copying model instances with a cached fields value (#31863).

Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-11 17:44:02 -07:00
Trevor Gamblin
5e10962ece packagegroup-meta-python: fix PACKAGES and default ptest recipe name
Remove packagegroup-meta-python3-ptest from PACKAGES in packagegroup-meta-python.bb
to fix QA issue, and change python3-cryptography to python3-cryptography-ptest in
RDEPENDS_packagegroup-meta-python3-ptest to be consistent with how other ptest images
list RDEPENDS.

Signed-off-by: Trevor Gamblin <tvgamblin@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-10 01:24:34 -07:00
Leon Anavi
81d2d5b01d python3-sentry-sdk: Upgrade 0.17.2 -> 0.17.3
Upgrade to release 0.17.3:

- Fix an issue with the pure_eval integration in interaction with
  trimming where pure_eval would create a lot of useless local
  variables that then drown out the useful ones in trimming.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-10 01:24:34 -07:00
Leon Anavi
1c7b46f706 python3-isort: Upgrade 5.4.2 -> 5.5.0
- Fixed: isort: off comment doesn't work, if it's the top comment
  in the file.
- Fixed: reverse_relative setting doesn't have any effect when
  combined with force_sort_within_sections.
- Fixed: --skip can error in the case of projects that contain
  recursive symlinks.
- Fixed: ensure_newline_before_comments doesn't work if comment is
  at top of section and sections don't have lines between them.
- Fixed: comments in imports with ";" can keep isort from
  recognizing import line.
- Fixed: As imports removed when combine_star is set.
- Fixed: --float-to-top has no effect if no import is already at
  the top.
- Fixed: isort never settles on module docstring + add import.
- Fixed: Error raised when repo contains circular symlinks.
- Fixed: noqa comment is moved from star import to constant
  import.
- Fixed: Incorrect placement of import additions.
- Fixed: isort5 throws error when stdin used on Windows with
  deprecated args.
- Added support for specifying config file when using git hook.
- Added support for coloring diff output.
- New multi-line grid mode without parentheses.
- Extensive profile testing.
- Proprety based testing applied to code snippets.
- Create automated integration test that includes full code base
  of largest OpenSource isort users.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-10 01:24:34 -07:00
Khem Raj
e43a9898fc meta-python-image,meta-python-ptest-image: Use python3 packagegroups
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2020-09-10 01:24:34 -07:00
Khem Raj
c18b3d9fed packagegroup-meta-python: Add new packages
Reorganise entries per line

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
2020-09-10 01:24:33 -07:00
Leon Anavi
b6ab91b594 python3-fann2: Consolidate in a single file
Consolidate inc and bb files into a single bb file.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-07 11:28:04 -07:00
Leon Anavi
9c04cdb6c7 gyp: Upgrade to latest version
Upgrade to latest version for the git repository:

- Add support for CLANG_ENABLE_OBJC_WEAK
- Prevent propogation to configurations of nested
  'dependent-settings' directives

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-07 11:28:04 -07:00
Leon Anavi
b3b0e29820 gyp: Consolidate in a single file
Consolidate inc and bb files into a single bb file.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-07 11:28:04 -07:00
Leon Anavi
a5fca554e9 python3-gsocketpool: Consolidate in a single file
Consolidate inc and bb files into a single bb file.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-07 11:28:04 -07:00
Leon Anavi
4ef9211346 python3-mprpc: Consolidate in a single file
Consolidate inc and bb files into a single bb file.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-07 11:28:04 -07:00
Leon Anavi
2c27f5f08b python3-hyperframe: Consolidate in a single file
Consolidate inc and bb files into a single bb file.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-07 11:28:04 -07:00
Leon Anavi
556cab414c python3-priority: Consolidate in a single file
Consolidate inc and bb files into a single bb file.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-07 11:28:04 -07:00
Leon Anavi
f41cae55b4 python3-traitlets: 5.0.0 -> 5.0.3
Upgrade to release 5.0.3:

- update cast_unicode with Python's standard decode method
- handle allow_none in from_string

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-07 11:28:04 -07:00
Leon Anavi
39d0a99e94 python3-cmd2: Upgrade 1.3.8 -> 1.3.9
Upgrade to release 1.3.9:

Breaking Changes:
- CommandSet.on_unregister() is now called as first step in
  unregistering a CommandSet and not the last.
  CommandSet.on_unregistered() is now the last step.

Enhancements:
- Added CommandSet.on_registered(). This is called by cmd2.Cmd
  after a CommandSet is registered and all its commands have been
  added to the CLI.
- Added CommandSet.on_unregistered(). This is called by cmd2.Cmd
  after a CommandSet is unregistered and all its commands have
  been removed from the CLI.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-07 11:28:04 -07:00
Leon Anavi
3ca275d60c python3-ruamel-yaml: Upgrade 0.16.10 -> 0.16.11
Upgrade to release 0.16.11:

- workaround issue with setuptools 0.50 and importing pip

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-07 11:28:04 -07:00
Leon Anavi
aac74bcb81 python3-gevent: Upgrade 1.4.0 -> 20.6.2
Upgrade to release 20.6.2:

- It is now possible to build and use the embedded libuv on a
  Cygwin platform.
- Bug fix: relax the version constraint for psutil on PyPy.
- The include directories used to compile the C extensions have
  been tweaked with the intent of making it easier to use older
  debug versions of Python.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-05 13:04:40 -07:00
Leon Anavi
a425609f8b python3-gevent: Consolidate in a single file
Consolidate inc and bb files into a single bb file.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-05 13:04:34 -07:00
Leon Anavi
b6d967f052 python3-systemd: Consolidate in a single file
Consolidate inc and bb files into a single bb file.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-05 13:04:28 -07:00
Leon Anavi
bcb25c13d0 python3-absl: Upgrade 0.9.0 -> 0.10.0
Use PyPI and upgrade to release 0.10.0:

Added:
- (testing) _TempDir and _TempFile now implement __fspath__ to
  satisfy os.PathLike
- (logging) --logger_levels: allows specifying the log levels of
  loggers.
- (flags) FLAGS.validate_all_flags: a new method that validates
  all flags and raises an exception if one fails.
- (flags) FLAGS.get_flags_for_module: Allows fetching the flags a
  module defines.
- (testing) parameterized.TestCase: Supports async test
  definitions.
- (testing,app) Added --pdb flag: When true, uncaught exceptions
  will be handled by pdb.post_mortem. This is an alias for
  --pdb_post_mortem.

Changed:
- (testing) Failed tests output a copy/pastable test id to make it
  easier to copy the failing test to the command line.
- (testing) @parameterized.parameters now treats a single
  abc.Mapping as a single test case, consistent with
  named_parameters. Previously the abc.Mapping is treated as if
  only its keys are passed as a list of test cases. If you were
  relying on the old inconsistent behavior, explicitly convert
  the abc.Mapping to a list.
- (flags) DEFINE_enum_class and DEFINE_mutlti_enum_class accept a
  case_sensitive argument. When False (the default), strings are
  mapped to enum member names without case sensitivity, and member
  names are serialized in lowercase form. Flag definitions for
  enums whose members include duplicates when case is ignored must
  now explicitly pass case_sensitive=True.

Fixed:
- (flags) Defining an alias no longer marks the aliased flag as
  always present on the command line.
- (flags) Aliasing a multi flag no longer causes the default value
  to be appended to.
- (flags) Alias default values now matched the aliased default
  value.
- (flags) Alias present counter now correctly reflects command
  line usage.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-05 13:04:22 -07:00
Leon Anavi
03431fe0a4 python3-nmap: Upgrade 1.4.7 -> 1.4.8
Upgrade to release 1.4.8:

- Using of -Pn -sZ options for basic stealth scan
- Refactoring nmap3.py to avoid repetitive code
- Support for nmap stealth scans
- Fix handling of xml.etree.ElementTree.Element with no sub
  elements
- Support for gettings nmap raw outout

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-05 13:04:16 -07:00
Leon Anavi
c563a70087 python3-mccabe: Upgrade 0.2.1 -> 0.6.1
Upgrade to release 0.6.1:

- Add support for Python 3.6
- Fix handling for missing statement types
- Fix signature for PathGraphingAstVisitor.default to match the
  signature for ASTVisitor

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-05 13:04:11 -07:00
Leon Anavi
1fc443fda1 python3-pyzmq: Upgrade 17.1.0 -> 19.0.2
- Cython backend: Build Cython extensions with language level
  "3str" (requires Cython 0.29)
- Cython backend: You can now cimport zmq
- Asyncio: Fix memory leak in Poller
- Log: Much improved logging in zmq.log (see Asynchronous Logging
  via PyZMQ)
- Log: add python -m zmq.log entrypoint
- Sources generated with Cython 0.29.15

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-05 13:04:06 -07:00
Leon Anavi
04470663c4 python3-pycurl: Upgrade 7.43.0.5 -> 7.43.0.6
Upgrade to release 7.43.0.6:

- Improve SSL backend detection on various systems
- Add support for libcurl's multiple SSL backend functionality
- Add support for several libcurl options

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-05 13:04:00 -07:00
Leon Anavi
5777d30ef3 python3-sentry-sdk: Upgrade 0.17.1 -> 0.17.2
Upgrade to release 0.17.2:

- Fix timezone bugs in GCP integration

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-05 13:03:54 -07:00
Leon Anavi
23eb584c6e python3-robotframework: Upgrade 3.2.1 -> 3.2.2
Upgrade to release 3.2.2, a new minor release with some bug fixes,
Libdoc enhancements and official Python 3.9 support. For more
details please visit:
https://github.com/robotframework/robotframework/blob/master/doc/releasenotes/rf-3.2.2.rst

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-05 13:03:48 -07:00
Leon Anavi
46712eeb71 python3-stevedore: Upgrade 3.2.0 -> 3.2.1
Upgrade to release 3.2.1:

- Bug fix: there were some syntax errors in the comment of
  stevedore code

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-05 13:03:42 -07:00
Leon Anavi
8dfd26dc7c python3-meh: Upgrade 0.48 -> 0.49
Upgrade to release 0.49:

- Fix make archive command after pot file removal
- Add Readme with description and translation badge
- Add pot file to the git ignore
- Pause release when making bumpver to check and solve
  translations
- Remove unused PREFIX from Makefile
- Remove Zanata
- Push translations to our translation repository
- Download translations from Weblate
- Remove pot file

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-05 13:03:08 -07:00
Leon Anavi
995fc86b29 python3-pillow: Upgrade 6.2.1 -> 7.2.0
Upgrade to release 7.2.0:

- Do not convert I;16 images when showing PNGs
- Fixed ICNS file pointer saving
- Fixed loading non-RGBA mode APNGs with dispose background
- Deprecated _showxv
- Deprecate Image.show(command="...")
- Updated JPEG magic number
- Change STRIPBYTECOUNTS to LONG if necessary when saving
- Write JFIF header when saving JPEG
- Replaced tiff_jpeg with jpeg compression when saving TIFF images
- Writing TIFF tags: improved BYTE, added UNDEFINED
- Consider transparency when pasting text on an RGBA image
- Added method argument to single frame WebP saving
- Use ImageFileDirectory_v2 in Image.Exif
- Corrected reading EXIF metadata without prefix
- Fixed drawing a jointed line with a sequence of numeric values
- Added support for 1-D NumPy arrays
- Parse orientation from XMP tags
- Speed up text layout by not rendering glyphs
- Fixed ZeroDivisionError in Image.thumbnail
- Replaced TiffImagePlugin DEBUG with logging
- Fix repeatedly loading .gbr
- JPEG: Truncate icclist instead of setting to None
- Fixes default offset for Exif
- Fixed bug when unpickling TIFF images
- Fix pickling WebP
- Replace IOError and WindowsError aliases with OSError

License-Update: Word wrap and updated copyright year.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-02 08:55:52 -07:00
Leon Anavi
0036646b10 python3-flask-pymongo: Consolidate in a single file
Consolidate inc and bb files into a single bb file.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-02 08:55:46 -07:00
Leon Anavi
0b59651f4c python3-flask-mail: Consolidate in a single file
Consolidate inc and bb files into a single bb file.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-02 08:55:41 -07:00
Leon Anavi
fd27498d93 python3-flask-nav: Consolidate in a single file
Consolidate inc and bb files into a single bb file.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-02 08:55:34 -07:00
Leon Anavi
0acb664315 python3-traitlets: Upgrade 4.3.3 -> 5.0.0
Upgrade to release 5.0.0:

Traitlets 5.0 is a new version of traitlets that accumulate
changes over a period of more close to four years; A number of
internal refactoring made the internal code structure cleaner and
simpler, and greatly improved the diagnostic error messages as
well has help and documentation generation. Major changes:

- Removal of Python 2 support,
- Removal of Python 3.0-3.6 support
- Follow NEP 29, and are thus Python 3.7+ only.
- Remove six as a dependency
- Remove funcsig as a dependency.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-02 08:55:18 -07:00
Leon Anavi
d66235395a python3-luma-core: Upgrade 1.16.0 -> 1.16.1
Upgrade to release 1.16.1:

- Fix bug in bitmap_font: glyph_index now computed correctly

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-02 08:53:50 -07:00
Leon Anavi
78c40a2b28 python3-sentry-sdk: Upgrade 0.17.0 -> 0.17.1
Upgrade to release 0.17.1:

- Fix timezone bugs in AWS Lambda integration.
- Fix crash on GCP integration because of missing parameter
  timeout_warning.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-02 08:52:48 -07:00
Leon Anavi
8fea684822 python3-hpack: Upgrade 3.0.0 -> 4.0.0
Upgrade to release 4.0.0:

- Remove support for Python 2.7, 3.4 and 3.5.
- Add support for Python 3.8.
- Performance improvement of static header search. Use dict
  search instead of linear search.
- Fix debug output of headers during encoding.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-02 08:52:37 -07:00
Leon Anavi
8724b3358d python3-hpack: Consolidate in a single file
Consolidate inc and bb files into a single bb file.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-02 08:52:32 -07:00
Leon Anavi
cd7352b6b8 python3-ipython: Upgrade 7.17.0 -> 7.18.1
Upgrade to release 7.18.1:

- CRLF is now handled by magics my default; solving some issues
  due to copy pasting on windows.
- Requiring pexpect >=4.3 as we are Python 3.7+ only and earlier
  version of pexpect will be incompatible.
- Minimum jedi version is now 0.16.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-02 08:52:27 -07:00
Leon Anavi
7f2e8bd076 python3-more-itertools: Upgrade 8.4.0 -> 8.5.0
Upgrade to release 8.5.0:

- Add :func:`windowed_complete`
- The :func:`is_sorted` implementation was improved
- The :func:`groupby_transform` now accepts a reducefunc parameter
- The :func:`last` implementation was improved
- Various documentation fixes
- The tests for :func:`distinct_combinations` were improved
- Automated tests now run on GitHub Actions

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-02 08:52:22 -07:00
Leon Anavi
6e3548440f python3-prompt-toolkit: Upgrade 3.0.6 -> 3.0.7
Upgrade to release 3.0.7:

- New "placeholder" parameter added to `PromptSession`.
- The "respond to CPR" logic has been moved from the `Input` to
  `Output` classes (this does clean up some code).
- Bugfix in shift-selection key bindings.
- Fix hight calculation of `FormattedTextControl` when line
  wrapping is turned on.
- Fixes for SSH server:
  * Missing encoding property
  * Fix failure in "set_line_mode" call
  * Handle `BrokenPipeError`

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-02 08:52:16 -07:00
Leon Anavi
67b16c0c67 python3-parse: Upgrade 1.16.0 -> 1.17.0
Upgrade to release 1.17.0:

- Make left- and center-aligned search consume up to next space

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-02 08:52:11 -07:00
Leon Anavi
ae4d92b96e python3-paramiko: Upgrade 2.7.1 - 2.7.2
Upgrade to release 2.7.2:

- [Bug]: Fix incorrectly swapped order of p and q numbers when
  loading OpenSSH-format RSA private keys. At minimum this should
  address a slowdown when using such keys, and it also means
  Paramiko works with Cryptography 3.1 and above (which complains
  strenuously when this problem appears).
- [Bug]: Fix incorrect string formatting causing unhelpful error
  message annotation when using Kerberos/GSSAPI.
- [Support]: Remove leading whitespace from OpenSSH RSA test suite
  static key fixture, to conform better to spec.
- [Support]: Add missing test suite fixtures directory to
  MANIFEST.in, reinstating the ability to run Paramiko’s tests
  from an sdist tarball.
- [Support]: Update our CI to catch issues with sdist generation,
  installation and testing.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-02 08:52:05 -07:00