-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
Build matrix fixes #1338
Merged
Merged
Build matrix fixes #1338
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
ad0c3cd
Add new Sphinx versions to tox test matrix, but do not allow docutils…
benjaoming bb1c143
Stop py2 and py27 support from sphinxlatest because of build breakage
benjaoming f2195f5
Circle CI: Repeat sphinx versions for Python 2.7 (pending adjustments)
benjaoming ace7dd1
tox.ini config: Ensure that we are getting the expected Sphinx version
benjaoming 4b81382
Merge branch 'master' into build-matrix-fixes
benjaoming File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
[tox] | ||
envlist = py{2,27,3,36,37,38,39}-sphinx{16,17,18,20,21,22,23,24,30,31,32,33,34,35,40,41,latest}{-html4,-html5,}{-qa,} | ||
envlist = | ||
py{2,27}-sphinx{16,17,18,20,21,22,23,24,30,31,32,33,34,35,40,41,42,43,44,45,50,51}{-html4,-html5,}{-qa,} | ||
py{3,36,37,38,39}-sphinx{16,17,18,20,21,22,23,24,30,31,32,33,34,35,40,41,42,43,44,45,50,51,latest}{-html4,-html5,}{-qa,} | ||
|
||
[testenv] | ||
setev = | ||
|
@@ -9,22 +11,29 @@ deps = | |
readthedocs-sphinx-ext | ||
pytest | ||
sphinxcontrib-httpdomain | ||
sphinx16: Sphinx < 1.7 | ||
sphinx17: Sphinx < 1.8 | ||
sphinx18: Sphinx < 1.9 | ||
sphinx20: Sphinx < 2.1 | ||
sphinx21: Sphinx < 2.2 | ||
sphinx22: Sphinx < 2.3 | ||
sphinx23: Sphinx < 2.4 | ||
sphinx24: Sphinx < 2.5 | ||
sphinx30: Sphinx < 3.1 | ||
sphinx31: Sphinx < 3.2 | ||
sphinx32: Sphinx < 3.3 | ||
sphinx33: Sphinx < 3.4 | ||
sphinx34: Sphinx < 3.5 | ||
sphinx35: Sphinx < 3.6 | ||
sphinx40: Sphinx < 4.1 | ||
sphinx41: Sphinx < 4.2 | ||
sphinx16: Sphinx>=1.6,<1.7 | ||
sphinx17: Sphinx>=1.7,<1.8 | ||
sphinx18: Sphinx>=1.8,<1.9 | ||
sphinx20: Sphinx>=2.0,<2.1 | ||
sphinx21: Sphinx>=2.1,<2.2 | ||
sphinx22: Sphinx>=2.2,<2.3 | ||
sphinx23: Sphinx>=2.3,<2.4 | ||
sphinx24: Sphinx>=2.4,<2.5 | ||
sphinx30: Sphinx>=3.0,<3.1 | ||
sphinx31: Sphinx>=3.1,<3.2 | ||
sphinx32: Sphinx>=3.2,<3.3 | ||
sphinx33: Sphinx>=3.3,<3.4 | ||
sphinx34: Sphinx>=3.4,<3.5 | ||
sphinx35: Sphinx>=3.5,<3.6 | ||
sphinx40: Sphinx>=4.0,<4.1 | ||
sphinx41: Sphinx>=4.1,<4.2 | ||
sphinx42: Sphinx>=4.2,<4.3 | ||
sphinx43: Sphinx>=4.3,<4.4 | ||
sphinx44: Sphinx>=4.4,<4.5 | ||
sphinx45: Sphinx>=4.5,<4.6 | ||
sphinx50: Sphinx>=5.0,<5.1 | ||
sphinx51: Sphinx>=5.1,<5.2 | ||
sphinx{16,17,18,20,21,22,23,24,30,31,32,33,34,35,40,41,42}: docutils<0.18 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The latter line here is not important for the current setup, but it will be important once we bump sphinx_rtd_themes docutils dependency to |
||
sphinxlatest: Sphinx | ||
commands = | ||
pytest {posargs} tests/ | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm curious what the lower bound additions are for. Was Sphinx being downgraded by another dependency?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I guessed from the
sphinx16
name that it should target Sphinx 1.6, do we want builds for lower versions and should we add the explicitly tagged?