aboutsummaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorGravatar Axel Huebl <axel.huebl@plasma.ninja> 2021-01-31 17:14:34 -0800
committerGravatar GitHub <noreply@github.com> 2021-01-31 17:14:34 -0800
commita3af3c479079a89f064cd60abd6567609ae3c54c (patch)
tree308135916d644aac8a5be87d3a3b9b4e07187d67 /setup.py
parent1b380901e6b7016db3e0e7349bda2c3e16de8b66 (diff)
downloadWarpX-a3af3c479079a89f064cd60abd6567609ae3c54c.tar.gz
WarpX-a3af3c479079a89f064cd60abd6567609ae3c54c.tar.zst
WarpX-a3af3c479079a89f064cd60abd6567609ae3c54c.zip
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.
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index b338a287e..736fa2a8d 100644
--- a/setup.py
+++ b/setup.py
@@ -199,7 +199,7 @@ setup(
# ]
#},
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',