Skip to content

Commit

Permalink
Merge pull request #153 from pyiron/dependabot/pip/pympipool-0.7.2
Browse files Browse the repository at this point in the history
Bump pympipool from 0.7.1 to 0.7.2
  • Loading branch information
jan-janssen authored Nov 6, 2023
2 parents 70283cd + 3b717b0 commit b9c6d35
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .ci_support/environment-mpich.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ dependencies:
- mpich
- numpy =1.26.0
- mpi4py =3.1.5
- pympipool =0.7.1
- pympipool =0.7.2
- ase =3.22.1
- scipy =1.11.3
2 changes: 1 addition & 1 deletion .ci_support/environment-openmpi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ dependencies:
- openmpi
- numpy =1.26.0
- mpi4py =3.1.5
- pympipool =0.7.1
- pympipool =0.7.2
- ase =3.22.1
- scipy =1.11.3
5 changes: 2 additions & 3 deletions .github/workflows/unittests-mpich.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,8 @@ jobs:
environment-file: .ci_support/environment-mpich.yml
- name: Setup
shell: bash -l {0}
run: |
pip install --no-deps .
run: pip install --no-deps .
- name: Test
shell: bash -l {0}
timeout-minutes: 5
run: coverage run --omit pylammpsmpi/_version.py -m unittest discover tests
run: python -m unittest discover tests
5 changes: 2 additions & 3 deletions .github/workflows/unittests-openmpi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,8 @@ jobs:
environment-file: .ci_support/environment-openmpi.yml
- name: Setup
shell: bash -l {0}
run: |
pip install --no-deps .
run: pip install --no-deps .
- name: Test
shell: bash -l {0}
timeout-minutes: 5
run: coverage run --omit pylammpsmpi/_version.py -m unittest discover tests
run: python -m unittest discover tests
2 changes: 0 additions & 2 deletions pylammpsmpi/wrapper/concurrent.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,6 @@ def execute_async(
connections=MpiExecInterface(
cwd=cwd,
cores=cores,
threads_per_core=1,
gpus_per_core=0,
oversubscribe=oversubscribe,
),
)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
keywords='lammps, mpi4py',
packages=find_packages(exclude=["*tests*"]),
install_requires=[
"mpi4py==3.1.5", "pympipool==0.7.1", "numpy==1.26.0"
"mpi4py==3.1.5", "pympipool==0.7.2", "numpy==1.26.0"
],
extras_require={
"ase": ["ase==3.22.1", "scipy==1.11.3"],
Expand Down

0 comments on commit b9c6d35

Please sign in to comment.