Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sphinx-doc/sphinx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakeshi KOMIYA <i.tkomiya@gmail.com>2021-10-06 20:34:44 +0300
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2021-10-06 20:34:44 +0300
commitf13ad8020767202df101c2f193db77136c281558 (patch)
tree363d2d35912499e7d2802d84eb984c5721f595d4 /.github
parentc922189920ec36fe34aab41ee467a854849a57b8 (diff)
Support Python 3.10
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/main.yml9
1 files changed, 6 insertions, 3 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 62a3d1139..20479e9fd 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -8,7 +8,7 @@ jobs:
strategy:
fail-fast: false
matrix:
- name: [py36, py37, py38, py39]
+ name: [py36, py37, py38, py39, py310]
include:
- name: py36
python: 3.6
@@ -23,8 +23,11 @@ jobs:
python: 3.9
docutils: du17
coverage: "--cov ./ --cov-append --cov-config setup.cfg"
- - name: py310-dev
- python: 3.10-dev
+ - name: py310
+ python: "3.10"
+ docutils: du17
+ - name: py311-dev
+ python: 3.11-dev
docutils: du17
env:
PYTEST_ADDOPTS: ${{ matrix.coverage }}