From 79a53becddbc5ce5fb076f00c2eaf63609f6cf5c Mon Sep 17 00:00:00 2001 From: Mona Date: Tue, 23 Jul 2019 10:43:12 +0200 Subject: [PATCH] installation: pin docutils * Docutils is pinned because of https://github.com/pypa/pipenv/issues/3865 --- {{cookiecutter.project_shortname}}/Pipfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/{{cookiecutter.project_shortname}}/Pipfile b/{{cookiecutter.project_shortname}}/Pipfile index 87fec8c..97159d0 100644 --- a/{{cookiecutter.project_shortname}}/Pipfile +++ b/{{cookiecutter.project_shortname}}/Pipfile @@ -28,6 +28,8 @@ pytest-mock = ">=1.6.0" pytest-pep8 = ">=1.0.6" pytest-random-order = ">=0.5.4" pytest-runner = ">=3.0.0,<5" +#docutils is pinned because of this issue https://github.com/pypa/pipenv/issues/3865 +docutils = "==0.15" [requires] python_version = "3.6"