Skip to content

Commit 604e2cb

Browse files
committed
Support Python 3.9 and later
1 parent fa863db commit 604e2cb

File tree

5 files changed

+17
-23
lines changed

5 files changed

+17
-23
lines changed

Diff for: .github/workflows/test.yml

+5-2
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:

Diff for: CHANGES

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
Release 1.0.5 (unreleased)
2+
==========================
3+
4+
* Drop support for Python 3.8
5+
* Raise minimum required Sphinx version to 5.0
6+
17
Release 1.0.4 (2023-01-21)
28
==========================
39

Diff for: README.rst

-17
Original file line numberDiff line numberDiff line change
@@ -13,23 +13,6 @@ Install from PyPI::
1313

1414
pip install -U sphinxcontrib-applehelp
1515

16-
Release signatures
17-
==================
18-
19-
Releases are signed with following keys:
20-
21-
* `498D6B9E <https://pgp.mit.edu/pks/lookup?op=vindex&search=0x102C2C17498D6B9E>`_
22-
* `5EBA0E07 <https://pgp.mit.edu/pks/lookup?op=vindex&search=0x1425F8CE5EBA0E07>`_
23-
24-
Testing
25-
=======
26-
27-
To run the tests with the interpreter available as ``python``, use::
28-
29-
tox
30-
31-
Continuous testing runs on travis: https://travis-ci.org/sphinx-doc/sphinxcontrib-applehelp
32-
3316
Contributing
3417
============
3518

Diff for: pyproject.toml

+5-3
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ urls.Download = "https://pypi.org/project/sphinxcontrib-applehelp/"
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]

Diff for: 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)