From 590fd1ecf40039a7f246c8813c7bfa94e46f3bdc Mon Sep 17 00:00:00 2001 From: Hernan Grecco Date: Fri, 14 Feb 2025 16:51:20 -0300 Subject: [PATCH] build: remove python 3.9 and 3.10 from github workflows --- .github/workflows/ci.yml | 12 +++--------- .github/workflows/docs.yml | 2 +- 2 files changed, 4 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 09130738a..5b61ffca4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,8 +17,6 @@ jobs: strategy: matrix: environment: - - test-py39 - - test-py310 - test-py311 - test-py312 - test-py313 @@ -26,14 +24,14 @@ jobs: uncertainties: [null, "uncertainties==3.1.6", "uncertainties>=3.1.6,<4.0.0"] extras: [null] include: - - environment: "test-py310" # Minimal versions + - environment: "test-py311 # Minimal versions numpy: "numpy>=1.23,<2.0.0" extras: matplotlib==3.5.3 - - environment: "test-py310" + - environment: "test-py311" numpy: "numpy" uncertainties: "uncertainties" extras: "sparse xarray netCDF4 dask[complete]==2024.5.1 graphviz babel==2.8 mip>=1.13" - - environment: "test-py310" + - environment: "test-py311" numpy: "numpy==1.26.1" uncertainties: null extras: "babel==2.15 matplotlib==3.9.0" @@ -78,8 +76,6 @@ jobs: strategy: matrix: environment: - - test-py39 - - test-py310 - test-py311 - test-py312 - test-py313 @@ -99,8 +95,6 @@ jobs: strategy: matrix: environment: - - test-py39 - - test-py310 - test-py311 - test-py312 - test-py313 diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 8ebea5e60..554337c27 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -17,7 +17,7 @@ jobs: - name: Set up minimal Python version uses: actions/setup-python@v2 with: - python-version: "3.10" + python-version: "3.11" - name: Get pip cache dir id: pip-cache