From 3cb030d8d1c2814eb4d36b6e473bc6ab320b50fd Mon Sep 17 00:00:00 2001 From: Nate Parsons Date: Mon, 11 Mar 2024 10:13:45 -0500 Subject: [PATCH 1/2] restrict tensorflow version --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 35e5f03..210dcfa 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -64,9 +64,9 @@ dev = [ "nlp_primitives[test]" ] complete = [ - "tensorflow >= 1.14.0; sys_platform!='darwin' or platform_machine!='arm64'", + "tensorflow >= 1.14.0, < 2.16.0; sys_platform!='darwin' or platform_machine!='arm64'", "tensorflow-metal >= 0.4.0; sys_platform=='darwin' and platform_machine=='arm64'", - "tensorflow-macos >= 2.8.0; sys_platform=='darwin' and platform_machine=='arm64'", + "tensorflow-macos >= 2.8.0, < 2.16.0; sys_platform=='darwin' and platform_machine=='arm64'", "tensorflow_hub >= 0.4.0, < 0.16.0", ] From 5495137c1dda0b3005106bfdaa6ea5213231b889 Mon Sep 17 00:00:00 2001 From: Nate Parsons Date: Mon, 11 Mar 2024 10:15:25 -0500 Subject: [PATCH 2/2] update release notes --- release_notes.rst | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/release_notes.rst b/release_notes.rst index 4f0b52c..7f8b573 100644 --- a/release_notes.rst +++ b/release_notes.rst @@ -2,15 +2,17 @@ Changelog ========= -.. Future Release - ============== +Future Release +============== * Enhancements * Fixes * Changes + * Temporarily restrict tensorflow version for complete install (:pr:`277`) * Documentation Changes * Testing Changes -.. Thanks to the following people for contributing to this release: + Thanks to the following people for contributing to this release: + :user:`thehomebrewnerd` v2.12.0 Feb 26, 2024 ====================