Skip to content

Commit

Permalink
Release v2024.5
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Apr 23, 2024
1 parent 6d9f5c5 commit a62d863
Show file tree
Hide file tree
Showing 10 changed files with 52 additions and 30 deletions.
51 changes: 51 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,54 @@
2024.5 (2024-04-23)
-------------------

New hooks
~~~~~~~~~

* Add hook for ``backports`` package, to accommodate the ``pkgutil``-style
``backports`` namespace package provided by ``backports.functools-lru-cache``
and the latest release of ``backports.tarfile``. (`#735
<https://github.com/pyinstaller/pyinstaller-hooks-contrib/issues/735>`_)
* Add hook for ``opentelemetry`` that collects all entry-points with
``opentelemetry_`` prefix. (`#725
<https://github.com/pyinstaller/pyinstaller-hooks-contrib/issues/725>`_)
* Add hook for ``skimage.metrics`` to account for lazy loading of the
``skimage.metrics`` that was introduced in ``scikit-image`` 0.23.0. (`#723
<https://github.com/pyinstaller/pyinstaller-hooks-contrib/issues/723>`_)
* Add hook for ``xarray``, which ensures that metadata for ``numpy``
(required by ``xarray``) is collected. (`#728
<https://github.com/pyinstaller/pyinstaller-hooks-contrib/issues/728>`_)


Updated hooks
~~~~~~~~~~~~~

* (Windows) Update ``pyproj`` hook to explicitly collect DLLs and
load-order file (if present) from ``pyproj.libs`` directory. This
fixes ``DLL load failed while importing _network`` error when using
Anaconda python 3.8 or 3.9, where ``delvewheel`` (used by ``pyproj``)
needs to load DLLs via load-order file due to defunct
``os.add_dll_directory`` function. (`#726
<https://github.com/pyinstaller/pyinstaller-hooks-contrib/issues/726>`_)
* Extend ``cryptography`` hook to collect OpenSSL modules (the
``ossl-modules`` directory) when available. Add a run-time hook that
overrides OpenSSL module search path by setting the ``OPENSSL_MODULES``
environment variable to the bundled ``ossl-modules`` directory. This
fixes ``RuntimeError: OpenSSL 3.0's legacy provider failed to load.``
error when using ``cryptography`` with OpenSSL >= 3.0 builds that have
modules enabled (e.g., most Linux distributions, msys/MinGW on Windows,
and Homebrew on macOS). (`#724
<https://github.com/pyinstaller/pyinstaller-hooks-contrib/issues/724>`_)
* Suppress errors in ``gcloud`` hook that occur when the hook is triggered
by the ``gcloud`` namespace package from ``gcloud-aio-*`` and
``gcloud-rest-*``
dists instead of the ``gcloud`` package from the ``gcloud`` dist. (`#731
<https://github.com/pyinstaller/pyinstaller-hooks-contrib/issues/731>`_)
* Update hook for ``tables`` (PyTables) to collect bundled blosc2
shared library, if available. On Windows, explicitly collect DLLs and
load-order file (if present) from ``tables.libs`` directory. (`#732
<https://github.com/pyinstaller/pyinstaller-hooks-contrib/issues/732>`_)


2024.4 (2024-04-13)
-------------------

Expand Down
2 changes: 0 additions & 2 deletions news/723.new.rst

This file was deleted.

8 changes: 0 additions & 8 deletions news/724.update.rst

This file was deleted.

2 changes: 0 additions & 2 deletions news/725.new.rst

This file was deleted.

6 changes: 0 additions & 6 deletions news/726.update.rst

This file was deleted.

2 changes: 0 additions & 2 deletions news/728.new.rst

This file was deleted.

3 changes: 0 additions & 3 deletions news/731.update.rst

This file was deleted.

3 changes: 0 additions & 3 deletions news/732.update.rst

This file was deleted.

3 changes: 0 additions & 3 deletions news/735.new.rst

This file was deleted.

2 changes: 1 addition & 1 deletion src/_pyinstaller_hooks_contrib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
# SPDX-License-Identifier: GPL-2.0-or-later
# ------------------------------------------------------------------

__version__ = '2024.5'
__version__ = '2024.6'
__maintainer__ = 'Legorooj, bwoodsend'
__uri__ = 'https://github.com/pyinstaller/pyinstaller-hooks-contrib'

0 comments on commit a62d863

Please sign in to comment.