File tree Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Original file line number Diff line number Diff line change 1
1
[build-system ]
2
2
# build with the oldest numpy that has pre-build wheels for Py3.7 on PyPi
3
- requires = [" setuptools" , " wheel" , " cython>=0.28" , " numpy==1.14.5" ]
3
+ requires = [
4
+ " setuptools" ,
5
+ " wheel" ,
6
+ " cython>=0.28" ,
7
+ " numpy==1.14.5; python_version=='3.5' and platform_system!='AIX'" ,
8
+ " numpy==1.14.5; python_version=='3.6' and platform_system!='AIX'" ,
9
+ " numpy==1.14.5; python_version=='3.7' and platform_system!='AIX'" ,
10
+ " numpy==1.17.3; python_version>='3.8' and platform_system!='AIX'" ,
11
+ # Minimum supported numpy 1.16 for AIX
12
+ # see https://github.com/scipy/scipy/pull/10431
13
+ " numpy==1.16.0; python_version=='3.5' and platform_system!='AIX'" ,
14
+ " numpy==1.16.0; python_version=='3.6' and platform_system=='AIX'" ,
15
+ " numpy==1.16.0; python_version=='3.7' and platform_system=='AIX'" ,
16
+ " numpy==1.17.3; python_version>='3.8' and platform_system=='AIX'" ,
17
+ ]
4
18
5
19
[tool .black ]
6
20
line-length = 79
You can’t perform that action at this time.
0 commit comments