aboutsummaryrefslogtreecommitdiff
path: root/Python/setup.py
diff options
context:
space:
mode:
authorGravatar Axel Huebl <axel.huebl@plasma.ninja> 2023-08-14 10:40:05 -0700
committerGravatar GitHub <noreply@github.com> 2023-08-14 17:40:05 +0000
commit721181539fb4f074d11b878e448202178bee87b2 (patch)
tree20823de1b220e36b5047bc8d2346eeb990861163 /Python/setup.py
parent55d463cba181504a6369cb9cd19f8f63f78c8075 (diff)
downloadWarpX-721181539fb4f074d11b878e448202178bee87b2.tar.gz
WarpX-721181539fb4f074d11b878e448202178bee87b2.tar.zst
WarpX-721181539fb4f074d11b878e448202178bee87b2.zip
Python 3.8+ (#4173)
Python 3.7 went EOL last month. Time to bump up our supported versions to 3.8+ as well.
Diffstat (limited to 'Python/setup.py')
-rw-r--r--Python/setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/setup.py b/Python/setup.py
index 2a35516db..60109d7a9 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.26.0', 'periodictable'],
- python_requires = '>=3.7',
+ python_requires = '>=3.8',
zip_safe=False
)