X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/6aef6c9d458e8df88f510e94c18f216232b6a786..9938c92fd72deda1156aca79946d7996a5365eaa:/docs/conf.py diff --git a/docs/conf.py b/docs/conf.py index ce7536d..01d695f 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -13,11 +13,11 @@ # documentation root, use os.path.abspath to make it absolute, like shown here. # from pathlib import Path -import regex as re +import re import shutil import string -from setuptools_scm import get_version +from pkg_resources import get_distribution from recommonmark.parser import CommonMarkParser @@ -83,8 +83,8 @@ copyright = "2018, Łukasz Langa and contributors to Black" author = "Łukasz Langa and contributors to Black" # Autopopulate version -# The full version, including alpha/beta/rc tags. -release = get_version(root=CURRENT_DIR.parent) +# The version, including alpha/beta/rc tags, but not commit hash and datestamps +release = get_distribution("black").version.split("+")[0] # The short X.Y version. version = release for sp in "abcfr":