Skip to content

Commit

Permalink
MAINT: Fix numpy req
Browse files Browse the repository at this point in the history
  • Loading branch information
bashtage committed Jul 18, 2022
1 parent ad90452 commit be92b9b
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,7 @@
except ImportError:
raise ImportError("tempita required to install, use pip install tempita")

with open("requirements.txt") as f:
setup_required = f.read().splitlines()
install_required = [pkg for pkg in setup_required if "numpy" in pkg]
install_required = ["numpy >= 1.17"]

CYTHON_COVERAGE = os.environ.get("RANDOMGEN_CYTHON_COVERAGE", "0") in (
"true",
Expand Down Expand Up @@ -386,6 +384,5 @@ def is_pure(self):
],
zip_safe=False,
install_requires=install_required,
setup_requires=setup_required,
python_requires=">=3.6",
)

0 comments on commit be92b9b

Please sign in to comment.