Skip to content

Commit

Permalink
Unpin requirements in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
stsewd committed Jun 18, 2018
1 parent 92513d5 commit f9afaf0
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions readthedocs/rtd_tests/tests/test_doc_building.py
Original file line number Diff line number Diff line change
Expand Up @@ -1121,12 +1121,12 @@ def setUp(self):
self.build_env_mock = Mock()

self.base_requirements = [
'Pygments==2.2.0',
'setuptools<40',
'docutils==0.13.1',
'mock==1.0.1',
'pillow==2.6.1',
'alabaster>=0.7,<0.8,!=0.7.5',
'Pygments',
'setuptools',
'docutils',
'mock',
'pillow',
'alabaster',
]
self.base_conda_requirements = [
'mock',
Expand Down Expand Up @@ -1160,11 +1160,11 @@ def test_install_core_requirements_sphinx(self):
)
python_env.install_core_requirements()
requirements_sphinx = [
'commonmark==0.5.4',
'recommonmark==0.4.0',
'sphinx<1.8',
'sphinx-rtd-theme<0.5',
'readthedocs-sphinx-ext<0.6',
'commonmark',
'recommonmark',
'sphinx',
'sphinx-rtd-theme',
'readthedocs-sphinx-ext',
]
requirements = self.base_requirements + requirements_sphinx
args = self.pip_install_args + requirements
Expand All @@ -1178,9 +1178,9 @@ def test_install_core_requirements_mkdocs(self):
)
python_env.install_core_requirements()
requirements_mkdocs = [
'commonmark==0.5.4',
'recommonmark==0.4.0',
'mkdocs==0.17.3',
'commonmark',
'recommonmark',
'mkdocs',
]
requirements = self.base_requirements + requirements_mkdocs
args = self.pip_install_args + requirements
Expand Down

0 comments on commit f9afaf0

Please sign in to comment.