Skip to content

Commit

Permalink
avoid name shadowing issues
Browse files Browse the repository at this point in the history
  • Loading branch information
jagerber48 committed Jul 21, 2024
1 parent 0baadc6 commit cf7171e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

import sys
import os
from importlib.metadata import version
from importlib import metadata

sys.path.insert(0, os.path.abspath(".."))
import uncertainties
Expand Down Expand Up @@ -54,7 +54,7 @@
# The short X.Y version.
version = "1"
# The full version, including alpha/beta/rc tags.
release = version("uncertainties")
release = metadata.version(project)

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down

0 comments on commit cf7171e

Please sign in to comment.