Skip to content

Commit 06928e9

Browse files
author
github-actions
committed
Release v2025.0
1 parent 2c162e9 commit 06928e9

File tree

11 files changed

+48
-24
lines changed

11 files changed

+48
-24
lines changed

CHANGELOG.rst

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,50 @@
1+
2025.0 (2025-01-16)
2+
-------------------
3+
4+
New hooks
5+
~~~~~~~~~
6+
7+
* Add hook for ``fsspec`` to collect the package's submodules
8+
and ensure the protocol plugins are working. (`#856
9+
<https://github.com/pyinstaller/pyinstaller-hooks-contrib/issues/856>`_)
10+
* Add hook for ``intake`` to collect its plugins (registered via the
11+
``intake.drivers`` entry-point). (`#853
12+
<https://github.com/pyinstaller/pyinstaller-hooks-contrib/issues/853>`_)
13+
* Add hook for ``ruamel.yaml`` to collect its plugins, and ensure that
14+
plugins' ``__plug_in__`` modules are collected as source .py files
15+
(which is necessary for their discovery). (`#844
16+
<https://github.com/pyinstaller/pyinstaller-hooks-contrib/issues/844>`_)
17+
* Add hook for ``sam2`` (Segment Anything Model 2). (`#847
18+
<https://github.com/pyinstaller/pyinstaller-hooks-contrib/issues/847>`_)
19+
* Add hook for ``zarr`` to collect the package's metadata. (`#855
20+
<https://github.com/pyinstaller/pyinstaller-hooks-contrib/issues/855>`_)
21+
22+
23+
Updated hooks
24+
~~~~~~~~~~~~~
25+
26+
* Revise the search for OpenSSL shared library and ``ossl-modules`` directory
27+
in the ``cryptography`` hook, in order to mitigate issues with unrelated
28+
copies of OpenSSL ending up being pulled into the build. Most notably,
29+
the hook should not be searching for OpenSSL shared library when
30+
``cryptography`` PyPI wheel is installed, because those ship with
31+
extensions that are statically linked against OpenSSL. (`#846
32+
<https://github.com/pyinstaller/pyinstaller-hooks-contrib/issues/846>`_)
33+
* Rewrite ``pygraphviz`` hook to fix discovery and collection of ``graphviz``
34+
files under various Linux distributions, in Anaconda environments
35+
(Windows, Linux, and macOS), and msys2 environments (Windows). (`#849
36+
<https://github.com/pyinstaller/pyinstaller-hooks-contrib/issues/849>`_)
37+
* Update ``dask`` hook to collect template files from
38+
``dask/widgets/templates``
39+
directory; these file become mandatory when using ``dask.array`` and
40+
``jinja2`` is available. (`#852
41+
<https://github.com/pyinstaller/pyinstaller-hooks-contrib/issues/852>`_)
42+
* Update ``triton`` hook for compatibility with ``triton`` >= 3.0.0; the
43+
hook should now collect backend-specific modules and data files from
44+
``triton.backends``. (`#848
45+
<https://github.com/pyinstaller/pyinstaller-hooks-contrib/issues/848>`_)
46+
47+
148
2024.11 (2024-12-23)
249
--------------------
350

_pyinstaller_hooks_contrib/__init__.py

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

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

news/844.new.rst

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

news/846.update.rst

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

news/847.new.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

news/848.update.rst

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

news/849.update.rst

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

news/852.update.rst

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

news/853.new.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

news/855.new.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)