Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test with sphinx 4 and python 3.10 #109

Merged
merged 1 commit into from
Apr 6, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ commands:
type: string
sphinx-version:
type: string
default: "1,2,3,latest"
default: "1,2,3,4,latest"
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we could also remove sphinx 1.x and 3.6 from our test suite

steps:
- browser-tools/install-browser-tools
- checkout
Expand Down Expand Up @@ -48,11 +48,19 @@ jobs:
steps:
- run-tox:
version: py39
py310:
docker:
- image: 'cimg/python:3.10-browsers'
steps:
- run-tox:
version: py310
sphinx-version: 4,latest

workflows:
version: 2
tests:
jobs:
- py310
- py39
- py38
- py37
Expand Down
2 changes: 1 addition & 1 deletion docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
sphinx==4.4.0
sphinx==4.5.0
sphinx-prompt==1.5.0
sphinx-tabs==3.2.0
sphinx-rtd-theme==1.0.0
Expand Down
4 changes: 3 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
[tox]
minversion = 3.10
envlist =
py{36,37,38,39}-sphinx{1,2,3,latest}
py{36,37,38,39}-sphinx{1,2,3,4,latest}
py310-sphinx{4,latest}
docs
skipsdist = True

Expand All @@ -13,6 +14,7 @@ deps =
sphinx1: Sphinx<2.0
sphinx2: Sphinx<3.0
sphinx3: Sphinx<4.0
sphinx4: Sphinx<5.0
{sphinx1,sphinx2,sphinx3}: docutils<0.18
{sphinx1,sphinx2,sphinx3}: jinja2<3.1
sphinxlatest: Sphinx
Expand Down