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 executorlib from 0.0.4 to 0.0.5 #49

Merged
merged 7 commits into from
Nov 25, 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.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ channels:
dependencies:
- coverage
- conda =24.9.1
- executorlib =0.0.4
- executorlib =0.0.5
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
run: |
pip install versioneer[toml]==0.29
pip install . --no-deps --no-build-isolation
conda create -y -n py312 python=3.12.1 conda=24.7.1 executorlib=0.0.2
conda create -y -n py312 python=3.12.1 conda=24.7.1 executorlib=0.0.5
conda activate py312
pip install versioneer[toml]==0.29
pip install . --no-deps --no-build-isolation
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unittests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
run: |
pip install versioneer[toml]==0.29
pip install . --no-deps --no-build-isolation
conda create -y -n py312 python=3.12.1 conda=24.7.1 executorlib=0.0.2
conda create -y -n py312 python=3.12.1 conda=24.7.1 executorlib=0.0.5
conda activate py312
pip install versioneer[toml]==0.29
pip install . --no-deps --no-build-isolation
Expand Down
6 changes: 3 additions & 3 deletions conda_subprocess/decorator.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
from socket import gethostname
from typing import Optional

from executorlib.shared.communication import SocketInterface
from executorlib.shared.executor import get_command_path
from executorlib.shared.spawner import SubprocessSpawner
from executorlib.standalone.command import get_command_path
from executorlib.standalone.interactive.communication import SocketInterface
from executorlib.standalone.interactive.spawner import SubprocessSpawner

from conda_subprocess.process import Popen

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Repository = "https://github.com/pyiron/conda_subprocess"

[project.optional-dependencies]
executorlib = [
"executorlib==0.0.4",
"executorlib==0.0.5",
]

[tool.setuptools.packages.find]
Expand Down
2 changes: 1 addition & 1 deletion tests/test_conda_function.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
try:
from conda_subprocess.decorator import conda
from executorlib import Executor
from executorlib.shared.executor import cloudpickle_register
from executorlib.standalone.serialize import cloudpickle_register
except ImportError:

def conda(prefix_name=None, prefix_path=None):
Expand Down
Loading