Skip to content

Commit

Permalink
Remove oldest-supported-numpy workaround for Python 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
lpsinger committed Sep 7, 2022
1 parent d92c099 commit 6ff112f
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@
requires = ["setuptools",
"wheel",
# Require numpy>=1.20.3 on Windows due to https://github.com/numpy/numpy/pull/16468
"oldest-supported-numpy; python_version=='3.10' or platform_system!='Windows'",
"numpy==1.20.3; python_version<'3.10' and platform_system=='Windows'",
# FIXME: https://github.com/scipy/oldest-supported-numpy/pull/61 not yet released
"numpy==1.23.2; python_version=='3.11'"]
"oldest-supported-numpy; python_version>='3.10' or platform_system!='Windows'",
"numpy==1.20.3; python_version<'3.10' and platform_system=='Windows'"]

build-backend = 'setuptools.build_meta'

0 comments on commit 6ff112f

Please sign in to comment.