We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a639939 commit 719f3caCopy full SHA for 719f3ca
readthedocs/doc_builder/python_environments.py
@@ -1,5 +1,3 @@
1
-# -*- coding: utf-8 -*-
2
-
3
"""An abstraction over virtualenv and Conda environments."""
4
5
import copy
@@ -9,8 +7,6 @@
9
7
import os
10
8
import shutil
11
12
-from django.conf import settings
13
14
from readthedocs.config import PIP, SETUPTOOLS
15
from readthedocs.config.models import PythonInstall, PythonInstallRequirements
16
from readthedocs.doc_builder.config import load_yaml_config
@@ -295,7 +291,7 @@ def install_core_requirements(self):
295
291
]
296
292
297
293
if self.config.doctype == 'mkdocs':
298
- requirements.append('mkdocs==0.17.3')
294
+ requirements.append('mkdocs<1.1')
299
else:
300
# We will assume semver here and only automate up to the next
301
# backward incompatible release: 2.x
0 commit comments