diff options
author | 2021-01-31 17:14:34 -0800 | |
---|---|---|
committer | 2021-01-31 17:14:34 -0800 | |
commit | a3af3c479079a89f064cd60abd6567609ae3c54c (patch) | |
tree | 308135916d644aac8a5be87d3a3b9b4e07187d67 /setup.py | |
parent | 1b380901e6b7016db3e0e7349bda2c3e16de8b66 (diff) | |
download | WarpX-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.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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', |