Skip to content

Commit 475f12d

Browse files
authored
Merge pull request #7710 from readthedocs/humitos/install-six
2 parents 3633a1f + 7a9e935 commit 475f12d

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

readthedocs/doc_builder/python_environments.py

+2
Original file line numberDiff line numberDiff line change
@@ -367,6 +367,7 @@ def install_core_requirements(self):
367367
'mock==1.0.1',
368368
'pillow==5.4.1',
369369
'alabaster>=0.7,<0.8,!=0.7.5',
370+
'six',
370371
'commonmark==0.8.1',
371372
'recommonmark==0.5.0',
372373
]
@@ -623,6 +624,7 @@ def _get_core_requirements(self):
623624
# Install pip-only things.
624625
pip_requirements = [
625626
'recommonmark',
627+
'six',
626628
]
627629

628630
if self.config.doctype == 'mkdocs':

readthedocs/rtd_tests/tests/test_doc_building.py

+3
Original file line numberDiff line numberDiff line change
@@ -1197,6 +1197,7 @@ def setUp(self):
11971197
'mock',
11981198
'pillow',
11991199
'alabaster',
1200+
'six',
12001201
]
12011202
self.base_conda_requirements = [
12021203
'mock',
@@ -1364,6 +1365,7 @@ def test_install_core_requirements_sphinx_conda(self, checkout_path):
13641365
conda_requirements = self.base_conda_requirements + conda_sphinx
13651366
pip_requirements = [
13661367
'recommonmark',
1368+
'six',
13671369
'readthedocs-sphinx-ext',
13681370
]
13691371

@@ -1405,6 +1407,7 @@ def test_install_core_requirements_mkdocs_conda(self, checkout_path):
14051407
conda_requirements = self.base_conda_requirements
14061408
pip_requirements = [
14071409
'recommonmark',
1410+
'six',
14081411
'mkdocs',
14091412
]
14101413

0 commit comments

Comments
 (0)