Skip to content

Commit

Permalink
Fixing a bug with the version introduced by sandialabs#14
Browse files Browse the repository at this point in the history
  • Loading branch information
sdelliot committed Nov 21, 2024
1 parent 15954ec commit 5a4d8fa
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,10 @@
import sys
import importlib.util
from pathlib import Path
from importlib.metadata import metadata
from importlib.metadata import metadata, version

import sphinx_rtd_theme # noqa: F401

import firewheel
from firewheel.control.repository_db import RepositoryDb
from firewheel.control.model_component_manager import ModelComponentManager
from firewheel.control.model_component_iterator import ModelComponentIterator
Expand All @@ -33,10 +32,10 @@
author = "Sandia National Laboratories"

# The short X.Y version
version = firewheel.__version__
version = version("firewheel")

# The full version, including alpha/beta/rc tags
release = firewheel.__version__
release = version("firewheel")


# -- General configuration ---------------------------------------------------
Expand Down

0 comments on commit 5a4d8fa

Please sign in to comment.