Skip to content

Commit 9d095ab

Browse files
authored
Merge pull request #255 from pyiron/dependabot/pip/executorlib-0.0.3
Bump executorlib from 0.0.2 to 0.0.3
2 parents 8716998 + 19034d3 commit 9d095ab

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
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 =4.2.2
77
- numpy =1.26.4
88
- mpi4py =4.0.0
9-
- executorlib =0.0.2
9+
- executorlib =0.0.3
1010
- ase =3.23.0
1111
- scipy =1.14.1

.ci_support/environment-old.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ dependencies:
55
- openmpi
66
- numpy =1.23.5
77
- mpi4py =3.1.4
8-
- executorlib =0.0.1
8+
- executorlib =0.0.3
99
- ase =3.23.0
1010
- scipy =1.9.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 =5.0.5
77
- numpy =1.26.4
88
- mpi4py =4.0.0
9-
- executorlib =0.0.2
9+
- executorlib =0.0.3
1010
- ase =3.23.0
1111
- scipy =1.14.1

binder/environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ dependencies:
55
- numpy =1.26.4
66
- lammps =2024.06.27
77
- mpi4py =4.0.0
8-
- executorlib =0.0.2
8+
- executorlib =0.0.3
99
- ase =3.23.0
1010
- scipy =1.14.1

pylammpsmpi/wrapper/concurrent.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from typing import Any, List, Optional
1010

1111
from executorlib.shared import (
12-
MpiExecInterface,
12+
MpiExecSpawner,
1313
RaisingThread,
1414
cancel_items_in_queue,
1515
interface_bootup,
@@ -55,10 +55,10 @@ def execute_async(
5555
cmds.extend(cmdargs)
5656
interface = interface_bootup(
5757
command_lst=cmds,
58-
connections=MpiExecInterface(
58+
connections=MpiExecSpawner(
5959
cwd=cwd,
6060
cores=cores,
61-
oversubscribe=oversubscribe,
61+
openmpi_oversubscribe=oversubscribe,
6262
),
6363
)
6464
while True:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ classifiers = [
2525
]
2626
dependencies = [
2727
"mpi4py==4.0.0",
28-
"executorlib==0.0.2",
28+
"executorlib==0.0.3",
2929
"numpy==1.26.4",
3030
]
3131
dynamic = ["version"]

0 commit comments

Comments
 (0)