Skip to content

Commit

Permalink
Use oldest-supported-numpy in pyproject.toml and explicitly require P…
Browse files Browse the repository at this point in the history
…ython 3.6
  • Loading branch information
astrofrog authored and qwhelan committed May 22, 2020
1 parent 8d980f4 commit 7c685ae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
11 changes: 1 addition & 10 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,5 @@
requires = [
"setuptools",
"wheel",
"numpy==1.13.3; python_version=='2.7' and platform_system!='AIX'",
"numpy==1.13.3; python_version=='3.5' and platform_system!='AIX'",
"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.17.3; python_version>='3.8' and platform_system!='AIX'",
"numpy==1.16.0; python_version=='2.7' and platform_system=='AIX'",
"numpy==1.16.0; python_version=='3.5' 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.17.3; python_version>='3.8' and platform_system=='AIX'",
"oldest-supported-numpy"
]
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,7 @@ def get_long_description():
cmdclass=cmdclass,
setup_requires=["numpy"],
ext_modules=prepare_modules(),
python_requires=">=3.6",
zip_safe=False,
)

Expand Down

0 comments on commit 7c685ae

Please sign in to comment.