Skip to content

Commit 08febd2

Browse files
BLD: pyproject.toml for Py38 (#34667)
1 parent a1191d6 commit 08febd2

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

doc/source/whatsnew/v1.0.5.rst

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ Fixed regressions
2222

2323
Bug fixes
2424
~~~~~~~~~
25-
-
25+
26+
- Fixed building from source with Python 3.8 fetching the wrong version of NumPy (:issue:`34666`)
2627
-
2728

2829
Contributors

pyproject.toml

+4-2
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,11 @@ requires = [
66
"wheel",
77
"Cython>=0.29.16", # Note: sync with setup.py
88
"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'",
1011
"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'",
1214
]
1315

1416
[tool.black]

0 commit comments

Comments
 (0)