Skip to content

Commit b9c6d35

Browse files
authored
Merge pull request #153 from pyiron/dependabot/pip/pympipool-0.7.2
Bump pympipool from 0.7.1 to 0.7.2
2 parents 70283cd + 3b717b0 commit b9c6d35

File tree

6 files changed

+7
-11
lines changed

6 files changed

+7
-11
lines changed

.ci_support/environment-mpich.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ dependencies:
66
- mpich
77
- numpy =1.26.0
88
- mpi4py =3.1.5
9-
- pympipool =0.7.1
9+
- pympipool =0.7.2
1010
- ase =3.22.1
1111
- scipy =1.11.3

.ci_support/environment-openmpi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ dependencies:
66
- openmpi
77
- numpy =1.26.0
88
- mpi4py =3.1.5
9-
- pympipool =0.7.1
9+
- pympipool =0.7.2
1010
- ase =3.22.1
1111
- scipy =1.11.3

.github/workflows/unittests-mpich.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,8 @@ jobs:
2929
environment-file: .ci_support/environment-mpich.yml
3030
- name: Setup
3131
shell: bash -l {0}
32-
run: |
33-
pip install --no-deps .
32+
run: pip install --no-deps .
3433
- name: Test
3534
shell: bash -l {0}
3635
timeout-minutes: 5
37-
run: coverage run --omit pylammpsmpi/_version.py -m unittest discover tests
36+
run: python -m unittest discover tests

.github/workflows/unittests-openmpi.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,8 @@ jobs:
2929
environment-file: .ci_support/environment-openmpi.yml
3030
- name: Setup
3131
shell: bash -l {0}
32-
run: |
33-
pip install --no-deps .
32+
run: pip install --no-deps .
3433
- name: Test
3534
shell: bash -l {0}
3635
timeout-minutes: 5
37-
run: coverage run --omit pylammpsmpi/_version.py -m unittest discover tests
36+
run: python -m unittest discover tests

pylammpsmpi/wrapper/concurrent.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,6 @@ def execute_async(
4343
connections=MpiExecInterface(
4444
cwd=cwd,
4545
cores=cores,
46-
threads_per_core=1,
47-
gpus_per_core=0,
4846
oversubscribe=oversubscribe,
4947
),
5048
)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
keywords='lammps, mpi4py',
2828
packages=find_packages(exclude=["*tests*"]),
2929
install_requires=[
30-
"mpi4py==3.1.5", "pympipool==0.7.1", "numpy==1.26.0"
30+
"mpi4py==3.1.5", "pympipool==0.7.2", "numpy==1.26.0"
3131
],
3232
extras_require={
3333
"ase": ["ase==3.22.1", "scipy==1.11.3"],

0 commit comments

Comments
 (0)