Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update pympipool to 0.7.2 #152

Closed
wants to merge 9 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
3 changes: 2 additions & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ jobs:
- name: Test
shell: bash -l {0}
run: |
coverage run --omit pylammpsmpi/_version.py -m unittest discover tests
cd tests
coverage run --omit pylammpsmpi/_version.py -m unittest discover .
coverage combine
- name: Coveralls
uses: coverallsapp/github-action@v2
2 changes: 1 addition & 1 deletion .github/workflows/unittests-mpich.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ jobs:
- name: Test
shell: bash -l {0}
timeout-minutes: 5
run: coverage run --omit pylammpsmpi/_version.py -m unittest discover tests
run: cd tests; python -m unittest discover .
2 changes: 1 addition & 1 deletion .github/workflows/unittests-openmpi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ jobs:
- name: Test
shell: bash -l {0}
timeout-minutes: 5
run: coverage run --omit pylammpsmpi/_version.py -m unittest discover tests
run: cd tests; python -m unittest discover .
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
Loading