Skip to content

Commit

Permalink
Merge branch 'release/4.7.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-ueding committed Apr 15, 2016
2 parents f4ec597 + b4cb99b commit 3813723
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@
Changelog
#########

v4.7.3
Released: 2016-04-15 13:14:40 +0200

- Fix location of ``sphinx-build`` on Fedora (GH-119). Contributed by
Aruee.

v4.7.2
Released: 2016-04-14 21:07:41 +0200

Expand Down
3 changes: 3 additions & 0 deletions doc/find_sphinx.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,12 @@

def main():
ubuntu_sphinx_build = '/usr/share/sphinx/scripts/python3/sphinx-build'
fedora_sphinx_build = '/usr/bin/sphinx-build-3'

if os.path.isfile(ubuntu_sphinx_build):
print(ubuntu_sphinx_build)
elif os.path.isfile(fedora_sphinx_build):
print(fedora_sphinx_build)
else:
print('sphinx-build')

Expand Down

0 comments on commit 3813723

Please sign in to comment.