Skip to content

Commit e6b3e72

Browse files
committed
Drop Python < 3.9 support
Signed-off-by: Stephen Finucane <[email protected]>
1 parent d944039 commit e6b3e72

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/ci.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
steps:
1111
- name: Checkout source code
1212
uses: actions/checkout@v3
13-
- name: Set up Python 3.11
13+
- name: Set up Python 3.13
1414
uses: actions/setup-python@v4
1515
with:
16-
python-version: "3.11"
16+
python-version: "3.13"
1717
- name: Install dependencies
1818
run: python -m pip install tox
1919
- name: Run tox
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: ubuntu-latest
2424
strategy:
2525
matrix:
26-
python: ["3.8", "3.9", "3.10", "3.11"]
26+
python: ["3.9", "3.10", "3.11", "3.12", "3.13"]
2727
steps:
2828
- name: Checkout source code
2929
uses: actions/checkout@v3
@@ -52,10 +52,10 @@ jobs:
5252
# We need history to build the package
5353
with:
5454
fetch-depth: 0
55-
- name: Set up Python 3.11
55+
- name: Set up Python 3.13
5656
uses: actions/setup-python@v4
5757
with:
58-
python-version: "3.11"
58+
python-version: "3.13"
5959
- name: Install dependencies
6060
run: python -m pip install build
6161
- name: Build a binary wheel and a source tarball

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.black]
22
line-length = 88
3-
target-version = ['py38']
3+
target-version = ['py39']
44
skip-string-normalization = true
55
exclude = '''
66
(

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ classifiers =
2424
Topic :: Documentation
2525
Topic :: Documentation :: Sphinx
2626
Topic :: Utilities
27-
python_requires = >=3.8
27+
python_requires = >=3.9
2828
keywords = sphinx
2929

3030
[files]

0 commit comments

Comments
 (0)