Skip to content

Commit 2fa1d63

Browse files
authored
Merge pull request #421 from jenshnielsen/drop_38_39
Drop support for python 3.9 and 3.8
2 parents 4a77076 + a644083 commit 2fa1d63

3 files changed

Lines changed: 3 additions & 5 deletions

File tree

.github/workflows/python-app.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
16+
python-version: ["3.10", "3.11", "3.12", "3.13"]
1717
env:
1818
DISPLAY: ':99.0'
1919

.github/workflows/python-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Set up Python
1616
uses: actions/setup-python@v5.3.0
1717
with:
18-
python-version: '3.9'
18+
python-version: '3.12'
1919
- uses: ./.github/actions/install-dependencies-and-plottr
2020
- name: Install build deps
2121
run: pip install --upgrade build

pyproject.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,14 @@ classifiers = [
1111
"Intended Audience :: Science/Research",
1212
"License :: OSI Approved :: MIT License",
1313
"Programming Language :: Python :: 3 :: Only",
14-
"Programming Language :: Python :: 3.8",
15-
"Programming Language :: Python :: 3.9",
1614
"Programming Language :: Python :: 3.10",
1715
"Programming Language :: Python :: 3.11",
1816
"Programming Language :: Python :: 3.12",
1917
"Programming Language :: Python :: 3.13",
2018
"Topic :: Scientific/Engineering",
2119
]
2220
license = {text = "MIT"}
23-
requires-python = ">=3.8"
21+
requires-python = ">=3.10"
2422
dependencies = [
2523
"pandas>=0.22",
2624
"xarray",

0 commit comments

Comments
 (0)