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

Bump pympipool from 0.8.5 to 0.9.1 #313

Merged
merged 3 commits into from
Jul 15, 2024
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-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ dependencies:
- jinja2 =3.1.4
- paramiko =3.4.0
- tqdm =4.66.4
- pympipool =0.8.5
- executorlib =0.0.1
- cloudpickle =3.0.0
- jupyter-book =1.0.0
2 changes: 1 addition & 1 deletion .ci_support/environment-old.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ dependencies:
- jinja2 =2.11.3
- paramiko =2.7.1
- tqdm =4.66.1
- pympipool =0.8.0
- executorlib =0.0.1
- cloudpickle =2.2.1
2 changes: 1 addition & 1 deletion .ci_support/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ dependencies:
- jinja2 =3.1.4
- paramiko =3.4.0
- tqdm =4.66.4
- pympipool =0.8.5
- executorlib =0.0.1
- cloudpickle =3.0.0
2 changes: 1 addition & 1 deletion binder/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ dependencies:
- jinja2 =3.1.4
- paramiko =3.4.0
- tqdm =4.66.4
- pympipool =0.8.5
- executorlib =0.0.1
- cloudpickle =3.0.0
- flux-core =0.59.0
- versioneer =0.28
2 changes: 1 addition & 1 deletion binder/postBuild
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
mkdir -p /home/jovyan/.local/share/jupyter/kernels/flux
cp binder/kernel.json /home/jovyan/.local/share/jupyter/kernels/flux

# install pympipool
# install pysqa
pip install . --no-deps --no-build-isolation

# copy notebooks
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ remote = [
"tqdm==4.66.4",
]
executor = [
"pympipool==0.8.5",
"executorlib==0.0.1",
"cloudpickle==3.0.0",
]
twofactor = ["pyauthenticator==0.2.0"]
Expand Down
2 changes: 1 addition & 1 deletion pysqa/executor/backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import sys
from typing import Optional

from pympipool import Executor
from executorlib import Executor

from pysqa.executor.helper import (
deserialize,
Expand Down
2 changes: 1 addition & 1 deletion pysqa/executor/executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from concurrent.futures import Future
from typing import Optional

from pympipool.shared import RaisingThread, cancel_items_in_queue
from executorlib.shared import RaisingThread, cancel_items_in_queue

from pysqa.executor.helper import (
find_executed_tasks,
Expand Down