From 047bbe0c17dfdfa214b08d9c2eec10daccd53722 Mon Sep 17 00:00:00 2001 From: Justus Magin Date: Sun, 23 Jun 2024 18:36:10 +0200 Subject: [PATCH 1/4] stop testing python 3.9 --- .github/workflows/ci.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0c90c2d6..fbecb205 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -50,7 +50,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.9", "3.10", "3.11", "3.12"] + python-version: ["3.10", "3.11", "3.12"] os: ["ubuntu-latest", "macos-latest", "windows-latest"] steps: @@ -79,10 +79,6 @@ jobs: - name: install dependencies run: | python -m pip install -r ci/requirements.txt - if [[ "${{matrix.python-version}}" == "3.9" ]]; then - # remove after the release - python -m pip install 'numpy<2.0' - fi - name: install pint-xarray run: python -m pip install --no-deps . From 2ef13a573b2b2d89af0161ba292b1165231d83bb Mon Sep 17 00:00:00 2001 From: Justus Magin Date: Sun, 23 Jun 2024 18:36:41 +0200 Subject: [PATCH 2/4] stop supporting `python=3.9` --- pyproject.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 61300d90..abfd5c7b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,13 +13,12 @@ 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.23", "xarray >= 2022.06.0", From f376bdf07dd637fc363f8242f91ee62311ebdfa1 Mon Sep 17 00:00:00 2001 From: Justus Magin Date: Sun, 23 Jun 2024 18:39:38 +0200 Subject: [PATCH 3/4] changelog --- docs/whats-new.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/whats-new.rst b/docs/whats-new.rst index 9e150be6..99871522 100644 --- a/docs/whats-new.rst +++ b/docs/whats-new.rst @@ -4,7 +4,8 @@ What's new ========== 0.5 (*unreleased*) ------------------ - +- drop support for python 3.9 (:pull:``) + By `Justus Magin `_. 0.4 (23 Jun 2024) ----------------- From 4909472ea8721495e587fd2b05a18fe9314037c0 Mon Sep 17 00:00:00 2001 From: Justus Magin Date: Sun, 23 Jun 2024 18:44:38 +0200 Subject: [PATCH 4/4] add the pr number to the changelog --- docs/whats-new.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/whats-new.rst b/docs/whats-new.rst index 99871522..a90a8423 100644 --- a/docs/whats-new.rst +++ b/docs/whats-new.rst @@ -4,7 +4,7 @@ What's new ========== 0.5 (*unreleased*) ------------------ -- drop support for python 3.9 (:pull:``) +- drop support for python 3.9 (:pull:`266`) By `Justus Magin `_. 0.4 (23 Jun 2024)