aboutsummaryrefslogtreecommitdiff
path: root/Python
diff options
context:
space:
mode:
Diffstat (limited to 'Python')
-rw-r--r--Python/pywarpx/picmi.py1
-rw-r--r--Python/setup.py4
2 files changed, 3 insertions, 2 deletions
diff --git a/Python/pywarpx/picmi.py b/Python/pywarpx/picmi.py
index c97be09e8..1c5d9f373 100644
--- a/Python/pywarpx/picmi.py
+++ b/Python/pywarpx/picmi.py
@@ -28,6 +28,7 @@ class constants:
m_p = 1.67262192369e-27
hbar = 1.054571817e-34
+picmistandard.register_constants(constants)
class Species(picmistandard.PICMI_Species):
def init(self, kw):
diff --git a/Python/setup.py b/Python/setup.py
index 75dceeeb6..fe06d66f8 100644
--- a/Python/setup.py
+++ b/Python/setup.py
@@ -54,12 +54,12 @@ else:
package_data = {}
setup(name = 'pywarpx',
- version = '20.12',
+ version = '21.02',
packages = ['pywarpx'],
package_dir = {'pywarpx': 'pywarpx'},
description = """Wrapper of WarpX""",
package_data = package_data,
- install_requires = ['numpy', 'picmistandard==0.0.13', 'periodictable'],
+ install_requires = ['numpy', 'picmistandard==0.0.14', 'periodictable'],
python_requires = '>=3.6',
zip_safe=False
)