From 8e0ea4d2e9d18fbc5355f5853ae40e13fb154a78 Mon Sep 17 00:00:00 2001 From: github-actions Date: Sat, 9 Mar 2024 19:52:31 +0000 Subject: [PATCH] Release v2024.3 --- CHANGELOG.rst | 13 +++++++++++++ news/712.update.rst | 4 ---- src/_pyinstaller_hooks_contrib/__init__.py | 2 +- 3 files changed, 14 insertions(+), 5 deletions(-) delete mode 100644 news/712.update.rst diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 7462c89cc..db0bc7c74 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,16 @@ +2024.3 (2024-03-09) +------------------- + +Updated hooks +~~~~~~~~~~~~~ + +* Update ``torch`` hook to add support for MKL-enabled ``torch`` builds + on Windows (e.g., the nightly ``2.3.0.dev20240308+cpu`` build). The hook + now attempts to discover and collect DLLs from MKL and its dependencies + (``mkl``, ``tbb``, ``intel-openmp``). (`#712 + `_) + + 2024.2 (2024-02-29) ------------------- diff --git a/news/712.update.rst b/news/712.update.rst deleted file mode 100644 index 208ca2c5f..000000000 --- a/news/712.update.rst +++ /dev/null @@ -1,4 +0,0 @@ -Update ``torch`` hook to add support for MKL-enabled ``torch`` builds -on Windows (e.g., the nightly ``2.3.0.dev20240308+cpu`` build). The hook -now attempts to discover and collect DLLs from MKL and its dependencies -(``mkl``, ``tbb``, ``intel-openmp``). \ No newline at end of file diff --git a/src/_pyinstaller_hooks_contrib/__init__.py b/src/_pyinstaller_hooks_contrib/__init__.py index 43ae303a0..74d686767 100644 --- a/src/_pyinstaller_hooks_contrib/__init__.py +++ b/src/_pyinstaller_hooks_contrib/__init__.py @@ -10,6 +10,6 @@ # SPDX-License-Identifier: GPL-2.0-or-later # ------------------------------------------------------------------ -__version__ = '2024.3' +__version__ = '2024.4' __maintainer__ = 'Legorooj, bwoodsend' __uri__ = 'https://github.com/pyinstaller/pyinstaller-hooks-contrib'