From 74a09b6540fbbec14cd64f2f9c15a1ded234e3b8 Mon Sep 17 00:00:00 2001 From: Etienne Jodry Date: Fri, 26 Apr 2024 11:43:32 +0200 Subject: [PATCH] Test optional deps. --- pyproject.toml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 8ba7ef7..a0bd354 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,17 +10,22 @@ authors = [ dynamic = ["dependencies", "version"] readme = {file = "README.md", content-type = "text/markdown"} license = {file = "LICENSE"} -requires-python = ">= 3.11" +requires-python = ">= 3.10" classifiers = [ "Development Status :: 3 - Pre-Release", "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "License :: OSI Approved :: GNU/GPLv3", ] [project.urls] Repository = "https://github.com/bag-cnag/biodm.git" +[project.optional-dependencies] +kubernetes = ["kubernetes==29.0.0"] + [tool.setuptools.dynamic] dependencies = {file = ["src/requirements/common.txt"]} version = {attr = "biodm.__version__"}