Skip to content

Commit 0c6af9c

Browse files
committed
DEP: drop support for Python 3.9, require 3.10 or newer
1 parent aa02502 commit 0c6af9c

3 files changed

Lines changed: 4 additions & 5 deletions

File tree

.github/workflows/cibuildwheel.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,12 +78,12 @@ jobs:
7878
shell: bash
7979
# On PRs we run only oldest and newest Python versions to reduce CI load.
8080
# Skips pypy and musllinux everywhere.
81-
# We are building 39, 311 and 314 for now.
81+
# We are building 310, 311 and 314 for now.
8282
# (3.11 is the oldest version for which we support abi3 wheels)
8383
# These needs to rotate every new Python release.
8484
run: |
8585
set -x
86-
echo "CIBW_BUILD=cp39-* cp311-* cp314-*" >> $GITHUB_ENV
86+
echo "CIBW_BUILD=cp310-* cp311-* cp314-*" >> $GITHUB_ENV
8787
set +x
8888
8989
if: ${{ github.event_name }} == "pull_request"

.github/workflows/miniconda.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
# NO_NET: 1
1313
strategy:
1414
matrix:
15-
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13" ]
15+
python-version: [ "3.10", "3.11", "3.12", "3.13" ]
1616
os: [windows-latest, ubuntu-latest, macos-latest]
1717
platform: [x64, x32]
1818
exclude:

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ description = "Provides an object-oriented python interface to the netCDF versio
1212
authors = [
1313
{name = "Jeff Whitaker", email = "whitaker.jeffrey@gmail.com"},
1414
]
15-
requires-python = ">=3.9"
15+
requires-python = ">=3.10"
1616
keywords = [
1717
"numpy", "netcdf", "data", "science", "network", "oceanography",
1818
"meteorology", "climate",
@@ -21,7 +21,6 @@ license = {text = "MIT"}
2121
classifiers = [
2222
"Development Status :: 3 - Alpha",
2323
"Programming Language :: Python :: 3",
24-
"Programming Language :: Python :: 3.9",
2524
"Programming Language :: Python :: 3.10",
2625
"Programming Language :: Python :: 3.11",
2726
"Programming Language :: Python :: 3.12",

0 commit comments

Comments
 (0)