-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
Update default sphinx version #4250
Update default sphinx version #4250
Conversation
I wonder if we should just do |
I'd like to have 👍 on using |
@@ -1152,7 +1152,7 @@ def test_install_core_requirements_sphinx(self): | |||
requirements_sphinx = [ | |||
'commonmark==0.5.4', | |||
'recommonmark==0.4.0', | |||
'sphinx==1.7.5', | |||
'sphinx<1.8', |
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.
Feels like we shouldn't be checking for this in a test, as it makes it really brittle. Should we remove this test?
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.
Looking at it more, it looks like we should be checking for what we actually care about (eg. 'sphinx' in called_arguments
not "check it called the exact versions from our code"
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.
That makes sense, should I change all the tests here?
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.
Sure. I think it's a small enough change to be fine.
👍 |
It contains a lot of bug fixes http://www.sphinx-doc.org/en/master/changes.html#release-1-7-5-released-may-29-2018
Closes #4208