Skip to content

Commit a62d863

Browse files
author
github-actions
committed
Release v2024.5
1 parent 6d9f5c5 commit a62d863

File tree

10 files changed

+52
-30
lines changed

10 files changed

+52
-30
lines changed

CHANGELOG.rst

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,54 @@
1+
2024.5 (2024-04-23)
2+
-------------------
3+
4+
New hooks
5+
~~~~~~~~~
6+
7+
* Add hook for ``backports`` package, to accommodate the ``pkgutil``-style
8+
``backports`` namespace package provided by ``backports.functools-lru-cache``
9+
and the latest release of ``backports.tarfile``. (`#735
10+
<https://github.com/pyinstaller/pyinstaller-hooks-contrib/issues/735>`_)
11+
* Add hook for ``opentelemetry`` that collects all entry-points with
12+
``opentelemetry_`` prefix. (`#725
13+
<https://github.com/pyinstaller/pyinstaller-hooks-contrib/issues/725>`_)
14+
* Add hook for ``skimage.metrics`` to account for lazy loading of the
15+
``skimage.metrics`` that was introduced in ``scikit-image`` 0.23.0. (`#723
16+
<https://github.com/pyinstaller/pyinstaller-hooks-contrib/issues/723>`_)
17+
* Add hook for ``xarray``, which ensures that metadata for ``numpy``
18+
(required by ``xarray``) is collected. (`#728
19+
<https://github.com/pyinstaller/pyinstaller-hooks-contrib/issues/728>`_)
20+
21+
22+
Updated hooks
23+
~~~~~~~~~~~~~
24+
25+
* (Windows) Update ``pyproj`` hook to explicitly collect DLLs and
26+
load-order file (if present) from ``pyproj.libs`` directory. This
27+
fixes ``DLL load failed while importing _network`` error when using
28+
Anaconda python 3.8 or 3.9, where ``delvewheel`` (used by ``pyproj``)
29+
needs to load DLLs via load-order file due to defunct
30+
``os.add_dll_directory`` function. (`#726
31+
<https://github.com/pyinstaller/pyinstaller-hooks-contrib/issues/726>`_)
32+
* Extend ``cryptography`` hook to collect OpenSSL modules (the
33+
``ossl-modules`` directory) when available. Add a run-time hook that
34+
overrides OpenSSL module search path by setting the ``OPENSSL_MODULES``
35+
environment variable to the bundled ``ossl-modules`` directory. This
36+
fixes ``RuntimeError: OpenSSL 3.0's legacy provider failed to load.``
37+
error when using ``cryptography`` with OpenSSL >= 3.0 builds that have
38+
modules enabled (e.g., most Linux distributions, msys/MinGW on Windows,
39+
and Homebrew on macOS). (`#724
40+
<https://github.com/pyinstaller/pyinstaller-hooks-contrib/issues/724>`_)
41+
* Suppress errors in ``gcloud`` hook that occur when the hook is triggered
42+
by the ``gcloud`` namespace package from ``gcloud-aio-*`` and
43+
``gcloud-rest-*``
44+
dists instead of the ``gcloud`` package from the ``gcloud`` dist. (`#731
45+
<https://github.com/pyinstaller/pyinstaller-hooks-contrib/issues/731>`_)
46+
* Update hook for ``tables`` (PyTables) to collect bundled blosc2
47+
shared library, if available. On Windows, explicitly collect DLLs and
48+
load-order file (if present) from ``tables.libs`` directory. (`#732
49+
<https://github.com/pyinstaller/pyinstaller-hooks-contrib/issues/732>`_)
50+
51+
152
2024.4 (2024-04-13)
253
-------------------
354

news/723.new.rst

Lines changed: 0 additions & 2 deletions
This file was deleted.

news/724.update.rst

Lines changed: 0 additions & 8 deletions
This file was deleted.

news/725.new.rst

Lines changed: 0 additions & 2 deletions
This file was deleted.

news/726.update.rst

Lines changed: 0 additions & 6 deletions
This file was deleted.

news/728.new.rst

Lines changed: 0 additions & 2 deletions
This file was deleted.

news/731.update.rst

Lines changed: 0 additions & 3 deletions
This file was deleted.

news/732.update.rst

Lines changed: 0 additions & 3 deletions
This file was deleted.

news/735.new.rst

Lines changed: 0 additions & 3 deletions
This file was deleted.

src/_pyinstaller_hooks_contrib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010
# SPDX-License-Identifier: GPL-2.0-or-later
1111
# ------------------------------------------------------------------
1212

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

0 commit comments

Comments
 (0)