Skip to content

Commit 120a605

Browse files
committed
MAINT: dropping support for python 3.9
1 parent 5374450 commit 120a605

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

.github/workflows/ci_workflows.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@ jobs:
2828

2929
# Linux - test different Sphinx versions
3030
- os: ubuntu-latest
31-
python-version: 3.9
32-
toxenv: py39-test-sphinx_oldest
31+
python-version: '3.10'
32+
toxenv: py310-test-sphinx_oldest
3333
- os: ubuntu-latest
34-
python-version: 3.9
35-
toxenv: py39-test-sphinx62
34+
python-version: '3.10'
35+
toxenv: py310-test-sphinx62
3636
- os: ubuntu-latest
37-
python-version: 3.9
38-
toxenv: py39-test-sphinx70
37+
python-version: '3.10'
38+
toxenv: py310-test-sphinx70
3939
- os: ubuntu-latest
4040
python-version: '3.10'
4141
toxenv: py310-test-sphinx71
@@ -55,8 +55,8 @@ jobs:
5555
python-version: '3.14'
5656
toxenv: py314-test-sphinx90
5757
- os: ubuntu-latest
58-
python-version: '3.13'
59-
toxenv: py313-test-sphinxdev
58+
python-version: '3.14'
59+
toxenv: py314-test-sphinxdev
6060

6161
# MacOS X - just the stable and dev
6262
- os: macos-latest
@@ -68,8 +68,8 @@ jobs:
6868

6969
# Windows - just the oldest, stable, and dev
7070
- os: windows-latest
71-
python-version: 3.9
72-
toxenv: py39-test-sphinx_oldest
71+
python-version: '3.10'
72+
toxenv: py310-test-sphinx_oldest
7373
- os: windows-latest
7474
python-version: '3.13'
7575
toxenv: py313-test-sphinx90

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ classifiers =
1818
[options]
1919
zip_safe = False
2020
packages = find:
21-
python_requires = >=3.9
21+
python_requires = >=3.10
2222
install_requires =
2323
packaging
2424
sphinx>=4
@@ -38,7 +38,7 @@ sphinx_automodapi = templates/*/*.rst
3838
sphinx_automodapi.tests = cases/*/*.*, cases/*/*/*.*, cases/*/*/*/*.*, cases/*/*/*/*/*.*, duplicated_warning/docs/*
3939

4040
[tool:pytest]
41-
minversion = 4.6
41+
minversion = 7.0
4242
testpaths = sphinx_automodapi
4343
xfail_strict = true
4444
filterwarnings =

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{39,310,311,312,313,314}-test-sphinx{_oldest,62,70,71,72,80,81,82,90,dev}{-cov}{-clocale}
2+
envlist = py{310,311,312,313,314}-test-sphinx{_oldest,62,70,71,72,80,81,82,90,dev}{-cov}{-clocale}
33
requires = pip >= 18.0
44
setuptools >= 30.3.0
55
isolated_build = true

0 commit comments

Comments
 (0)