Skip to content

Commit cdd245c

Browse files
Backport PR pandas-dev#34667 on branch 1.0.x (BLD: pyproject.toml for Py38) (pandas-dev#34786)
Co-authored-by: Tom Augspurger <[email protected]>
1 parent 98f0c3c commit cdd245c

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.13", # Note: sync with setup.py
88
"numpy==1.13.3; python_version=='3.6' and platform_system!='AIX'",
9-
"numpy==1.14.5; python_version>='3.7' 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'",
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)