pyproject.toml 599 字节
Newer Older
O
Olli-Pekka Heinisuo 已提交
1
[build-system]
O
Olli-Pekka Heinisuo 已提交
2 3
requires = [
  "setuptools", "wheel", "scikit-build", "cmake", "pip",
4
  "numpy==1.13.3; python_version=='3.6' and platform_machine != 'aarch64'",
O
Olli-Pekka Heinisuo 已提交
5
  "numpy==1.19.3; python_version>='3.6' and sys_platform == 'linux' and platform_machine == 'aarch64'",
6
  "numpy==1.20.1; python_version>='3.6' and sys_platform == 'darwin' and platform_machine == 'aarch64'",
7 8 9
  "numpy==1.14.5; python_version=='3.7' and platform_machine != 'aarch64'",
  "numpy==1.17.3; python_version=='3.8' and platform_machine != 'aarch64'",
  "numpy==1.19.3; python_version>='3.9' and platform_machine != 'aarch64'"
O
Olli-Pekka Heinisuo 已提交
10
]