Skip to content

Commit

Permalink
requirements.txt: fix overspecification
Browse files Browse the repository at this point in the history
I accidentally added the patch-level for version-compatible matching

This removes the patch-level for `~=` matching for the packages that
have a >=1 major version already.
  • Loading branch information
ax3l committed Feb 1, 2021
1 parent 1b38090 commit bcfa305
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
numpy~=1.15.0
periodictable~=1.5.3
numpy~=1.15
periodictable~=1.5
picmistandard==0.0.13
scipy~=1.6.0 # picmistandard bug: https://github.com/picmi-standard/picmi/pull/34
scipy~=1.6 # picmistandard bug: https://github.com/picmi-standard/picmi/pull/34
# optional, some used for testing:
# yt
# openpmd-api
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ def build_extension(self, ext):
# ]
#},
extras_require={
'all': ['openPMD-api~=0.13.0', 'openPMD-viewer~=1.1.0', 'yt~=3.6.1', 'matplotlib'],
'all': ['openPMD-api~=0.13.0', 'openPMD-viewer~=1.1', 'yt~=3.6', 'matplotlib'],
},
# cmdclass={'test': PyTest},
# platforms='any',
Expand Down

0 comments on commit bcfa305

Please sign in to comment.