Skip to content

Commit

Permalink
minor change
Browse files Browse the repository at this point in the history
  • Loading branch information
idan.morad committed Feb 8, 2024
1 parent f83c45b commit 08e61b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/source/conf.py
Expand Up @@ -6,6 +6,7 @@
import datetime
import os
import sys
from pathlib import Path

# -- Path setup --------------------------------------------------------------
# If extensions (or modules to document with autodoc) are in another directory,
Expand All @@ -14,7 +15,6 @@

sys.path.insert(0, os.path.abspath('.'))
sys.path.insert(0, os.path.abspath("../../ds_utils"))
from ...ds_utils import __version__

# -- Project information -----------------------------------------------------

Expand All @@ -23,7 +23,7 @@
author = 'Idan Morad'

# The full version, including alpha/beta/rc tags
release = __version__
release = Path(__file__).parents[2].joinpath("ds_utils", "__init__.py").read_text().split("=")[1].strip()

# -- General configuration ---------------------------------------------------

Expand Down

0 comments on commit 08e61b1

Please sign in to comment.