Skip to content

Instantly share code, notes, and snippets.

@i5ar
Last active August 29, 2015 14:10
Show Gist options
  • Save i5ar/bccf36e165a0747028a4 to your computer and use it in GitHub Desktop.
Save i5ar/bccf36e165a0747028a4 to your computer and use it in GitHub Desktop.
Sphinx Hack
d = vars(opts)
- for k, v in d.items():
+ for k, v in list(d.items()):
# delete None or False value
if v is None or v is False:
del d[k]
>>> cd C:\Users\mySphinxDirectory
>>> python setup.py install
@i5ar
Copy link
Author

i5ar commented Dec 3, 2014

In order to install correctly Sphinx 1.3b1 with Python 3.4 change sphinx/quickstart.py

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment