Skip to content

Commit e73cba9

Browse files
authored
Merge pull request #173 from pyiron/dependabot/pip/numpy-1.26.4
Bump numpy from 1.26.3 to 1.26.4
2 parents c7f3411 + 0b72c26 commit e73cba9

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.ci_support/environment-mpich.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ dependencies:
44
- coverage
55
- lammps =2023.11.21
66
- mpich
7-
- numpy =1.26.3
7+
- numpy =1.26.4
88
- mpi4py =3.1.5
99
- pympipool =0.7.11
1010
- ase =3.22.1

.ci_support/environment-openmpi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ dependencies:
44
- coverage
55
- lammps =2023.11.21
66
- openmpi
7-
- numpy =1.26.3
7+
- numpy =1.26.4
88
- mpi4py =3.1.5
99
- pympipool =0.7.11
1010
- ase =3.22.1

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ classifiers = [
2626
dependencies = [
2727
"mpi4py==3.1.5",
2828
"pympipool==0.7.11",
29-
"numpy==1.26.3",
29+
"numpy==1.26.4",
3030
]
3131
dynamic = ["version"]
3232

tests/test_pylammpsmpi_local.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def test_extract_variable(self):
5656
x = self.lmp.extract_variable("tt", "all", 0)
5757
self.assertEqual(np.round(x, 2), 1.13)
5858
x = self.lmp.extract_variable("fx", "all", 1)
59-
if sys.version_info >= (3, 10):
59+
if sys.version_info >= (3, 11):
6060
self.assertEqual(len(x), 256)
6161
self.assertEqual(np.round(x[0], 2), -0.26)
6262

0 commit comments

Comments
 (0)