From 28a679e3fff32bc01cca9bccf641af244e7febcd Mon Sep 17 00:00:00 2001 From: Johannes Koester Date: Wed, 20 Sep 2023 21:47:23 +0200 Subject: [PATCH] fix deps --- pyproject.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 090cf88..b1f70f4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ authors = ["Johannes Koester "] readme = "README.md" [tool.poetry.dependencies] -python = "^3.11" +python = "^3.9" snakemake-interface-common = "^1.4.1" snakemake-interface-executor-plugins = "^4.0.0" @@ -18,6 +18,9 @@ coverage = "^7.3.1" pytest = "^7.4.1" snakemake = {git = "https://github.com/snakemake/snakemake.git"} +[tool.coverage.run] +omit = [".*", "*/site-packages/*", "Snakefile"] + [build-system] requires = ["poetry-core"] build-backend = "poetry.core.masonry.api"