Skip to content

Commit

Permalink
fix: adapt to changes in snakemake-interface-executor-plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
johanneskoester committed Sep 20, 2023
1 parent ffc1f64 commit 70c5b67
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ readme = "README.md"

[tool.poetry.dependencies]
python = "^3.11"
snakemake-interface-common = "^1.3.2"
snakemake-interface-executor-plugins = "^3.0.0"
snakemake-interface-common = "^1.4.1"
snakemake-interface-executor-plugins = "^4.0.0"


[tool.poetry.group.dev.dependencies]
Expand Down
4 changes: 2 additions & 2 deletions snakemake_executor_plugin_cluster_sync/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from snakemake_interface_executor_plugins.workflow import WorkflowExecutorInterface
from snakemake_interface_executor_plugins.logging import LoggerExecutorInterface
from snakemake_interface_executor_plugins.jobs import (
ExecutorJobInterface,
JobExecutorInterface,
)


Expand Down Expand Up @@ -65,7 +65,7 @@ def __init__(
pass_envvar_declarations_to_cmd=True,
)

def run_job(self, job: ExecutorJobInterface):
def run_job(self, job: JobExecutorInterface):
# Implement here how to run a job.
# You can access the job's resources, etc.
# via the job object.
Expand Down

0 comments on commit 70c5b67

Please sign in to comment.