Skip to content

Commit f472100

Browse files
TomAugspurgersimonjayhawkins
authored andcommitted
Backport PR pandas-dev#34667 on branch 1.0.x (BLD: pyproject.toml for Py38)
1 parent 29edbab commit f472100

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

doc/source/whatsnew/v1.0.5.rst

Lines changed: 2 additions & 1 deletion
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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,12 @@ requires = [
77
"Cython>=0.29.13", # Note: sync with setup.py
88
"numpy==1.13.3; python_version=='3.6' and platform_system!='AIX'",
99
"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'",
1013
"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'",
1216
]
1317

1418
[tool.black]

0 commit comments

Comments
 (0)