We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changing in Makefile
sphinx==1.1.3 into sphinx==1.2
solved it
The text was updated successfully, but these errors were encountered:
6fba1a3
In my case, neither the above two versions works, use sphinx==1.5 works for me
sphinx==1.5
Sorry, something went wrong.
Here is the patch
diff --git a/build/Makefile b/build/Makefile index 1208535..6728093 100644 --- a/build/Makefile +++ b/build/Makefile @@ -1,5 +1,5 @@ PYTHON_VERSION = '2.7.10' -VIRTUALENV_BIN = $(shell python -c "import sys;print('virtualenv'+('' if sys.version_info.major==2 else '2'))") +VIRTUALENV_BIN = "virtualenv" default: python.info @@ -13,10 +13,10 @@ python_src: python.tgz echo "texinfo_documents = [('contents', 'python', 'Python Documentation', 'Georg Brandl', 'Python', 'The Python Programming Language', 'Documentation tools', 1)]" >> python_src/Doc/conf.py sphinx_env: - $(VIRTUALENV_BIN) sphinx_env + $(VIRTUALENV_BIN) --python=python2 sphinx_env sphinx-build: sphinx_env - sphinx_env/bin/pip install sphinx==1.3.3 + sphinx_env/bin/pip install sphinx==1.5 python.texi: python_src sphinx-build sphinx_env/bin/sphinx-build -b texinfo python_src/Doc python_info
No branches or pull requests
Changing in Makefile
sphinx==1.1.3 into sphinx==1.2
solved it
The text was updated successfully, but these errors were encountered: