Skip to content

Commit

Permalink
drop python 3.9 (#266)
Browse files Browse the repository at this point in the history
* stop testing python 3.9

* stop supporting `python=3.9`

* changelog

* add the pr number to the changelog
  • Loading branch information
keewis authored Jun 23, 2024
1 parent 8be3414 commit ca4e282
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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 .
Expand Down
3 changes: 2 additions & 1 deletion docs/whats-new.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ What's new
==========
0.5 (*unreleased*)
------------------

- drop support for python 3.9 (:pull:`266`)
By `Justus Magin <https://github.com/keewis>`_.

0.4 (23 Jun 2024)
-----------------
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit ca4e282

Please sign in to comment.