Skip to content

Commit 5437386

Browse files
committed
Revert "Drop support for Python 3.9"
This reverts commit a054afb.
1 parent a054afb commit 5437386

File tree

6 files changed

+8
-14
lines changed

6 files changed

+8
-14
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.10, 3.11, 3.12 etc.
30+
placeholder: 3.9, 3.10, 3.11, 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.10', '3.11', '3.12']
18+
python-version: ['3.9', '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.11'
22+
python-version: '3.9'
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.11"
6+
python: "3.9"
77

88
sphinx:
99
configuration: docs/conf.py

docs/release.rst

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

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

3529
.. _release_2.18.1:
3630

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

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

6357
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.10"
13+
requires-python = ">=3.9"
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',
3334
'Programming Language :: Python :: 3.10',
3435
'Programming Language :: Python :: 3.11',
35-
'Programming Language :: Python :: 3.12',
3636
]
3737
license = { text = "MIT" }
3838

0 commit comments

Comments
 (0)