Skip to content
This repository has been archived by the owner on Nov 26, 2023. It is now read-only.

Commit

Permalink
automate doc version string
Browse files Browse the repository at this point in the history
  • Loading branch information
kushalkolar committed Jul 15, 2020
1 parent 48f39fd commit ac68241
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import os
import sys
sys.path.insert(0, os.path.abspath('..'))

from mesmerize import __version__

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

Expand All @@ -24,9 +24,9 @@
author = 'Kushal Kolar'

# The short X.Y version
version = '0.2'
version = f"{__version__.split('.')[0]}.{__version__.split('.')[1]}"
# The full version, including alpha/beta/rc tags
release = '0.2.0'
release = __version__


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

0 comments on commit ac68241

Please sign in to comment.