Skip to content

Commit 45ee978

Browse files
committed
Fix CI/CD - Sphinx 8.2 drops support for Python 3.10
sphinx-doc/sphinx#13000
1 parent 8d4d394 commit 45ee978

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.circleci/config.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -64,22 +64,22 @@ jobs:
6464
steps:
6565
- run-tox:
6666
version: py310
67-
sphinx-version: "60,61,62,70,71,72,73,74,80,latest,dev"
67+
sphinx-version: "60,61,62,70,71,72,73,74,80,81"
6868
py311:
6969
docker:
7070
- image: 'cimg/python:3.11'
7171
steps:
7272
- run-tox:
7373
version: py311
74-
sphinx-version: "72,73,74,80,latest,dev"
74+
sphinx-version: "72,73,74,80,81,latest,dev"
7575

7676
py312:
7777
docker:
7878
- image: 'cimg/python:3.12'
7979
steps:
8080
- run-tox:
8181
version: py312
82-
sphinx-version: "72,73,74,80,latest,dev"
82+
sphinx-version: "72,73,74,80,81,latest,dev"
8383

8484
workflows:
8585
version: 2

tox.ini

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
envlist =
33
py{38,39,310}-sphinx{60,61,62,70,71}{-qa}
4-
py{39,310,311,312}-sphinx{72,73,74,80}{-qa}
4+
py{39,310,311,312}-sphinx{72,73,74,80,81}{-qa}
55
py{310,311,312}-sphinx{latest,dev}{-qa}
66

77
[testenv]
@@ -17,6 +17,7 @@ deps =
1717
sphinx71: Sphinx>=7.1,<7.2
1818
sphinx72: Sphinx>=7.2,<7.3
1919
sphinx80: Sphinx>=8.0,<8.1
20+
sphinx81: Sphinx>=8.1,<8.2
2021
sphinxlatest: Sphinx
2122
sphinxdev: https://github.com/sphinx-doc/sphinx/archive/refs/heads/master.zip
2223
allowlist_externals =

0 commit comments

Comments
 (0)