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"]
 
