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.py2
2 files changed, 2 insertions, 1 deletions
diff --git a/Python/pywarpx/picmi.py b/Python/pywarpx/picmi.py
index 36dc1d0c7..90d4a256f 100644
--- a/Python/pywarpx/picmi.py
+++ b/Python/pywarpx/picmi.py
@@ -23,6 +23,7 @@ picmistandard.register_codename(codename)
# dictionary to map field boundary conditions from picmistandard to WarpX
BC_map = {
'open':'pml', 'dirichlet':'pec', 'periodic':'periodic', 'damped':'damped',
+ 'absorbing_silver_mueller':'absorbing_silver_mueller',
'neumann':'neumann', 'none':'none', None:'none'
}
diff --git a/Python/setup.py b/Python/setup.py
index 16983392f..4e788b365 100644
--- a/Python/setup.py
+++ b/Python/setup.py
@@ -59,7 +59,7 @@ setup(name = 'pywarpx',
package_dir = {'pywarpx': 'pywarpx'},
description = """Wrapper of WarpX""",
package_data = package_data,
- install_requires = ['numpy', 'picmistandard==0.0.22', 'periodictable'],
+ install_requires = ['numpy', 'picmistandard==0.23.2', 'periodictable'],
python_requires = '>=3.7',
zip_safe=False
)