From e4ab0fca645337e17855558c5ff7df074645d11f Mon Sep 17 00:00:00 2001 From: dcarron <daniel.carron@idiap.ch> Date: Mon, 26 Jun 2023 14:28:06 +0200 Subject: [PATCH] Change min python requirement from 3.9 to 3.10 --- conda/meta.yaml | 4 ++-- pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/conda/meta.yaml b/conda/meta.yaml index 74ab9d7b..e0ef3857 100644 --- a/conda/meta.yaml +++ b/conda/meta.yaml @@ -21,7 +21,7 @@ build: requirements: host: - - python >=3.9 + - python >=3.10 - pip - click {{ click }} - matplotlib {{ matplotlib }} @@ -39,7 +39,7 @@ requirements: - lightning {{ lightning }} - clapper run: - - python >=3.9 + - python >=3.10 - {{ pin_compatible('click') }} - {{ pin_compatible('matplotlib') }} - {{ pin_compatible('numpy') }} diff --git a/pyproject.toml b/pyproject.toml index e43899d2..b257428b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ [project] name = "ptbench" version = "1.0.0b0" -requires-python = ">=3.9" +requires-python = ">=3.10" description = "Benchmarks for training and evaluating deep models for the detection of active Pulmonary Tuberculosis from Chest X-Ray imaging." dynamic = ["readme"] license = {text = "GNU General Public License v3 (GPLv3)"} -- GitLab