From 09448c96fa5a8bb64545a66cb41c305626b9d65f Mon Sep 17 00:00:00 2001 From: Jo Basevi Date: Fri, 30 Aug 2024 11:53:43 +1000 Subject: [PATCH 1/2] Remove Python3.9 from CI tests --- .github/workflows/CI.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 0cee7e26..c05ca256 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -62,7 +62,7 @@ jobs: # Run the job for different versions of python strategy: matrix: - python-version: ["3.9", "3.10", "3.11", "3.12"] + python-version: ["3.10", "3.11", "3.12"] # Steps represent a sequence of tasks that will be executed as part of the job steps: From a06896ae2fc48a97862d64394c957ce304932b18 Mon Sep 17 00:00:00 2001 From: Jo Basevi Date: Fri, 30 Aug 2024 11:54:44 +1000 Subject: [PATCH 2/2] Update minimum python to 3.10 in conda meta.yaml --- conda/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conda/meta.yaml b/conda/meta.yaml index c3d8879b..3172bc96 100644 --- a/conda/meta.yaml +++ b/conda/meta.yaml @@ -26,7 +26,7 @@ requirements: - setuptools >=61.0.0 - versioneer run: - - python >=3.9 + - python >=3.10 {% for dep in project.get('dependencies', []) %} - {{ dep }} {% endfor %}