Skip to content

Commit d895656

Browse files
committed
drop support for python 3.7-3.9 and add 3.12
1 parent fe11679 commit d895656

File tree

2 files changed

+5
-17
lines changed

2 files changed

+5
-17
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,9 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
python-version:
16-
- 3.7
17-
- 3.8
18-
- 3.9
1916
- '3.10'
2017
- '3.11'
18+
- '3.12'
2119

2220
steps:
2321
- uses: actions/checkout@v4

pyproject.toml

Lines changed: 4 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,7 @@ build-backend = "setuptools.build_meta"
55
[project]
66
name = "sphinxcontrib-spelling"
77
readme = "README"
8-
authors = [
9-
{name = "Doug Hellmann", email = "[email protected]"},
10-
]
8+
authors = [{ name = "Doug Hellmann", email = "[email protected]" }]
119
description = "Sphinx spelling extension"
1210
dynamic = ["version"]
1311

@@ -22,11 +20,9 @@ classifiers = [
2220
"Programming Language :: Python",
2321
"Programming Language :: Python :: 3",
2422
"Programming Language :: Python :: 3 :: Only",
25-
"Programming Language :: Python :: 3.7",
26-
"Programming Language :: Python :: 3.8",
27-
"Programming Language :: Python :: 3.9",
2823
"Programming Language :: Python :: 3.10",
2924
"Programming Language :: Python :: 3.11",
25+
"Programming Language :: Python :: 3.12",
3026
"Programming Language :: Python :: Implementation :: CPython",
3127
"Topic :: Documentation",
3228
"Topic :: Utilities",
@@ -41,11 +37,7 @@ dependencies = [
4137
]
4238

4339
[project.optional-dependencies]
44-
test = [
45-
"pytest",
46-
"pytest-cov",
47-
"coverage!=4.4,>=4.0",
48-
]
40+
test = ["pytest", "pytest-cov", "coverage!=4.4,>=4.0"]
4941

5042
[project.entry-points."sphinx.builders"]
5143
spelling = "sphinxcontrib.spelling"
@@ -61,6 +53,4 @@ write_to = "sphinxcontrib/spelling/version.py"
6153
[tool.setuptools]
6254
# Be explicit to avoid an error because build finds cover,
6355
# sphinxcontrib, and integration_tests as potential packages.
64-
packages = [
65-
"sphinxcontrib.spelling",
66-
]
56+
packages = ["sphinxcontrib.spelling"]

0 commit comments

Comments
 (0)