This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository python-efl.
View the commit online.
commit 08eb6d395234d903948f4c1629a2e272db21245f
Author: Dave Andreoli <[email protected]>
AuthorDate: Fri Aug 29 23:02:48 2025 +0200
Simplify doc build
---
Makefile | 2 +-
README.md | 10 ++++------
2 files changed, 5 insertions(+), 7 deletions(-)
diff --git a/Makefile b/Makefile
index 8a6584f..9bab899 100644
--- a/Makefile
+++ b/Makefile
@@ -34,7 +34,7 @@ install:
.PHONY: doc
doc:
- cd doc; $(PY) -m sphinx . ../build/docs/; cd ..
+ $(PY) -m sphinx doc/ build/docs/
.PHONY: test
diff --git a/README.md b/README.md
index 96dd1ec..b4d2c97 100644
--- a/README.md
+++ b/README.md
@@ -57,7 +57,6 @@ Feel free to make pull requests on GitHub.
## Documentation
-
Documentation for the last stable release can be found [here](https://docs.enlightenment.org/python-efl/current/).
To build the docs for the bindings you need to have Sphinx installed, for
@@ -66,14 +65,13 @@ videos you need the YouTube module from sphinx contrib repository.
packages: python-sphinx, graphviz, python-pygraphviz, libgv-python
To build the docs run:
-`python -m sphinx . ../build/docs/ (from the doc/ directory!)`
-or simply:
-`make doc (from base source directory)`
+```
+python -m sphinx doc/ build/docs/
+```
The HTML generated documentation will be available in the folder: `build/docs/`
-Note: you must have python-efl installed for building the docs, or you
- will end up with empty documentation.
+Note: you must have python-efl installed for building the docs, or you will end up with empty documentation.
## Tests and Examples
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.