blob: 5fc0501532109b66c0e3508c5a30f41fbd8889fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
cython>=0.29.11
setuptools>=58
setuptools_scm
wheel
numpy==1.19.4; platform_system == "Linux" and platform_machine == "aarch64" and python_version <= "3.9"
numpy==1.21.3; platform_system == "Linux" and platform_machine == "aarch64" and python_version > "3.9"
numpy==1.16.6; platform_system == "Linux" and platform_machine != "aarch64" and python_version < "3.9"
numpy==1.19.4; platform_system == "Linux" and platform_machine != "aarch64" and python_version == "3.9"
numpy==1.21.3; platform_system == "Linux" and platform_machine != "aarch64" and python_version > "3.9"
numpy==1.21.3; platform_system == "Darwin" and platform_machine == "arm64"
numpy==1.16.6; platform_system == "Darwin" and platform_machine != "arm64" and python_version < "3.8"
numpy==1.19.4; platform_system == "Darwin" and platform_machine != "arm64" and python_version >= "3.8" and python_version <= "3.9"
numpy==1.21.3; platform_system == "Darwin" and platform_machine != "arm64" and python_version > "3.9"
numpy==1.16.6; platform_system == "Windows" and python_version < "3.9"
numpy==1.19.4; platform_system == "Windows" and python_version == "3.9"
numpy==1.21.3; platform_system == "Windows" and python_version > "3.9"
|