Skip to content

Commit

Permalink
Merge pull request #231 from pyiron/LAMMPS
Browse files Browse the repository at this point in the history
Update LAMMPS to 2024.06.27
  • Loading branch information
jan-janssen authored Jul 26, 2024
2 parents a44e1d0 + 4512cf8 commit 5eb91e1
Show file tree
Hide file tree
Showing 5 changed files with 8 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.02.07
- lammps =2024.06.27
- mpich
- numpy =1.26.4
- mpi4py =3.1.6
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.02.07
- lammps =2024.06.27
- openmpi
- numpy =1.26.4
- mpi4py =3.1.6
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.02.07
- lammps =2024.06.27
- mpi4py =3.1.6
- executorlib =0.0.1
- ase =3.23.0
Expand Down
4 changes: 3 additions & 1 deletion tests/test_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,9 @@ def test_cmdarg_options(self):
self.assertTrue(os.path.isfile(self.citation_file))

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

def test_extract_global(self):
self.assertEqual(
Expand Down
3 changes: 2 additions & 1 deletion tests/test_concurrent.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,8 @@ def test_cmdarg_options(self):

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

def test_extract_global(self):
Expand Down

0 comments on commit 5eb91e1

Please sign in to comment.