From 7852754fe571de2ecb0a8b9744c8774c71c06a47 Mon Sep 17 00:00:00 2001 From: David Grote Date: Mon, 18 May 2020 14:30:58 -0700 Subject: 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 --- Python/setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Python/setup.py') 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' ) -- cgit v1.2.3