File: change-conf-file.patch

package info (click to toggle)
apispec 6.8.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 660 kB
  • sloc: python: 4,908; makefile: 150; sh: 10
file content (19 lines) | stat: -rw-r--r-- 597 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Description: Pin number version in documentation
 Currenlty the docs/conf.py use importlib.metadata.version() to get the
 version . This patch point the version fixed.
Author: Emmanuel Arias <eamanu@debian.org>
Forwarded: not-needed
Last-Update: 2024-04-12
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -26,7 +26,7 @@
 project = "apispec"
 copyright = "Steven Loria, Jérôme Lafréchoux, and contributors"
 
-version = release = importlib.metadata.version("apispec")
+version = release = "6.6.0"
 
 exclude_patterns = ["_build"]