Cover Python 3.12 (#933)

This commit is contained in:
Sebastian Raschka
2025-12-27 16:30:13 -06:00
committed by GitHub
parent 1cea30f9b1
commit d85ba93799

View File

@@ -10,10 +10,10 @@ readme = "README.md"
requires-python = ">=3.10,<3.14" requires-python = ">=3.10,<3.14"
dependencies = [ dependencies = [
'torch>=2.6; python_version >= "3.13"', 'torch>=2.6; python_version >= "3.13"',
"torch>=2.2.2,<2.6; sys_platform == 'darwin' and platform_machine == 'x86_64' and python_version < '3.12'", "torch>=2.2.2,<2.6; sys_platform == 'darwin' and platform_machine == 'x86_64' and python_version <= '3.12'",
"torch>=2.2.2; sys_platform == 'darwin' and platform_machine == 'arm64' and python_version < '3.12'", "torch>=2.2.2; sys_platform == 'darwin' and platform_machine == 'arm64' and python_version <= '3.12'",
"torch>=2.2.2; sys_platform == 'linux' and python_version < '3.12'", "torch>=2.2.2; sys_platform == 'linux' and python_version <= '3.12'",
"torch>=2.2.2; sys_platform == 'win32' and python_version < '3.12'", "torch>=2.2.2; sys_platform == 'win32' and python_version <= '3.12'",
"tensorflow>=2.16.2; sys_platform == 'darwin' and platform_machine == 'x86_64'", "tensorflow>=2.16.2; sys_platform == 'darwin' and platform_machine == 'x86_64'",
"tensorflow>=2.18.0; sys_platform == 'darwin' and platform_machine == 'arm64'", "tensorflow>=2.18.0; sys_platform == 'darwin' and platform_machine == 'arm64'",