Skip to content
Merged
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 @@ -8,4 +8,4 @@ dependencies:
- mpich
- numpy =1.23.5
- mpi4py =3.1.4
- pympipool =0.5.4
- pympipool =0.5.5
2 changes: 1 addition & 1 deletion .ci_support/environment-openmpi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ dependencies:
- openmpi
- numpy =1.23.5
- mpi4py =3.1.4
- pympipool =0.5.4
- pympipool =0.5.5
2 changes: 1 addition & 1 deletion binder/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ dependencies:
- numpy =1.23.5
- lammps >=2021.05.27
- mpi4py =3.1.4
- pympipool =0.5.3
- pympipool =0.5.5
5 changes: 2 additions & 3 deletions pylammpsmpi/wrapper/concurrent.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@
import socket
from concurrent.futures import Future
from queue import Queue
from threading import Thread
from pympipool import SocketInterface, cancel_items_in_queue
from pympipool import RaisingThread, SocketInterface, cancel_items_in_queue


__author__ = "Sarath Menon, Jan Janssen"
Expand Down Expand Up @@ -107,7 +106,7 @@ def __init__(
self._queue_adapter_kwargs = queue_adapter_kwargs

def start_process(self):
self._process = Thread(
self._process = RaisingThread(
target=execute_async,
kwargs={
"future_queue": self._future_queue,
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
keywords='lammps, mpi4py',
packages=find_packages(exclude=["*tests*"]),
install_requires=[
"mpi4py==3.1.4", "pympipool==0.5.4", "numpy==1.23.5"
"mpi4py==3.1.4", "pympipool==0.5.5", "numpy==1.23.5"
],
cmdclass=versioneer.get_cmdclass(),
)