diff options
author | 2020-05-18 14:30:58 -0700 | |
---|---|---|
committer | 2020-05-18 14:30:58 -0700 | |
commit | 7852754fe571de2ecb0a8b9744c8774c71c06a47 (patch) | |
tree | d3d41930206f6e3d2e0a6689eed08932be47a7b1 /Python/setup.py | |
parent | e6fd97194345944c5805d4866265d6e51cfc82ab (diff) | |
download | WarpX-7852754fe571de2ecb0a8b9744c8774c71c06a47.tar.gz WarpX-7852754fe571de2ecb0a8b9744c8774c71c06a47.tar.zst WarpX-7852754fe571de2ecb0a8b9744c8774c71c06a47.zip |
Require Python 3.6+ (#1021)
* Added specification of the version picmistandard
* Set the requirement of Python version >= 3.6
* Add Python version requirement to the docs
* Add comment about Python version to docs
Diffstat (limited to '')
-rw-r--r-- | Python/setup.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Python/setup.py b/Python/setup.py index 1977a8ec9..7d892eec0 100644 --- a/Python/setup.py +++ b/Python/setup.py @@ -33,5 +33,6 @@ setup (name = 'pywarpx', package_dir = {'pywarpx':'pywarpx'}, description = """Wrapper of WarpX""", package_data = package_data, - install_requires=['numpy', 'picmistandard', 'periodictable'] + install_requires=['numpy', 'picmistandard==0.0.6', 'periodictable'], + python_requires = '>=3.6' ) |