diff options
author | 2020-05-19 15:25:51 -0700 | |
---|---|---|
committer | 2020-05-19 15:25:51 -0700 | |
commit | b4067afbd5f487683d6c0f1e5c8ac835d3373fb6 (patch) | |
tree | 364e7c72108e573c3681d40da86c250d533c4e77 /Python/setup.py | |
parent | 858d0a6d074e08564063634d418281c66d78b222 (diff) | |
download | WarpX-b4067afbd5f487683d6c0f1e5c8ac835d3373fb6.tar.gz WarpX-b4067afbd5f487683d6c0f1e5c8ac835d3373fb6.tar.zst WarpX-b4067afbd5f487683d6c0f1e5c8ac835d3373fb6.zip |
Bug fix in picmi field diagnostics with picmistandard.0.0.8 (#1032)
Co-authored-by: Remi Lehe <remi.lehe@normalesup.org>
Diffstat (limited to '')
-rw-r--r-- | Python/setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/setup.py b/Python/setup.py index 7d892eec0..8282ab3fc 100644 --- a/Python/setup.py +++ b/Python/setup.py @@ -33,6 +33,6 @@ setup (name = 'pywarpx', package_dir = {'pywarpx':'pywarpx'}, description = """Wrapper of WarpX""", package_data = package_data, - install_requires=['numpy', 'picmistandard==0.0.6', 'periodictable'], + install_requires=['numpy', 'picmistandard==0.0.8', 'periodictable'], python_requires = '>=3.6' ) |