From 340450e4ee76073db6cb57667be6b1dce63996cb Mon Sep 17 00:00:00 2001 From: Tom White Date: Thu, 7 May 2026 21:28:23 +0100 Subject: [PATCH] Drop Python 3.11 --- .github/workflows/main.yml | 2 +- pyproject.toml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 39a50f4..b2b48ac 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -24,7 +24,7 @@ jobs: shell: bash -l {0} strategy: matrix: - python-version: ["3.11", "3.12", "3.13"] + python-version: ["3.12", "3.13", "3.14"] steps: - uses: actions/checkout@v4 diff --git a/pyproject.toml b/pyproject.toml index c9dba51..450890d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,16 +14,16 @@ classifiers = [ "License :: OSI Approved :: Apache Software License", "Operating System :: OS Independent", "Programming Language :: Python", - "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", "Topic :: Scientific/Engineering", ] -requires-python = ">=3.11" +requires-python = ">=3.12" dependencies = [ - "numpy >= 1.22", + "numpy >= 2", "xarray >= 2024.09.0", - "cubed >= 0.24.0", + "cubed >= 0.27.0", ]