summaryrefslogtreecommitdiff
path: root/src/python/doc
diff options
context:
space:
mode:
authorROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-05-28 08:34:33 +0200
committerROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-05-28 08:34:33 +0200
commit851afaab00a47f1469cb5819b4a26ea52bad988b (patch)
tree4bb3c95e7418f4a7aa7bbfab81408e2a6241d256 /src/python/doc
parent0dfe5025dcfb1ac1db4e74394f7d7aa917ec8721 (diff)
sphinx-build workaround differently
Diffstat (limited to 'src/python/doc')
-rwxr-xr-xsrc/python/doc/python3-sphinx-build.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/python/doc/python3-sphinx-build.py b/src/python/doc/python3-sphinx-build.py
deleted file mode 100755
index 84d158cf..00000000
--- a/src/python/doc/python3-sphinx-build.py
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/usr/bin/env python3
-
-"""
-Emulate sphinx-build for python3
-"""
-
-from sys import exit, argv
-from sphinx import main
-
-if __name__ == '__main__':
- exit(main(argv))