Skip to content

Commit 5a4cbee

Browse files
committed
Support Python 3.9 and later
1 parent 8eb63c2 commit 5a4cbee

File tree

4 files changed

+14
-9
lines changed

4 files changed

+14
-9
lines changed

.github/workflows/test.yml

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
name: Test
2-
on: [push, pull_request]
2+
on:
3+
push:
4+
pull_request:
5+
workflow_dispatch:
36

47
permissions:
58
contents: read
@@ -14,11 +17,11 @@ jobs:
1417
strategy:
1518
matrix:
1619
python:
17-
- "3.8"
1820
- "3.9"
1921
- "3.10"
2022
- "3.11"
2123
- "3.12-dev"
24+
- "3.13-dev"
2225
fail-fast: false
2326

2427
steps:
@@ -41,9 +44,7 @@ jobs:
4144
runs-on: ubuntu-latest
4245
strategy:
4346
matrix:
44-
env:
45-
- flake8
46-
- mypy
47+
env: [flake8, mypy]
4748

4849
steps:
4950
- uses: actions/checkout@v3

CHANGES

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
Release 2.0.2 (unreleased)
22
==========================
33

4+
* Drop support for Python 3.8
5+
* Raise minimum required Sphinx version to 5.0
46

57
Release 2.0.1 (2023-01-31)
68
==========================

pyproject.toml

+5-3
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ urls.Download = "https://pypi.org/project/sphinxcontrib-htmlhelp/"
1313
urls.Homepage = "https://www.sphinx-doc.org/"
1414
urls."Issue tracker" = "https://github.com/sphinx-doc/sphinx/issues"
1515
license.text = "BSD-2-Clause"
16-
requires-python = ">=3.8"
16+
requires-python = ">=3.9"
1717

1818
# Classifiers list: https://pypi.org/classifiers/
1919
classifiers = [
@@ -27,19 +27,21 @@ classifiers = [
2727
"Programming Language :: Python",
2828
"Programming Language :: Python :: 3",
2929
"Programming Language :: Python :: 3 :: Only",
30-
"Programming Language :: Python :: 3.8",
3130
"Programming Language :: Python :: 3.9",
3231
"Programming Language :: Python :: 3.10",
3332
"Programming Language :: Python :: 3.11",
3433
"Programming Language :: Python :: 3.12",
34+
"Programming Language :: Python :: 3.13",
3535
"Framework :: Sphinx",
3636
"Framework :: Sphinx :: Extension",
3737
"Topic :: Documentation",
3838
"Topic :: Documentation :: Sphinx",
3939
"Topic :: Text Processing",
4040
"Topic :: Utilities",
4141
]
42-
dependencies = []
42+
dependencies = [
43+
"Sphinx>=5",
44+
]
4345
dynamic = ["version"]
4446

4547
[project.optional-dependencies]

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
minversion = 2.4.0
33
envlist =
4-
py{38,39,310,311,312},
4+
py{39,310,311,312,313},
55
flake8,
66
mypy
77
isolated_build = True

0 commit comments

Comments
 (0)