Skip to content

Commit c631db2

Browse files
authored
Update executorlib to 1.2.0 (#324)
* Update pyproject.toml * Update environment-old.yml * Update environment-mpich.yml * Update environment-openmpi.yml * Update lmpmpi.py * Update concurrent.py * Update test_executor.py
1 parent a1cf757 commit c631db2

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
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.3
77
- numpy =1.26.4
88
- mpi4py =4.0.1
9-
- executorlib =1.1.1
9+
- executorlib =1.2.0
1010
- ase =3.25.0
1111
- scipy =1.15.2

.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 =1.1.0
8+
- executorlib =1.2.0
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.1
9-
- executorlib =1.1.1
9+
- executorlib =1.2.0
1010
- ase =3.25.0
1111
- scipy =1.15.2

pylammpsmpi/mpi/lmpmpi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from ctypes import c_double, c_int
66

77
import numpy as np
8-
from executorlib.standalone import (
8+
from executorlib.api import (
99
interface_connect,
1010
interface_receive,
1111
interface_send,

pylammpsmpi/wrapper/concurrent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from threading import Thread
99
from typing import Any, Optional
1010

11-
from executorlib.standalone import (
11+
from executorlib.api import (
1212
MpiExecSpawner,
1313
cancel_items_in_queue,
1414
interface_bootup,

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.1",
28-
"executorlib==1.1.1",
28+
"executorlib==1.2.0",
2929
"numpy==1.26.4",
3030
]
3131
dynamic = ["version"]

tests/test_executor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from ase.build import bulk
44
from executorlib import SingleNodeExecutor
5-
from executorlib.standalone import cloudpickle_register
5+
from executorlib.api import cloudpickle_register
66

77
from pylammpsmpi import LammpsASELibrary
88

0 commit comments

Comments
 (0)