Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
import pytool
from importlib import metadata

# Add any Sphinx extension module names here, as strings. They can be
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
Expand All @@ -19,9 +19,9 @@
copyright = "2012, Jacob Alheid"

# The short X.Y version.
version = pytool.__version__
version = metadata.version("pytool")
# The full version, including alpha/beta/rc tags.
release = pytool.__version__
release = version

# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
Expand Down
Loading