From 8d26fd5e549c676beea32c55a2c1da2e9de9e2d8 Mon Sep 17 00:00:00 2001 From: Vini Salazar <17276653+vinisalazar@users.noreply.github.com> Date: Mon, 15 Jan 2024 12:03:50 +1100 Subject: [PATCH] Update setup.py Update Python requires and min Snakemake version --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 77546fb..06cc871 100644 --- a/setup.py +++ b/setup.py @@ -32,18 +32,18 @@ "pandas", "pyyaml", "requests", - "snakemake", + "snakemake>=8", "snakemake-wrapper-utils", "tqdm", ], extras_require={"docs": "myst_parser"}, keywords="metagenomics binning assembly snakemake workflow pipeline", - python_requires=">=3.6", + python_requires=">=3.11", classifiers=[ "Development Status :: 3 - Alpha", "Intended Audience :: Science/Research", "Topic :: Scientific/Engineering :: Bio-Informatics", "License :: OSI Approved :: MIT License", - "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.11", ], )