From 2d5fbaea8b2c751146b4fb773183a1cb6c62184e Mon Sep 17 00:00:00 2001 From: staticdev Date: Wed, 12 Apr 2023 17:23:44 +0200 Subject: [PATCH] Fix docs build --- docs/conf.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 2c40177..6d6526d 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -7,7 +7,7 @@ from unittest.mock import MagicMock sys.path.insert(0, os.path.abspath('..')) -from yamllint import __copyright__, APP_NAME, APP_VERSION # noqa +from yamllint import __copyright__, APP_NAME, __version__ # noqa # -- General configuration ------------------------------------------------ @@ -22,8 +22,8 @@ master_doc = 'index' project = APP_NAME copyright = __copyright__.lstrip('Copyright ') -version = APP_VERSION -release = APP_VERSION +version = __version__ +release = __version__ pygments_style = 'sphinx'