diff --git a/requirements.txt b/requirements.txt index 153dd1f8..3503f92c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -14,8 +14,9 @@ pyinstaller~=6.13.0 # bundles a Python application and all its dependencies i Pillow~=11.2.1 # Image generation # Efficient image serialization -numpy~=2.0.2; python_version < "3.10" # For Python 3.9, only numpy 2.0.x is supported as 2.1 only supports Python >=3.10 -numpy~=2.2.6; python_version >= "3.10" # For Python >=3.10, any numpy 2.x is fine +numpy~=2.0.2; python_version < "3.10" # For Python 3.9, only numpy 2.0.x is supported +numpy~=2.2.6; python_version == "3.10" # For Python 3.10, only numpy 2.2.x is supported +numpy~=2.3.0; python_version > "3.10" # For Python > 3.10, any numpy 2.x is fine # For Nvidia GPU on all platforms GPUtil~=1.4.0; python_version < "3.12"