Skip to content

Commit 512a9dd

Browse files
authored
Merge pull request #5 from snakemake/johanneskoester-patch-1
chore: update to stable snakemake
2 parents 4802c9b + c30ac55 commit 512a9dd

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ black = "^23.11.0"
1919
flake8 = "^6.1.0"
2020
coverage = "^7.3.2"
2121
pytest = "^7.4.3"
22-
snakemake = {git = "https://github.com/snakemake/snakemake.git"}
22+
snakemake = "^8.20.1"
2323
snakemake-storage-plugin-s3 = "^0.2.7"
2424

2525
[tool.coverage.run]

tests/__init__.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,8 @@ def get_assume_shared_fs(self) -> bool:
2626

2727
def get_remote_execution_settings(
2828
self,
29-
) -> snakemake.settings.RemoteExecutionSettings:
30-
return snakemake.settings.RemoteExecutionSettings(
29+
) -> snakemake.settings.types.RemoteExecutionSettings:
30+
return snakemake.settings.types.RemoteExecutionSettings(
3131
seconds_between_status_checks=5,
3232
envvars=self.get_envvars(),
33-
# TODO remove once we have switched to stable snakemake for dev
34-
container_image="snakemake/snakemake:latest",
3533
)

0 commit comments

Comments
 (0)