WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Commit a54dac3

Browse files
Update LAMMPS to 2024.08.29 (#281)
* 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>
1 parent 65ba329 commit a54dac3

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

.ci_support/environment-mpich.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ channels:
22
- conda-forge
33
dependencies:
44
- coverage
5-
- lammps =2024.06.27=*_mpi_mpich_*
5+
- lammps =2024.08.29=*_mpi_mpich_*
66
- mpich =4.2.3
77
- numpy =1.26.4
88
- mpi4py =4.0.1

.ci_support/environment-openmpi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ channels:
22
- conda-forge
33
dependencies:
44
- coverage
5-
- lammps =2024.06.27=*_mpi_openmpi_*
5+
- lammps =2024.08.29=*_mpi_openmpi_*
66
- openmpi =5.0.5
77
- numpy =1.26.4
88
- mpi4py =4.0.1

binder/environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ channels:
33
dependencies:
44
- openmpi
55
- numpy =1.26.4
6-
- lammps =2024.06.27
6+
- lammps =2024.08.29
77
- mpi4py =4.0.1
88
- executorlib =0.0.4
99
- ase =3.24.0

tests/test_base.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,8 @@ def test_cmdarg_options(self):
110110

111111
def test_version(self):
112112
self.assertTrue(
113-
self.lmp.version in [20220623, 20230802, 20231121, 20240207, 20240627]
113+
self.lmp.version
114+
in [20220623, 20230802, 20231121, 20240207, 20240627, 20240829]
114115
)
115116

116117
def test_extract_global(self):

tests/test_concurrent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ def test_cmdarg_options(self):
9696
def test_version(self):
9797
self.assertTrue(
9898
self.lmp.version.result()
99-
in [20220623, 20230802, 20231121, 20240207, 20240627]
99+
in [20220623, 20230802, 20231121, 20240207, 20240627, 20240829]
100100
)
101101

102102
def test_extract_global(self):

0 commit comments

Comments
 (0)