Skip to content

Commit 7a750c8

Browse files
committed
Fixed documentation building
1 parent cf7b1ff commit 7a750c8

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python3
2-
from importlib.metadata import get_version
2+
from importlib.metadata import version
33

44
from packaging.version import parse
55

@@ -18,7 +18,7 @@
1818
author = "Alex Grönholm"
1919
copyright = "2017, " + author
2020

21-
v = parse(get_version(project))
21+
v = parse(version(project))
2222
version = v.base_version
2323
release = v.public
2424

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,5 +103,4 @@ extras = doc
103103
sentry
104104
raygun
105105
commands = sphinx-build docs build/sphinx
106-
usedevelop = true
107106
"""

0 commit comments

Comments
 (0)