From 3cefc969b392a461f82163cf5163b1b14d439708 Mon Sep 17 00:00:00 2001 From: Peter Sobot Date: Thu, 8 Aug 2024 12:59:20 -0400 Subject: [PATCH] Increase TF min version. --- setup.cfg | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/setup.cfg b/setup.cfg index 8a975a7..af71c08 100644 --- a/setup.cfg +++ b/setup.cfg @@ -36,7 +36,8 @@ include_package_data = True # which does not support complex datatypes. install_requires = tensorflow>=2.4,<2.16; sys_platform != 'darwin' or platform.machine != 'arm64' - tensorflow-macos>=2.4,<2.16; sys_platform == 'darwin' and platform.machine == 'arm64' + # TF 2.13 finally publishes ARM wheels: + tensorflow>=2.13,<2.16; sys_platform == 'darwin' and platform.machine == 'arm64' types-protobuf numpy typing_extensions @@ -61,7 +62,8 @@ test = numpy>=1.22 librosa>=0.9 tensorflow>=2.4,<2.16; sys_platform != 'darwin' or platform.machine != 'arm64' - tensorflow-macos>=2.4,<2.16; sys_platform == 'darwin' and platform.machine == 'arm64' + # TF 2.13 finally publishes ARM wheels: + tensorflow>=2.13,<2.16; sys_platform == 'darwin' and platform.machine == 'arm64' [bumpversion:file:realbook/__init__.py]