We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf7b1ff commit 7a750c8Copy full SHA for 7a750c8
docs/conf.py
@@ -1,5 +1,5 @@
1
#!/usr/bin/env python3
2
-from importlib.metadata import get_version
+from importlib.metadata import version
3
4
from packaging.version import parse
5
@@ -18,7 +18,7 @@
18
author = "Alex Grönholm"
19
copyright = "2017, " + author
20
21
-v = parse(get_version(project))
+v = parse(version(project))
22
version = v.base_version
23
release = v.public
24
pyproject.toml
@@ -103,5 +103,4 @@ extras = doc
103
sentry
104
raygun
105
commands = sphinx-build docs build/sphinx
106
-usedevelop = true
107
"""
0 commit comments