Skip to content

Commit e1ef214

Browse files
committed
Drop support for Python 3.9
1 parent 5437386 commit e1ef214

File tree

6 files changed

+14
-8
lines changed

6 files changed

+14
-8
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ body:
2727
attributes:
2828
label: Python Version
2929
description: Version of Python interpreter
30-
placeholder: 3.9, 3.10, 3.11, etc.
30+
placeholder: 3.10, 3.11, 3.12 etc.
3131
validations:
3232
required: true
3333
- type: input

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
python-version: ['3.9', '3.10', '3.11', '3.12']
18+
python-version: ['3.10', '3.11', '3.12']
1919
numpy_version: ['>=1.24.0', '==1.23.*']
2020
exclude:
2121
- python-version: '3.10'

.github/workflows/releases.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- uses: actions/setup-python@v5.1.0
2020
name: Install Python
2121
with:
22-
python-version: '3.9'
22+
python-version: '3.11'
2323

2424
- name: Install PyBuild
2525
run: |

.readthedocs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: 2
33
build:
44
os: ubuntu-20.04
55
tools:
6-
python: "3.9"
6+
python: "3.11"
77

88
sphinx:
99
configuration: docs/conf.py

docs/release.rst

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,13 @@ Enhancements
2424
~~~~~~~~~~~~
2525

2626
* Add Zstd codec to old V3 code path.
27-
By :user:`Ryan Abernathey <rabernat>`
27+
By :user:`Ryan Abernathey <rabernat>`
28+
29+
Maintenance
30+
~~~~~~~~~~~
31+
32+
* Removed support for Python 3.9.
33+
By :user:`David Stansby <dstansby>`
2834

2935
.. _release_2.18.1:
3036

@@ -51,7 +57,7 @@ Maintenance
5157
* Enable ruff/bugbear rules (B) and fix issues.
5258
By :user:`Dimitri Papadopoulos Orfanos <DimitriPapadopoulos>` :issue:`1702`.
5359

54-
* Minor updates to use `np.inf` instead of `np.PINF` / `np.NINF` in preparation for NumPy 2.0.0 release.
60+
* Minor updates to use `np.inf` instead of `np.PINF` / `np.NINF` in preparation for NumPy 2.0.0 release.
5561
By :user:`Joe Hamman <jhamman>` :issue:`1842`.
5662

5763
Deprecations

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ readme = { file = "README.md", content-type = "text/markdown" }
1010
maintainers = [
1111
{ name = "Alistair Miles", email = "alimanfoo@googlemail.com" }
1212
]
13-
requires-python = ">=3.9"
13+
requires-python = ">=3.10"
1414
dependencies = [
1515
'asciitree',
1616
'numpy>=1.23',
@@ -30,9 +30,9 @@ classifiers = [
3030
'Topic :: Software Development :: Libraries :: Python Modules',
3131
'Operating System :: Unix',
3232
'Programming Language :: Python :: 3',
33-
'Programming Language :: Python :: 3.9',
3433
'Programming Language :: Python :: 3.10',
3534
'Programming Language :: Python :: 3.11',
35+
'Programming Language :: Python :: 3.12',
3636
]
3737
license = { text = "MIT" }
3838

0 commit comments

Comments
 (0)