From a1f0768df88781578247774ed48f8f0faaeed3c5 Mon Sep 17 00:00:00 2001 From: Santos Gallegos Date: Mon, 4 Mar 2019 18:13:58 -0500 Subject: [PATCH 1/4] Update docutils Changelog: http://docutils.sourceforge.net/RELEASE-NOTES.html#release-0-14-2017-08-03 --- readthedocs/doc_builder/python_environments.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readthedocs/doc_builder/python_environments.py b/readthedocs/doc_builder/python_environments.py index 6a9bc8ca144..e10230cbab6 100644 --- a/readthedocs/doc_builder/python_environments.py +++ b/readthedocs/doc_builder/python_environments.py @@ -286,7 +286,7 @@ def install_core_requirements(self): positive='setuptools<41', negative='setuptools<40', ), - 'docutils==0.13.1', + 'docutils==0.14', 'mock==1.0.1', 'pillow==2.6.1', 'alabaster>=0.7,<0.8,!=0.7.5', From 133ab7b138464f89f5cc67bbc7145d9eb72d8fd8 Mon Sep 17 00:00:00 2001 From: Santos Gallegos Date: Mon, 4 Mar 2019 18:23:11 -0500 Subject: [PATCH 2/4] Update pillow There are a lot of changes, but the most relevant is they drop support for old versions of python and added support for new ones. Changelog https://pillow.readthedocs.io/en/stable/releasenotes/index.html --- readthedocs/doc_builder/python_environments.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readthedocs/doc_builder/python_environments.py b/readthedocs/doc_builder/python_environments.py index e10230cbab6..7ebe5de46a5 100644 --- a/readthedocs/doc_builder/python_environments.py +++ b/readthedocs/doc_builder/python_environments.py @@ -288,7 +288,7 @@ def install_core_requirements(self): ), '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', From 9203d302cf497799f51fa976f08156dbcaf34d59 Mon Sep 17 00:00:00 2001 From: Santos Gallegos Date: Mon, 4 Mar 2019 18:25:16 -0500 Subject: [PATCH 3/4] Update pygments Changelog http://pygments.org/docs/changelog/#version-2-3-1 --- readthedocs/doc_builder/python_environments.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readthedocs/doc_builder/python_environments.py b/readthedocs/doc_builder/python_environments.py index 7ebe5de46a5..26cd84222c9 100644 --- a/readthedocs/doc_builder/python_environments.py +++ b/readthedocs/doc_builder/python_environments.py @@ -278,7 +278,7 @@ 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( From 763039aecefa9165c7ee26985bac84e40533c183 Mon Sep 17 00:00:00 2001 From: Santos Gallegos Date: Tue, 5 Mar 2019 10:04:17 -0500 Subject: [PATCH 4/4] Update recommonmark and commonmark https://github.com/rtfd/recommonmark/commits/master Changes: https://github.com/rtfd/CommonMark-py/blob/master/CHANGELOG.md --- readthedocs/doc_builder/python_environments.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/readthedocs/doc_builder/python_environments.py b/readthedocs/doc_builder/python_environments.py index 26cd84222c9..9873f559f02 100644 --- a/readthedocs/doc_builder/python_environments.py +++ b/readthedocs/doc_builder/python_environments.py @@ -290,8 +290,8 @@ def install_core_requirements(self): 'mock==1.0.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':