File tree 2 files changed +7
-2
lines changed 2 files changed +7
-2
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 @@ -7,8 +7,12 @@ requires = [
7
7
" Cython>=0.29.13" , # Note: sync with setup.py
8
8
" numpy==1.13.3; python_version=='3.6' and platform_system!='AIX'" ,
9
9
" numpy==1.14.5; python_version>='3.7' and platform_system!='AIX'" ,
10
+ " numpy==1.15.4; python_version=='3.6' and platform_system!='AIX'" ,
11
+ " numpy==1.15.4; python_version=='3.7' and platform_system!='AIX'" ,
12
+ " numpy==1.17.3; python_version>='3.8' and platform_system!='AIX'" ,
10
13
" 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'" ,
14
+ " numpy==1.16.0; python_version=='3.7' and platform_system=='AIX'" ,
15
+ " numpy==1.17.3; python_version>='3.8' and platform_system=='AIX'" ,
12
16
]
13
17
14
18
[tool .black ]
You can’t perform that action at this time.
0 commit comments