Skip to content

Commit

Permalink
ENH: Relax numpy install requirement version
Browse files Browse the repository at this point in the history
Relax `numpy` install requirement version: require any version above a
minimum version. Any version installed through the requirements file
should be enough for the package to work as expected.
  • Loading branch information
jhlegarreta committed Oct 6, 2023
1 parent 2766202 commit 8224583
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
external_dependencies.append(dependency)


setup_requires = ['numpy==1.20.*']
setup_requires = ['numpy>=1.20.0']
setup(
name='whitematteranalysis',
version='0.3.0',
Expand Down

0 comments on commit 8224583

Please sign in to comment.