diff options
Diffstat (limited to 'src/arrow/python/requirements-wheel-build.txt')
-rw-r--r-- | src/arrow/python/requirements-wheel-build.txt | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/arrow/python/requirements-wheel-build.txt b/src/arrow/python/requirements-wheel-build.txt new file mode 100644 index 000000000..5fc050153 --- /dev/null +++ b/src/arrow/python/requirements-wheel-build.txt @@ -0,0 +1,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" |