@@ -5,26 +5,11 @@ requires = [
5
5
" wheel" ,
6
6
" Cython>=0.28.5" ,
7
7
8
- # PyPy needs numpy >= 1.14.0
9
- # platform_python_implementation!='CPython' not needed >= Python 3.7 which is numpy 1.14.5
10
- " numpy==1.13.3; python_version=='3.6' and platform_machine!='aarch64' and platform_system!='AIX' and platform_python_implementation=='CPython'" ,
11
- " numpy==1.14.0; python_version=='3.6' and platform_machine!='aarch64' and platform_system!='AIX' and platform_python_implementation!='CPython'" ,
12
-
13
- # AIX needs numpy >= 1.16.0
14
- # platform_system!='AIX' not needed >= Python 3.8 which is numpy 1.17.3
15
- " numpy==1.16.0; python_version=='3.6' and platform_machine!='aarch64' and platform_system=='AIX'" ,
16
- " numpy==1.16.0; python_version=='3.7' and platform_machine!='aarch64' and platform_system=='AIX'" ,
17
-
18
- # ARM needs numpy >= 1.19.0
19
- # platform_machine!='aarch64' not needed >= Python 3.9 which is numpy 1.19.3
20
- " numpy==1.19.0; python_version=='3.6' and platform_machine=='aarch64'" ,
21
- " numpy==1.19.0; python_version=='3.7' and platform_machine=='aarch64'" ,
22
- " numpy==1.19.0; python_version=='3.8' and platform_machine=='aarch64'" ,
23
-
24
- # default numpy requirements
25
- " numpy==1.14.5; python_version=='3.7' and platform_machine!='aarch64' and platform_system!='AIX'" ,
26
- " numpy==1.17.3; python_version=='3.8' and platform_machine!='aarch64'" ,
27
- " numpy==1.19.3; python_version=='3.9'" ,
8
+ # use oldest-supported-numpy which provides the oldest numpy version with
9
+ # wheels on PyPI
10
+ #
11
+ # see: https://github.com/scipy/oldest-supported-numpy/blob/master/setup.cfg
12
+ " oldest-supported-numpy" ,
28
13
29
14
" scipy>=0.19.1" ,
30
15
]
0 commit comments