diff --git a/.ci_support/environment-mpich.yml b/.ci_support/environment-mpich.yml index 407a1ef..7d29835 100644 --- a/.ci_support/environment-mpich.yml +++ b/.ci_support/environment-mpich.yml @@ -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 diff --git a/.ci_support/environment-openmpi.yml b/.ci_support/environment-openmpi.yml index 66fd7fe..236cbf8 100644 --- a/.ci_support/environment-openmpi.yml +++ b/.ci_support/environment-openmpi.yml @@ -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 diff --git a/binder/environment.yml b/binder/environment.yml index 580740e..5d8b803 100644 --- a/binder/environment.yml +++ b/binder/environment.yml @@ -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 diff --git a/tests/test_base.py b/tests/test_base.py index b1100f4..88ce7bd 100644 --- a/tests/test_base.py +++ b/tests/test_base.py @@ -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( diff --git a/tests/test_concurrent.py b/tests/test_concurrent.py index 38812a0..1ffca3c 100644 --- a/tests/test_concurrent.py +++ b/tests/test_concurrent.py @@ -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):