Skip to content

Commit

Permalink
Use version from setup.py in docs/conf.py
Browse files Browse the repository at this point in the history
  • Loading branch information
timofurrer committed Sep 1, 2019
1 parent f975e95 commit f3eac55
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,14 @@
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.

from radish import __version__ # noqa

#
# The short X.Y version.
version = "1.0.0a1"
version = __version__
# The full version, including alpha/beta/rc tags.
release = "1.0.0a1"
release = __version__

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

0 comments on commit f3eac55

Please sign in to comment.