Skip to content

Commit

Permalink
fix: adapt to API changes
Browse files Browse the repository at this point in the history
  • Loading branch information
johanneskoester committed Oct 12, 2023
1 parent 79cfd43 commit d48ce16
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 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.9"
snakemake-interface-common = "^1.4.1"
snakemake-interface-executor-plugins = "^4.0.0"
snakemake-interface-common = "^1.12.0"
snakemake-interface-executor-plugins = "^6.0.0"


[tool.poetry.group.dev.dependencies]
Expand Down
2 changes: 1 addition & 1 deletion snakemake_executor_plugin_cluster_sync/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def __init__(
workflow,
logger,
# whether arguments for setting the remote provider shall be passed to jobs
pass_default_remote_provider_args=True,
pass_default_storage_provider_args=True,
# whether arguments for setting default resources shall be passed to jobs
pass_default_resources_args=True,
# whether environment variables shall be passed to jobs
Expand Down
4 changes: 2 additions & 2 deletions tests/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ def get_executor(self) -> str:
def get_executor_settings(self) -> Optional[ExecutorSettingsBase]:
return ExecutorSettings(submit_cmd=self._get_cmd("qsub.sh"))

def get_default_remote_provider(self) -> Optional[str]:
def get_default_storage_provider(self) -> Optional[str]:
return None

def get_default_remote_prefix(self) -> Optional[str]:
def get_default_storage_prefix(self) -> Optional[str]:
return None

0 comments on commit d48ce16

Please sign in to comment.