Skip to content

Commit ca4e282

Browse files
authored
drop python 3.9 (#266)
* stop testing python 3.9 * stop supporting `python=3.9` * changelog * add the pr number to the changelog
1 parent 8be3414 commit ca4e282

File tree

3 files changed

+4
-8
lines changed

3 files changed

+4
-8
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
strategy:
5151
fail-fast: false
5252
matrix:
53-
python-version: ["3.9", "3.10", "3.11", "3.12"]
53+
python-version: ["3.10", "3.11", "3.12"]
5454
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
5555

5656
steps:
@@ -79,10 +79,6 @@ jobs:
7979
- name: install dependencies
8080
run: |
8181
python -m pip install -r ci/requirements.txt
82-
if [[ "${{matrix.python-version}}" == "3.9" ]]; then
83-
# remove after the release
84-
python -m pip install 'numpy<2.0'
85-
fi
8682
8783
- name: install pint-xarray
8884
run: python -m pip install --no-deps .

docs/whats-new.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ What's new
44
==========
55
0.5 (*unreleased*)
66
------------------
7-
7+
- drop support for python 3.9 (:pull:`266`)
8+
By `Justus Magin <https://github.com/keewis>`_.
89

910
0.4 (23 Jun 2024)
1011
-----------------

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,12 @@ classifiers = [
1313
"License :: OSI Approved :: Apache Software License",
1414
"Operating System :: OS Independent",
1515
"Programming Language :: Python",
16-
"Programming Language :: Python :: 3.9",
1716
"Programming Language :: Python :: 3.10",
1817
"Programming Language :: Python :: 3.11",
1918
"Programming Language :: Python :: 3.12",
2019
"Topic :: Scientific/Engineering",
2120
]
22-
requires-python = ">=3.9"
21+
requires-python = ">=3.10"
2322
dependencies = [
2423
"numpy >= 1.23",
2524
"xarray >= 2022.06.0",

0 commit comments

Comments
 (0)