Skip to content

Commit

Permalink
Update LAMMPS to 2024.08.29 (#281)
Browse files Browse the repository at this point in the history
* Update environment-mpich.yml

* Update environment-openmpi.yml

* Update environment.yml

* Update test_concurrent.py

* Update test_base.py

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  • Loading branch information
jan-janssen and pre-commit-ci[bot] authored Jan 8, 2025
1 parent 65ba329 commit a54dac3
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .ci_support/environment-mpich.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ channels:
- conda-forge
dependencies:
- coverage
- lammps =2024.06.27=*_mpi_mpich_*
- lammps =2024.08.29=*_mpi_mpich_*
- mpich =4.2.3
- numpy =1.26.4
- mpi4py =4.0.1
Expand Down
2 changes: 1 addition & 1 deletion .ci_support/environment-openmpi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ channels:
- conda-forge
dependencies:
- coverage
- lammps =2024.06.27=*_mpi_openmpi_*
- lammps =2024.08.29=*_mpi_openmpi_*
- openmpi =5.0.5
- numpy =1.26.4
- mpi4py =4.0.1
Expand Down
2 changes: 1 addition & 1 deletion binder/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ channels:
dependencies:
- openmpi
- numpy =1.26.4
- lammps =2024.06.27
- lammps =2024.08.29
- mpi4py =4.0.1
- executorlib =0.0.4
- ase =3.24.0
Expand Down
3 changes: 2 additions & 1 deletion tests/test_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,8 @@ def test_cmdarg_options(self):

def test_version(self):
self.assertTrue(
self.lmp.version in [20220623, 20230802, 20231121, 20240207, 20240627]
self.lmp.version
in [20220623, 20230802, 20231121, 20240207, 20240627, 20240829]
)

def test_extract_global(self):
Expand Down
2 changes: 1 addition & 1 deletion tests/test_concurrent.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def test_cmdarg_options(self):
def test_version(self):
self.assertTrue(
self.lmp.version.result()
in [20220623, 20230802, 20231121, 20240207, 20240627]
in [20220623, 20230802, 20231121, 20240207, 20240627, 20240829]
)

def test_extract_global(self):
Expand Down

0 comments on commit a54dac3

Please sign in to comment.