X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/47861a6a3b847026bfc677ae896fbcbe171347ae..8654e8d7aef5253faa7f8ff31d4be3b0b8b9c392:/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":