From 1a14fb85895774c371e084f0b4811ea3e90ccf62 Mon Sep 17 00:00:00 2001 From: Tom White Date: Mon, 23 Sep 2024 09:24:06 +0100 Subject: [PATCH] Drop Python 3.9 --- .github/workflows/main.yml | 2 +- README.md | 4 ++-- pyproject.toml | 10 +++++----- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e384deb..cc81af1 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.9", "3.10", "3.11"] + python-version: ["3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v4 diff --git a/README.md b/README.md index 21a6873..e00f9ce 100644 --- a/README.md +++ b/README.md @@ -6,8 +6,8 @@ Interface for using [cubed](https://github.com/cubed-dev/cubed) with [xarray](ht ## Requirements -- Cubed version >=0.14.2 -- Xarray version >=2024.02.0 +- Cubed version >=0.17.0 +- Xarray version >=2024.09.0 ## Installation diff --git a/pyproject.toml b/pyproject.toml index 0492f18..7a21a5a 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.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Topic :: Scientific/Engineering", ] -requires-python = ">=3.9" +requires-python = ">=3.10" dependencies = [ - "numpy >= 1.17.1", - "xarray >= 2024.02.0", - "cubed >= 0.14.2", + "numpy >= 1.22", + "xarray >= 2024.09.0", + "cubed >= 0.17.0", ]