diff options
author | 2022-08-29 11:15:38 -0700 | |
---|---|---|
committer | 2022-08-29 11:15:38 -0700 | |
commit | 8f43825cda3ba4e3f85a0d868d0d0673970242a5 (patch) | |
tree | 383aceb874d5753ca68bcba054d504266b4536e5 /Python/setup.py | |
parent | 052fde57cdf88bae83e5f5943eaeb845a73bbc35 (diff) | |
download | WarpX-8f43825cda3ba4e3f85a0d868d0d0673970242a5.tar.gz WarpX-8f43825cda3ba4e3f85a0d868d0d0673970242a5.tar.zst WarpX-8f43825cda3ba4e3f85a0d868d0d0673970242a5.zip |
Python: 3.7+ (#3342)
* Python: 3.7+
Python 3.6 is now end-of-life. Bump support to 3.7+.
* CUDA CI: Python3 Update
Diffstat (limited to 'Python/setup.py')
-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 0dd904c74..2db24d0bb 100644 --- a/Python/setup.py +++ b/Python/setup.py @@ -60,6 +60,6 @@ setup(name = 'pywarpx', description = """Wrapper of WarpX""", package_data = package_data, install_requires = ['numpy', 'picmistandard==0.0.19', 'periodictable'], - python_requires = '>=3.6', + python_requires = '>=3.7', zip_safe=False ) |