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

Update internal requirements #5396

Merged
merged 4 commits into from
Mar 14, 2019
Merged
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: 5 additions & 5 deletions readthedocs/doc_builder/python_environments.py
Original file line number Diff line number Diff line change
Expand Up @@ -278,20 +278,20 @@ def install_core_requirements(self):
)

requirements = [
'Pygments==2.2.0',
'Pygments==2.3.1',
# Assume semver for setuptools version, support up to next backwards
# incompatible release
self.project.get_feature_value(
Feature.USE_SETUPTOOLS_LATEST,
positive='setuptools<41',
negative='setuptools<40',
),
'docutils==0.13.1',
'docutils==0.14',
'mock==1.0.1',
'pillow==2.6.1',
'pillow==5.4.1',
'alabaster>=0.7,<0.8,!=0.7.5',
'commonmark==0.5.4',
'recommonmark==0.4.0',
'commonmark==0.8.1',
'recommonmark==0.5.0',
]

if self.config.doctype == 'mkdocs':
Expand Down