File tree 2 files changed +6
-3
lines changed
2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,8 @@ Fixed regressions
22
22
23
23
Bug fixes
24
24
~~~~~~~~~
25
- -
25
+
26
+ - Fixed building from source with Python 3.8 fetching the wrong version of NumPy (:issue: `34666 `)
26
27
-
27
28
28
29
Contributors
Original file line number Diff line number Diff line change @@ -6,9 +6,11 @@ requires = [
6
6
" wheel" ,
7
7
" Cython>=0.29.16" , # Note: sync with setup.py
8
8
" numpy==1.15.4; python_version=='3.6' and platform_system!='AIX'" ,
9
- " numpy==1.15.4; python_version>='3.7' and platform_system!='AIX'" ,
9
+ " numpy==1.15.4; python_version=='3.7' and platform_system!='AIX'" ,
10
+ " numpy==1.17.3; python_version>='3.8' and platform_system!='AIX'" ,
10
11
" numpy==1.16.0; python_version=='3.6' and platform_system=='AIX'" ,
11
- " numpy==1.16.0; python_version>='3.7' and platform_system=='AIX'" ,
12
+ " numpy==1.16.0; python_version=='3.7' and platform_system=='AIX'" ,
13
+ " numpy==1.17.3; python_version>='3.8' and platform_system=='AIX'" ,
12
14
]
13
15
14
16
[tool .black ]
You can’t perform that action at this time.
0 commit comments