forked from alkaline-ml/pmdarima
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
20 lines (20 loc) · 973 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[build-system]
requires = [
"numpy==1.21.2; python_version < '3.10'",
"numpy==1.21.6; python_version == '3.10' and platform_system != 'Windows'",
"numpy==1.22.3; python_version == '3.10' and platform_system == 'Windows'",
"numpy==1.23.2; python_version == '3.11'",
"numpy==1.26.0; python_version == '3.12'",
"scipy==1.3.2; python_version <= '3.8' and platform_machine != 'aarch64'",
"scipy==1.5.3; python_version <= '3.8' and platform_machine == 'aarch64'",
"scipy==1.5.4; python_version == '3.9'",
"scipy==1.7.2; python_version == '3.10'",
"scipy==1.9.3; python_version == '3.11'",
"scipy==1.11.2; python_version == '3.12'",
"statsmodels==0.13.2; python_version <= '3.10'",
"statsmodels==0.13.3; python_version == '3.11'",
"statsmodels==0.14.0; python_version == '3.12'",
"cython>=0.29,!=0.29.18,!=0.29.31",
"setuptools",
]
build-backend = "setuptools.build_meta:__legacy__" # TODO: Don't use legacy backend