Skip to content

Commit

Permalink
Hack fix doc build
Browse files Browse the repository at this point in the history
until COS can fix it properly [ci skip]
  • Loading branch information
pllim committed Jul 31, 2020
1 parent 1458f81 commit e6c63e4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,10 @@
# |version| and |release|, also used in various other places throughout the
# built documents.
#
from costools import __version__ as VERSION
try:
from costools import __version__ as VERSION
except Exception:
VERSION = 'UNKNOWN'
# The short X.Y version.
version = VERSION
# The full version, including alpha/beta/rc tags.
Expand Down

0 comments on commit e6c63e4

Please sign in to comment.