Skip to content

Commit a3af3c4

Browse files
authored
requirements.txt: fix overspecification (#1668)
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.
1 parent 1b38090 commit a3af3c4

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
numpy~=1.15.0
2-
periodictable~=1.5.3
1+
numpy~=1.15
2+
periodictable~=1.5
33
picmistandard==0.0.13
4-
scipy~=1.6.0 # picmistandard bug: https://github.com/picmi-standard/picmi/pull/34
4+
scipy~=1.6 # picmistandard bug: https://github.com/picmi-standard/picmi/pull/34
55
# optional, some used for testing:
66
# yt
77
# openpmd-api

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ def build_extension(self, ext):
199199
# ]
200200
#},
201201
extras_require={
202-
'all': ['openPMD-api~=0.13.0', 'openPMD-viewer~=1.1.0', 'yt~=3.6.1', 'matplotlib'],
202+
'all': ['openPMD-api~=0.13.0', 'openPMD-viewer~=1.1', 'yt~=3.6', 'matplotlib'],
203203
},
204204
# cmdclass={'test': PyTest},
205205
# platforms='any',

0 commit comments

Comments
 (0)