X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/a33823e85956b30b3785120478775f8a9fe64b62..9ed2542e938c327a53c17f8932ee5fc53776ba31:/docs/conf.py diff --git a/docs/conf.py b/docs/conf.py index 37a6f84..01d695f 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -17,7 +17,7 @@ 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":