summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOndřej Nový <onovy@debian.org>2018-08-27 15:03:04 +0200
committerOndřej Nový <onovy@debian.org>2018-08-27 15:03:04 +0200
commit3783fdefb2b73ae1d47e1646d111d5246e65e8f1 (patch)
tree6a856417c320f8d35dbc2e8ba36613809f14336d
parent497b5f61e0fa7eaf1bcf94a59ef9e1df37e63e28 (diff)
Use 'python3 -m sphinx' instead of sphinx-build for building docs
-rw-r--r--debian/changelog1
-rwxr-xr-xdebian/rules2
2 files changed, 2 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index 5482c03..a014ab6 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -3,6 +3,7 @@ urwid (2.0.1-3) UNRELEASED; urgency=medium
* d/control: Remove ancient X-Python-Version field
* d/control: Remove ancient X-Python3-Version field
* Convert git repository from git-dpm to gbp layout
+ * Use 'python3 -m sphinx' instead of sphinx-build for building docs
-- Ondřej Nový <onovy@debian.org> Mon, 14 May 2018 07:48:24 +0200
diff --git a/debian/rules b/debian/rules
index 954d11d..26ea3a8 100755
--- a/debian/rules
+++ b/debian/rules
@@ -12,4 +12,4 @@ override_dh_auto_clean:
override_dh_auto_build:
dh_auto_build
- PYTHONPATH=. http_proxy='127.0.0.1:9' sphinx-build -N -bhtml docs build/html # HTML generator
+ PYTHONPATH=. http_proxy='127.0.0.1:9' python3 -m sphinx -N -bhtml docs build/html # HTML generator