Skip to content

Commit

Permalink
Backport PR #34667 on branch 1.0.x (BLD: pyproject.toml for Py38) (#3…
Browse files Browse the repository at this point in the history
…4786)

Co-authored-by: Tom Augspurger <TomAugspurger@users.noreply.github.com>
  • Loading branch information
simonjayhawkins and TomAugspurger authored Jun 15, 2020
1 parent 98f0c3c commit cdd245c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion doc/source/whatsnew/v1.0.5.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ Fixed regressions

Bug fixes
~~~~~~~~~
-

- Fixed building from source with Python 3.8 fetching the wrong version of NumPy (:issue:`34666`)
-

Contributors
Expand Down
6 changes: 4 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,11 @@ requires = [
"wheel",
"Cython>=0.29.13", # Note: sync with setup.py
"numpy==1.13.3; python_version=='3.6' and platform_system!='AIX'",
"numpy==1.14.5; python_version>='3.7' and platform_system!='AIX'",
"numpy==1.14.5; python_version=='3.7' and platform_system!='AIX'",
"numpy==1.17.3; python_version>='3.8' and platform_system!='AIX'",
"numpy==1.16.0; python_version=='3.6' and platform_system=='AIX'",
"numpy==1.16.0; python_version>='3.7' and platform_system=='AIX'",
"numpy==1.16.0; python_version=='3.7' and platform_system=='AIX'",
"numpy==1.17.3; python_version>='3.8' and platform_system=='AIX'",
]

[tool.black]
Expand Down

0 comments on commit cdd245c

Please sign in to comment.