15
0
Files
python-blinker/no-stdpy-pyc.patch
2023-07-26 22:10:36 +00:00

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)