1
0
Fork 0

Refreshing sphinx-meta.patch.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-02-12 15:00:51 +01:00
parent e69809bf23
commit 3411dc6921
Signed by: daniel
GPG key ID: FBB4F0E80A80222F

View file

@ -1,18 +1,18 @@
Author: Daniel Baumann <daniel@debian.org>
Description: Replacing non-functioning imports with static values for the time being.
diff -Naurp terminaltables.orig/docs/conf.py terminaltables/docs/conf.py
--- terminaltables.orig/docs/conf.py
+++ terminaltables/docs/conf.py
@@ -11,9 +11,9 @@ author = '@Robpol86'
copyright = '{}, {}'.format(time.strftime('%Y'), author)
html_last_updated_fmt = '%c {}'.format(time.tzname[time.localtime().tm_isdst])
master_doc = 'index'
-project = __import__('setup').NAME
+project = 'terminaltables'
pygments_style = 'friendly'
-release = version = __import__('setup').VERSION
+release = version = '3.1'
templates_path = ['_templates']
extensions = list()
diff -Naurp terminaltables3.orig/docs/conf.py terminaltables3/docs/conf.py
--- terminaltables3.orig/docs/conf.py
+++ terminaltables3/docs/conf.py
@@ -11,9 +11,9 @@ author = "@Robpol86"
copyright = "{}, {}".format(time.strftime("%Y"), author)
html_last_updated_fmt = f"%c {time.tzname[time.localtime().tm_isdst]}"
master_doc = "index"
-project = __import__("setup").NAME
+project = "terminaltables3"
pygments_style = "friendly"
-release = version = __import__("setup").VERSION
+release = version = "4.0"
templates_path = ["_templates"]
extensions = []