aboutsummaryrefslogtreecommitdiff
path: root/Python/setup.py
diff options
context:
space:
mode:
authorGravatar Camille Woicekowska <61211168+camille12225@users.noreply.github.com> 2023-06-15 10:31:17 -0700
committerGravatar GitHub <noreply@github.com> 2023-06-15 10:31:17 -0700
commitd9ac64ff9b0e1ac364dc5117bab6eabf178936d2 (patch)
tree51ed91d176b0d6d1f50bc6bb2d4e0f09aaddb95b /Python/setup.py
parente512bb2b169f938ec005da285a7fbd76ef2532d1 (diff)
downloadWarpX-d9ac64ff9b0e1ac364dc5117bab6eabf178936d2.tar.gz
WarpX-d9ac64ff9b0e1ac364dc5117bab6eabf178936d2.tar.zst
WarpX-d9ac64ff9b0e1ac364dc5117bab6eabf178936d2.zip
Added external field loading from file to picmi.py (#3945)
* Added external field loading from file to picmi.py * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Update Python/pywarpx/picmi.py Co-authored-by: Roelof Groenewald <40245517+roelof-groenewald@users.noreply.github.com> * Added documentation * Removed init, documentation * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Updated picmi version in requirements.txt * Updated picmi version in setup.py * Updated picmi version in requirements.txt * Updated name of call to picmi class * Adapted CI test for PICMI field loading from file * Added PICMI input script * Added .json file with new file name * fixed small errors * Fixed error in input script * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Removed old comments from code * fixed import, spacing in input script * fixed spacing * cleaned up input script * fixed typo * removed blocking factor * fixed name of test * correct ion species name * Added initial field to sim object --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Roelof Groenewald <40245517+roelof-groenewald@users.noreply.github.com>
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 f2b619bae..84aab16ac 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.24.0', 'periodictable'],
+ install_requires = ['numpy', 'picmistandard==0.25.0', 'periodictable'],
python_requires = '>=3.7',
zip_safe=False
)