forked from pool/python-blinker
*.pyc files for the Python interpreter it uses for generating documentation. OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-blinker?expand=0&rev=35
19 lines
428 B
Diff
19 lines
428 B
Diff
---
|
|
docs/conf.py | 5 +++++
|
|
1 file changed, 5 insertions(+)
|
|
|
|
--- a/docs/conf.py
|
|
+++ b/docs/conf.py
|
|
@@ -1,6 +1,11 @@
|
|
+import sys
|
|
+
|
|
from pallets_sphinx_themes import get_version
|
|
from pallets_sphinx_themes import ProjectLink
|
|
|
|
+# https://stackoverflow.com/q/34025113/164233
|
|
+sys.dont_write_bytecode = True
|
|
+
|
|
project = "Blinker"
|
|
copyright = "2010 Jason Kirtland"
|
|
release, version = get_version("blinker", placeholder=None)
|