summaryrefslogtreecommitdiffstats
path: root/meta-python
Commit message (Collapse)AuthorAgeFilesLines
* python3-pymongo: upgrade 4.4.0 -> 4.4.1Wang Mingyu2023-07-201-1/+1
| | | | | | | | | | Changelog: =========== -Fixed a bug where pymongo would raise a ConfigurationError -Fixed a minor reference counting bug in the C extension (PYTHON-3798 2). Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pymisp: upgrade 2.4.172 -> 2.4.173Wang Mingyu2023-07-201-1/+1
| | | | | | | | | | | Changelog: ========== - Maybe fixing a CakePHP issue. - Use proper endpoint to unpublish event. - Feat: introduce setter for galaxies. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-protobuf: upgrade 4.23.3 -> 4.23.4Wang Mingyu2023-07-201-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-platformdirs: upgrade 3.8.0 -> 3.9.1Wang Mingyu2023-07-201-1/+1
| | | | | | | | | | Changelog: ========== -unix: Optionally create the opinionated log/ in user_log_dir() -BSD: provide a fallback for user_runtime_di Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-mock: upgrade 5.0.2 -> 5.1.0Wang Mingyu2023-07-201-1/+1
| | | | | | | | | | | | | | | Changelog: =========== -bpo-44185: :func:'unittest.mock.mock_open' will call the :func:'close' method of the file handle mock when it is exiting from the context manager. -gh-94924: :func:'unittest.mock.create_autospec' now properly returns coroutine functions compatible with :func:'inspect.iscoroutinefunction' -bpo-17013: Add ThreadingMock to :mod:'unittest.mock' that can be used to create Mock objects that can wait until they are called. -bpo-41768: :mod:'unittest.mock' speccing no longer calls class properties. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-google-auth: upgrade 2.21.0 -> 2.22.0Wang Mingyu2023-07-201-1/+1
| | | | | | | | | | | | | | | | Changelog: ============= Features ---------- Adding meta header for trust boundary Introduce compatibility with native namespace packages Bug Fixes ----------- Deprecate UserAccessTokenCredentials Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-google-api-python-client: upgrade 2.92.0 -> 2.93.0Wang Mingyu2023-07-201-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-gevent: upgrade 22.10.2 -> 23.7.0Wang Mingyu2023-07-201-1/+1
| | | | | | | | | | | | | | | | | | Changelog: ============ Features ---------- -Add preliminary support for Python 3.12, using greenlet 3.0a1. -Update the bundled c-ares version to 1.19.1. Bugfixes ------------ -Fix an edge case connecting a non-blocking SSLSocket that could result in an AttributeError. -Make gevent's FileObjectThread (mostly used on Windows) implement readinto cooperatively. -Work around an AttributeError during cyclic garbage collection when Python finalizers (__del__ and the like) attempt to use gevent APIs. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-frozenlist: upgrade 1.3.3 -> 1.4.0Wang Mingyu2023-07-201-1/+1
| | | | | | | | | | Changelog: ============ Removed an unused :py:data:'typing.Tuple' import Dropped Python 3.7 support. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-eth-utils: upgrade 2.1.1 -> 2.2.0Wang Mingyu2023-07-201-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-engineio: upgrade 4.4.1 -> 4.5.1Wang Mingyu2023-07-201-1/+1
| | | | | | | | | | | Changelog: ========== Restore support for old versions of eventlet #321 Configure eventlet's websocket max frame length #319 Remove old Python 2 syntax in super() calls Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-dnspython: upgrade 2.3.0 -> 2.4.0Wang Mingyu2023-07-201-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-click: upgrade 8.1.3 -> 8.1.5Wang Mingyu2023-07-202-46/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 0001-tests-Fix-test_bytes_args.patch removed since it's included in 8.1.5 Changelog: ========== -Fix an issue with type hints for @click.command(), @click.option(), and other decorators. Introduce typing tests. -Replace all typing.Dict occurrences to typing.MutableMapping for parameter hints. #2255 -Improve type hinting for decorators and give all generic types parameters. #2398 -Fix return value and type signature of shell_completion.add_completion_class function. #2421 -Bash version detection doesn’t fail on Windows. #2461 -Completion works if there is a dot (.) in the program name. #2166 -Improve type annotations for pyright type checker. #2268 -Improve responsiveness of click.clear(). #2284 -Improve command name detection when using Shiv or PEX. #2332 -Avoid showing empty lines if command help text is empty. #2368 -ZSH completion script works when loaded from fpath. #2344. -EOFError and KeyboardInterrupt tracebacks are not suppressed when standalone_mode is disabled. #2380 -@group.command does not fail if the group was created with a custom command_class. #2416 -multiple=True is allowed for flag options again and does not require setting default=(). #2246, #2292, #2295 -Make the decorators returned by @argument() and @option() reusable when the cls parameter is used. #2294 -Don’t fail when writing filenames to streams with strict errors. Replace invalid bytes with the replacement character -Remove unnecessary attempt to detect MSYS2 environment. #2355 -Remove outdated and unnecessary detection of App Engine environment. #2554 -echo() does not fail when no streams are attached, such as with pythonw on Windows. #2415 -Argument with expose_value=False do not cause completion to fail. #2336 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-charset-normalizer: upgrade 3.1.0 -> 3.2.0Wang Mingyu2023-07-201-1/+1
| | | | | | | | | | | | | | | | | | | | | | Changelog: ========== Changed --------- Typehint for function from_path no longer enforce PathLike as its first argument Minor improvement over the global detection reliability Added --------- Introduce function is_binary that relies on main capabilities, and optimized to detect binaries Propagate enable_fallback argument throughout from_bytes, from_path, and from_fp that allow a deeper control over the detection (default True) Explicit support for Python 3.12 Fixed ----------- Edge case detection failure where a file would contain 'very-long' camel cased word (Issue #289) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-path: upgrade 16.6.0 -> 16.7.1Wang Mingyu2023-07-201-2/+2
| | | | | | | | | | | | | License-Update: Remove unnecessary and incorrect copyright notice. Changelog: ============ Set stacklevel=2 in deprecation warning for .text. (#210) Added .permissions attribute. (#211) Require Python 3.8 or later. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-obd: upgrade 0.7.1 -> 0.7.2Wang Mingyu2023-07-201-3/+2
| | | | | | | | | | | | | | | License-Update: Add a common issue section and document the Bluetooth issue. Adds support for the Mode 9 PIDS, including VIN and CVN. Changelog: =========== Updated pint dependency for compatibility with python >= 3.10 Support for Mode 9 PIDs Added 1 second read-retry loop for unresponsive dongles Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pytest-asyncio: upgrade 0.16.0 -> 0.21.1Justin Bronder2023-07-172-14/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 0.21.1 - Output a proper error message when an invalid asyncio_mode is selected. - Extend warning message about unclosed event loops with additional possible cause. #531 - Previously, some tests reported "skipped" or "xfailed" as a result. Now all tests report a "success" result. 0.21.0 - Drop compatibility with pytest 6.1. Pytest-asyncio now depends on pytest 7.0 or newer. - pytest-asyncio cleans up any stale event loops when setting up and tearing down the event_loop fixture. This behavior has been deprecated and pytest-asyncio emits a DeprecationWarning when tearing down the event_loop fixture and current event loop has not been closed. 0.18.2 (22-03-03) - Fix asyncio auto mode not marking static methods. #295 - Fix a compatibility issue with Hypothesis 6.39.0. #302 0.18.1 (22-02-10) - Fixes a regression that prevented async fixtures from working in synchronous tests. #286 0.18.0 (22-02-07) - Raise a warning if @pytest.mark.asyncio is applied to non-async function. #275 - Support parametrized event_loop fixture. #278 0.17.2 (22-01-17) - Require typing-extensions on Python<3.8 only. #269 - Fix a regression in tests collection introduced by 0.17.1, the plugin works fine with non-python tests again. #267 0.17.1 (22-01-16) - Fixes a bug that prevents async Hypothesis tests from working without explicit asyncio marker when --asyncio-mode=auto is set. #258 - Fixed a bug that closes the default event loop if the loop doesn't exist #257 - Added type annotations. 0.17.0 (22-01-13) - [pytest-asyncio]{.title-ref} no longer alters existing event loop policies. #168, #188 - Drop support for Python 3.6 - Fixed an issue when pytest-asyncio was used in combination with [flaky]{.title-ref} or inherited asynchronous Hypothesis tests. #178 #231 - Added flaky to test dependencies - Added unused_udp_port and unused_udp_port_factory fixtures (similar to unused_tcp_port and unused_tcp_port_factory counterparts. #99 - Added the plugin modes: strict, auto, and legacy. See documentation for details. #125 - Correctly process KeyboardInterrupt during async fixture setup phase #219 License-Update: whitespace Signed-off-by: Justin Bronder <jsbronder@cold-front.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-asyncinotify: upgrade 3.0.1 -> 4.0.2Justin Bronder2023-07-171-2/+2
| | | | | | | | | | | | | | | | | | | | | | c5590c5 Switch from GitHub to gitlab 22b0ed7 make pass all mypy type checks abd15f8 add __weakref__ to inotify and watch 5e57e0b add slots to all classes f907237 restore support to 3.6 5269b9d improve documentation 2512aa3 Merge branch '16-add-timeout-for-the-sync-version-of-get-sync_get' into 'master' 5beff57 add sync_timeout c8f8653 fix readthedocs 97056b9 remove package rule faebfa9 move test after package a75f116 version bump 6b4921f rework docs 35716a4 rework docs c51d603 fix test for deprecations ddd987c switch to pyproject.toml, test against all supported python versions Signed-off-by: Justin Bronder <jsbronder@cold-front.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-bitarray: upgrade 2.7.3 -> 2.7.6Trevor Gamblin2023-07-171-1/+1
| | | | | | | Changelog: https://github.com/ilanschnell/bitarray/blob/master/CHANGE_LOG Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-bandit: add python3-rich to RDEPENDSTrevor Gamblin2023-07-171-1/+9
| | | | | | | bandit wasn't imported properly without the rich module, so add it. Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-bandit: upgrade 1.7.4 -> 1.7.5Trevor Gamblin2023-07-171-1/+1
| | | | | | | Changelog: https://github.com/PyCQA/bandit/releases/tag/1.7.5 Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-autobahn: upgrade 23.6.1 -> 23.6.2Trevor Gamblin2023-07-171-1/+1
| | | | | | | | | | | Changelog: https://github.com/crossbario/autobahn-python/blob/master/docs/changelog.rst Changes: - fix: use regular PyPI bitarray>=2.7.5 rather than from GitHub master Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-astroid: upgrade 2.15.5 -> 2.15.6Trevor Gamblin2023-07-171-1/+1
| | | | | | | | | | | | Changelog: https://github.com/pylint-dev/astroid/releases/tag/v2.15.6 Changes: - Harden get_module_part() against ".". - Avoid expensive list/tuple multiplication operations that would result in MemoryError. Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-arpeggio: upgrade 2.0.0 -> 2.0.2Trevor Gamblin2023-07-171-1/+1
| | | | | | | | | | | | | | | | Changelog: https://github.com/textX/Arpeggio/releases 2.0.2 (released: 2023-07-09) - fix: drop deprecated setup_requires and tests_require #116. Thanks @kloczek. 2.0.1 (released: 2023-07-09) - fix: replace \n with \\n in error reports for matches #99. Thanks @mettta and @stanislaw. Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-argcomplete: upgrade 3.1.0 -> 3.1.1Trevor Gamblin2023-07-171-1/+1
| | | | | | | | | | | | Changelog: https://github.com/kislyuk/argcomplete/blob/develop/Changes.rst Changes for v3.1.1 (2023-06-11) - Search through asdf shims - Use ` as escape character in PowerShell (#434) Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-sqlalchemy: upgrade 2.0.15 -> 2.0.19Trevor Gamblin2023-07-171-1/+1
| | | | | | | Changelog: https://docs.sqlalchemy.org/en/20/changelog/changelog_20.html Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-alembic: upgrade 1.10.4 -> 1.11.1Trevor Gamblin2023-07-171-1/+1
| | | | | | | | There are numerous changes between 1.10.4 and 1.11.1, including several bug fixes. Changelog: https://github.com/sqlalchemy/alembic/releases Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-requests-toolbelt: Fix ptest failures seen with urllib3 2.0Khem Raj2023-07-133-0/+2040
| | | | | | | | | | | | | | | | Currently we see ptest failures like below testseries | result_id : oeqa | runtime_meta-python-ptest-image-python3-requests-toolbelt_qemux86-64_20230713012809 ptestresult.python3-requests-toolbelt.tests/test_dump.py::TestDumpRealResponses::test_dump_all ptestresult.python3-requests-toolbelt.tests/test_dump.py::TestDumpRealResponses::test_dump_response ptestresult.python3-requests-toolbelt.tests/test_sessions.py::TestBasedSession::test_prepared_request_override_base ptestresult.python3-requests-toolbelt.tests/test_sessions.py::TestBasedSession::test_prepared_request_with_base ptestresult.python3-requests-toolbelt.tests/test_sessions.py::TestBasedSession::test_request_override_base ptestresult.python3-requests-toolbelt.tests/test_sessions.py::TestBasedSession::test_request_with_base These patches from a posted pull upstream fixes them Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-argh: upgrade 0.26.2 -> 0.28.1Tim Orling2023-07-092-14/+26
| | | | | | | | | | | | | | | | | * Switch inherit from setuptools3 to python_flit_core * Correct SUMMARY * Add DESCRIPTION * Add python3-argcomplete to RDEPENDS (found with poky/scripts/pythondeps) https://github.com/neithere/argh/blob/v0.28.1/CHANGES License-Update: use COPYING.LESSER, change to LGPL-3.0-or-later NOTE: Includes COPYING which is GPL-3.0 but README clearly states LGPL-3.0-or-later https://github.com/neithere/argh/blob/v0.28.1/README.rst#licensing Signed-off-by: Tim Orling <ticotimo@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-grpcio-tools: Fix build with muslKhem Raj2023-07-072-0/+38
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-grpcio: Fix build on muslKhem Raj2023-07-072-0/+43
| | | | | | | Use off_t instead of deprecated off64_t LFS interface makes it portable across musl and glibc Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-grpcio: Upgrade to 1.56.0Khem Raj2023-07-075-92/+27
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-grpcio-tools: Upgrade to 1.56.0Khem Raj2023-07-072-5/+5
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-zeroconf: upgrade 0.69.0 -> 0.70.0Wang Mingyu2023-07-071-1/+1
| | | | | | | | Changelog: Add support for sending to a specific addr and port with ServiceInfo.async_request and ServiceInfo.request Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-virtualenv: upgrade 20.23.0 -> 20.23.1Wang Mingyu2023-07-071-1/+1
| | | | | | | | | | | | | | | Changelog: ============ release 20.23.0 Bump pypa/gh-action-pypi-publish from 1.8.5 to 1.8.6 feat:update and simplify nushell activation Fix deprecation warning Replace unmaintained pytest-freezegun Update cli_interface.rst Add ruff, test latest OS and bump setuptools Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-tox: upgrade 4.6.0 -> 4.6.3Wang Mingyu2023-07-071-1/+1
| | | | | | | | | | | | Changelog: ============ Made issue template have less whitespace Docs link of env var subs section to set_env Removed duplicate text in bug report template Ensure get_requires* hook is called before prepare_metadata* Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-redis: upgrade 4.5.5 -> 4.6.0Wang Mingyu2023-07-071-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changelog: ========== Experimental Features ----------------------- Support JSON.MERGE command (#2761) Support JSON.MSET command (#2766) New Features ------------- Extract abstract async connection class (#2734) Add support for WAITAOF (#2760) Introduce OutOfMemoryError exception for Redis write command rejections due to OOM errors (#2778) Add WITHSCORE argument to ZRANK (#2758) Add support for sharded pubsub in sync client (#2762) Bug Fixes ----------- Fix dead weakref in sentinel connection causing ReferenceError (#2767) (#2771) Fix Key Error in parse_xinfo_stream (#2788) Remove unnecessary __del__ handlers (#2755) Added support for missing argument to SentinelManagedConnection.read_response() (#2756) Fixed resp3 dict parse response (#2757) Maintenance ------------- Fix type hint for retry_on_error in async cluster (#2804) Clean up documents and fix some redirects (#2801) Add unit tests for the connect method of all Redis connection classes (#2631) Docstring formatting fix (#2796) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pillow: upgrade 9.5.0 -> 10.0.0Wang Mingyu2023-07-071-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changelog: ========== Fixed deallocating mask images #7246 Added ImageFont.MAX_STRING_LENGTH #7244 Fix Windows build with pyproject.toml #7230 Do not close provided file handles with libtiff #7199 Convert to HSV if mode is HSV in getcolor() #7226 Added alpha_only argument to getbbox() #7123 Prioritise speed in _repr_png_ #7242 Do not use CFFI access by default on PyPy #7236 Limit size even if one dimension is zero in decompression bomb check #7235 Use --config-settings instead of deprecated --global-option #7171 Better C integer definitions #6645 Fixed finding dependencies on Cygwin #7175 Changed grabclipboard() to use PNG instead of JPG compression on macOS #7219 Added in_place argument to ImageOps.exif_transpose() #7092 Fixed calling putpalette() on L and LA images before load() #7187 Fixed saving TIFF multiframe images with LONG8 tag types #7078 Fixed combining single duration across duplicate APNG frames #7146 Remove temporary file when error is raised #7148 Do not use temporary file when grabbing clipboard on Linux #7200 If the clipboard fails to open on Windows, wait and try again #7141 Fixed saving multiple 1 mode frames to GIF #7181 Replaced absolute PIL import with relative import #7173 Replaced deprecated Py_FileSystemDefaultEncoding for Python >= 3.12 #7192 Improved wl-paste mimetype handling in ImageGrab #7094 Added _repr_jpeg_() for IPython display_jpeg #7135 Use "/sbin/ldconfig" if ldconfig is not found #7068 Prefer screenshots using XCB over gnome-screenshot #7143 Fixed joined corners for ImageDraw rounded_rectangle() odd dimensions #7151 Support reading signed 8-bit TIFF images #7111 Added width argument to ImageDraw regular_polygon #7132 Support I mode for ImageFilter.BuiltinFilter #7108 Raise error from stderr of Linux ImageGrab.grabclipboard() command #7112 Added unpacker from I;16B to I;16 #7125 Support float font sizes #7107 Use later value for duplicate xref entries in PdfParser #7102 Load before getting size in __getstate__ #7105 Fixed type handling for include and lib directories #7069 Remove deprecations for Pillow 10.0.0 #7059, #7080 Drop support for soon-EOL Python 3.7 #7058 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-joblib: upgrade 1.2.0 -> 1.3.1Wang Mingyu2023-07-071-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changelog: ============ -Fix compatibility with python 3.7 by vendor loky 3.4.1 which is compatible with this version. #1472 -Ensure native byte order for memmap arrays in joblib.load. #1353 -Add ability to change default Parallel backend in tests by setting the JOBLIB_TESTS_DEFAULT_PARALLEL_BACKEND environment variable. #1356 -Fix temporary folder creation in joblib.Parallel on Linux subsystems on Windows which do have /dev/shm but don't have the os.statvfs function #1353 -Drop runtime dependency on distutils. distutils is going away in Python 3.12 and is deprecated from Python 3.10 onwards. -A warning is raised when a pickling error occurs during caching operations. -Avoid (module, name) collisions when caching nested functions. -Add cache_validation_callback in :meth:'joblib.Memory.cache', to allow custom cache invalidation based on the metadata of the function call. #1149 -Add a return_as parameter for Parallel, that enables consuming results asynchronously. #1393, #1458 -Improve the behavior of joblib for n_jobs=1, with simplified tracebacks and more efficient running time. #1393 -Add the parallel_config context manager to allow for more fine-grained control over the backend configuration. -Add items_limit and age_limit in :meth:'joblib.Memory.reduce_size' to make it easy to limit the number of items and remove items that have not been accessed for a long time in the cache. #1200 -Deprecate bytes_limit in Memory as this is not automatically enforced, the limit can be directly passed to :meth:'joblib.Memory.reduce_size' which needs to be called to actually enforce the limit. #1447 -Vendor loky 3.4.0 which includes various fixes. #1422 -Various updates to the documentation and to benchmarking tools. -Move project metadata to pyproject.toml. #1382, #1433 -Add more tests to improve python nogil support. #1394, #1395 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-google-auth: upgrade 2.20.0 -> 2.21.0Wang Mingyu2023-07-071-1/+1
| | | | | | | | | | | | | | | Changelog: =========== Features --------- Add framework for BYOID metrics headers (#1332) (1a8f50c) Bug Fixes ---------- Pypy unit test build (#1335) (33e4263) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-google-api-python-client: upgrade 2.90.0 -> 2.92.0Wang Mingyu2023-07-071-1/+1
| | | | | | | | Changelog: https://github.com/googleapis/google-api-python-client/blob/main/CHANGELOG.md Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-elementpath: upgrade 4.1.3 -> 4.1.4Wang Mingyu2023-07-071-1/+1
| | | | | | | | | | Changelog: =========== Fix select of prefixed names (issue #68) Fix zero length xs:base64Binary (pull request #69) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-configargparse : upgrade 1.5.3 -> 1.5.5Wang Mingyu2023-07-071-1/+1
| | | | | | | | | Changelog: =========== fixed 'publish' step Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-aenum: upgrade 3.1.14 -> 3.1.15Wang Mingyu2023-07-071-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pyroute2: upgrade 0.5.19 -> 0.7.9Petr Gotthard2023-06-281-4/+5
| | | | | | | | | | | License-Update: The LICENSE file now explicitly says "GPL-2.0-or-later OR Apache-2.0". Changelog: https://github.com/svinota/pyroute2/blob/master/CHANGELOG.rst Signed-off-by: Petr Gotthard <petr.gotthard@advantech.cz> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-platformdirs: upgrade 3.6.0 -> 3.8.0Wang Mingyu2023-06-281-1/+1
| | | | | | | | Changelog: Add missing user media directory docs Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-zeroconf: upgrade 0.68.0 -> 0.69.0Wang Mingyu2023-06-271-1/+1
| | | | | | | | | | | Changelog: =========== Cython3 support (#1190) Reorder incoming data handler to reduce overhead (#1189) Reduce debug logging overhead by adding missing checks to datagram_received Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-sentry-sdk: upgrade 1.25.1 -> 1.26.0Wang Mingyu2023-06-271-1/+1
| | | | | | | | | | | | | | | | | | Changelog: ========= Tracing without performance (#2136) Load tracing information from environment (#2176) Auto-enable HTTPX integration if HTTPX installed (#2177) Support for SOCKS proxies (#1050) Wrap parse_url calls in capture_internal_exceptions (#2162) Run 2.7 tests in CI again (#2181) Crons: Do not support sub-minute cron intervals (#2172) Profile: Add function name to profiler frame cache (#2164) Dependencies: bump checkouts/data-schemas from 0ed3357 to 7fdde87 (#2165) Update changelog (#2163) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-requests-futures: upgrade 1.0.0 -> 1.0.1Wang Mingyu2023-06-271-2/+1
| | | | | | | | | | Changelog: =========== Add pytest.mark.network to test cases pyproject.toml config for black, isort, and pytest Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pyzstd: upgrade 0.15.7 -> 0.15.9Wang Mingyu2023-06-271-1/+1
| | | | | | | | | | | | Changelog: ========== Add SeekableZstdFile class, it's a subclass of ZstdFile, supports Zstandard Seekable Format. Add mode argument to ZstdFile.flush() method, now it can flush a zstd frame. Add read_size and write_size arguments to ZstdFile.__init__() method, can work with Network File Systems better. Optimize ZstdFile performance to C language level. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>