From 95be7185fbba1b98c5916df74a0381b6e109af76 Mon Sep 17 00:00:00 2001 From: Jan Janssen Date: Fri, 26 Jul 2024 07:07:29 +0200 Subject: [PATCH 1/7] Update environment-mpich.yml --- .ci_support/environment-mpich.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From abac8a40ae281cbfcf63ff92e8ccc32c609a4ced Mon Sep 17 00:00:00 2001 From: Jan Janssen Date: Fri, 26 Jul 2024 07:07:42 +0200 Subject: [PATCH 2/7] Update environment-openmpi.yml --- .ci_support/environment-openmpi.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From 7715dbd6591789fe57baa83cc1a49bd7d03a487a Mon Sep 17 00:00:00 2001 From: Jan Janssen Date: Fri, 26 Jul 2024 07:07:56 +0200 Subject: [PATCH 3/7] Update environment.yml --- binder/environment.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From 65290e9c7ed553542263d8a37670b0d5d17e8bc4 Mon Sep 17 00:00:00 2001 From: Jan Janssen Date: Fri, 26 Jul 2024 07:16:09 +0200 Subject: [PATCH 4/7] Update test_base.py --- tests/test_base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_base.py b/tests/test_base.py index b1100f4..9b45436 100644 --- a/tests/test_base.py +++ b/tests/test_base.py @@ -109,7 +109,7 @@ 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( From a544d5fef37b17aa1b8d8742c74ab4100af0b4e2 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Fri, 26 Jul 2024 05:16:15 +0000 Subject: [PATCH 5/7] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- tests/test_base.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/test_base.py b/tests/test_base.py index 9b45436..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, 20240627]) + self.assertTrue( + self.lmp.version in [20220623, 20230802, 20231121, 20240207, 20240627] + ) def test_extract_global(self): self.assertEqual( From 291185e8d600567d116bf75d7aa1b54510eb4eaa Mon Sep 17 00:00:00 2001 From: Jan Janssen Date: Fri, 26 Jul 2024 07:16:44 +0200 Subject: [PATCH 6/7] Update test_concurrent.py --- tests/test_concurrent.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tests/test_concurrent.py b/tests/test_concurrent.py index 38812a0..ca6b99f 100644 --- a/tests/test_concurrent.py +++ b/tests/test_concurrent.py @@ -94,9 +94,7 @@ def test_cmdarg_options(self): self.assertTrue(os.path.isfile(self.citation_file)) def test_version(self): - self.assertTrue( - self.lmp.version.result() in [20220623, 20230802, 20231121, 20240207] - ) + self.assertTrue(self.lmp.version.result() in [20220623, 20230802, 20231121, 20240207, 20240627]) def test_extract_global(self): self.assertEqual( From 4512cf812eb42dc34fa7d71150dd47dd6f5d00c3 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Fri, 26 Jul 2024 05:17:04 +0000 Subject: [PATCH 7/7] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- tests/test_concurrent.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/test_concurrent.py b/tests/test_concurrent.py index ca6b99f..1ffca3c 100644 --- a/tests/test_concurrent.py +++ b/tests/test_concurrent.py @@ -94,7 +94,10 @@ def test_cmdarg_options(self): self.assertTrue(os.path.isfile(self.citation_file)) def test_version(self): - self.assertTrue(self.lmp.version.result() in [20220623, 20230802, 20231121, 20240207, 20240627]) + self.assertTrue( + self.lmp.version.result() + in [20220623, 20230802, 20231121, 20240207, 20240627] + ) def test_extract_global(self): self.assertEqual(