Skip to content

Commit 0d286d5

Browse files
committed
Test on Python 3.11
1 parent 3fc5c57 commit 0d286d5

File tree

6 files changed

+10
-4
lines changed

6 files changed

+10
-4
lines changed

.github/workflows/python_ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: "windows-2019"
2323
continue-on-error: ${{ matrix.config.experimental }}
2424
env:
25-
USING_COVERAGE: '3.7,3.8,3.9,3.10'
25+
USING_COVERAGE: '3.7,3.8,3.9,3.10,3.11'
2626

2727
strategy:
2828
fail-fast: False
@@ -32,6 +32,7 @@ jobs:
3232
- {python-version: "3.8", testenvs: "py38-sphinx{3.2,3.3,3.4},build", experimental: False}
3333
- {python-version: "3.9", testenvs: "py39-sphinx{3.2,3.3,3.4},build", experimental: False}
3434
- {python-version: "3.10", testenvs: "py310-sphinx{3.2,3.3,3.4},build", experimental: False}
35+
- {python-version: "3.11", testenvs: "py311-sphinx{3.2,3.3,3.4},build", experimental: False}
3536

3637
steps:
3738
- name: Checkout 🛎️

.github/workflows/python_ci_linux.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: "ubuntu-22.04"
2424
continue-on-error: ${{ matrix.config.experimental }}
2525
env:
26-
USING_COVERAGE: '3.7,3.8,3.9,3.10'
26+
USING_COVERAGE: '3.7,3.8,3.9,3.10,3.11'
2727

2828
strategy:
2929
fail-fast: False
@@ -33,6 +33,7 @@ jobs:
3333
- {python-version: "3.8", testenvs: "py38-sphinx{3.2,3.3,3.4},build", experimental: False}
3434
- {python-version: "3.9", testenvs: "py39-sphinx{3.2,3.3,3.4},build", experimental: False}
3535
- {python-version: "3.10", testenvs: "py310-sphinx{3.2,3.3,3.4},build", experimental: False}
36+
- {python-version: "3.11", testenvs: "py311-sphinx{3.2,3.3,3.4},build", experimental: False}
3637

3738
steps:
3839
- name: Checkout 🛎️

.github/workflows/python_ci_macos.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: "macos-${{ matrix.config.os-ver }}"
2323
continue-on-error: ${{ matrix.config.experimental }}
2424
env:
25-
USING_COVERAGE: '3.7,3.8,3.9,3.10'
25+
USING_COVERAGE: '3.7,3.8,3.9,3.10,3.11'
2626

2727
strategy:
2828
fail-fast: False
@@ -32,6 +32,7 @@ jobs:
3232
- {python-version: "3.8", os-ver: "14", testenvs: "py38-sphinx{3.2,3.3,3.4},build", experimental: False}
3333
- {python-version: "3.9", os-ver: "14", testenvs: "py39-sphinx{3.2,3.3,3.4},build", experimental: False}
3434
- {python-version: "3.10", os-ver: "14", testenvs: "py310-sphinx{3.2,3.3,3.4},build", experimental: False}
35+
- {python-version: "3.11", os-ver: "14", testenvs: "py311-sphinx{3.2,3.3,3.4},build", experimental: False}
3536

3637
steps:
3738
- name: Checkout 🛎️

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ base-classifiers = [
3333
"Topic :: Utilities",
3434
"Typing :: Typed",
3535
]
36-
python-versions = [ "3.7", "3.8", "3.9", "3.10",]
36+
python-versions = [ "3.7", "3.8", "3.9", "3.10", "3.11",]
3737
python-implementations = [ "CPython",]
3838
platforms = [ "Windows", "macOS", "Linux",]
3939
license-key = "BSD-3-Clause"

repo_helper.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ python_versions:
2222
- 3.8
2323
- 3.9
2424
- "3.10"
25+
- "3.11"
2526

2627
keywords:
2728
- sphinx

tox.ini

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ envlist =
2323
py38-sphinx{3.2,3.3,3.4}
2424
py39-sphinx{3.2,3.3,3.4}
2525
py310-sphinx{3.2,3.3,3.4}
26+
py311-sphinx{3.2,3.3,3.4}
2627
mypy
2728
build
2829
skip_missing_interpreters = True
@@ -39,6 +40,7 @@ test =
3940
py38-sphinx{3.2,3.3,3.4}
4041
py39-sphinx{3.2,3.3,3.4}
4142
py310-sphinx{3.2,3.3,3.4}
43+
py311-sphinx{3.2,3.3,3.4}
4244
qa = mypy, lint
4345
raspi = py3{6,7,8,9,10}-sphinx3.4
4446

0 commit comments

Comments
 (0)