diff --git a/docs/conf.py b/docs/conf.py index 37a6f84864b..01d695f9e80 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -17,7 +17,7 @@ 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 @@ def generate_sections_from_readme(): 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": diff --git a/docs/requirements.txt b/docs/requirements.txt index b0bb9102e6a..a36fd8a675b 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -1,3 +1,2 @@ recommonmark==0.4.0 Sphinx==1.7.2 -setuptools_scm==3.3.3 diff --git a/readthedocs.yml b/readthedocs.yml index d8a016a14fc..15065033d0f 100644 --- a/readthedocs.yml +++ b/readthedocs.yml @@ -3,3 +3,5 @@ python: version: 3.8 install: - requirements: docs/requirements.txt + - method: setuptools + path: .