Skip to content

Commit 7ef7929

Browse files
Update executorlib to 1.1.0 (#321)
* Update environment-openmpi.yml * Update environment-mpich.yml * Update pyproject.toml * Update lmpmpi.py * Update concurrent.py * Update environment-old.yml * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Update test_executor.py * Update environment-mpich.yml * Update environment-openmpi.yml * Update pyproject.toml --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent 025ea52 commit 7ef7929

File tree

7 files changed

+11
-9
lines changed

7 files changed

+11
-9
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.0.1
9+
- executorlib =1.1.1
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 =0.1.0
8+
- executorlib =1.1.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.0.1
9+
- executorlib =1.1.1
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.interactive.communication import (
8+
from executorlib.standalone import (
99
interface_connect,
1010
interface_receive,
1111
interface_send,

pylammpsmpi/wrapper/concurrent.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,11 @@
88
from threading import Thread
99
from typing import Any, Optional
1010

11-
from executorlib.standalone.interactive.communication import interface_bootup
12-
from executorlib.standalone.interactive.spawner import MpiExecSpawner
13-
from executorlib.standalone.queue import cancel_items_in_queue
11+
from executorlib.standalone import (
12+
MpiExecSpawner,
13+
cancel_items_in_queue,
14+
interface_bootup,
15+
)
1416

1517
__author__ = "Sarath Menon, Jan Janssen"
1618
__copyright__ = (

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.0.1",
28+
"executorlib==1.1.1",
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.serialize import cloudpickle_register
5+
from executorlib.standalone import cloudpickle_register
66

77
from pylammpsmpi import LammpsASELibrary
88

0 commit comments

Comments
 (0)