Skip to content

Commit

Permalink
Improves documentation version information
Browse files Browse the repository at this point in the history
  • Loading branch information
evhub committed Jan 27, 2016
1 parent 00e69e9 commit 415928e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion coconut/root.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,9 @@

if DEVELOP:
VERSION += "-post_dev"
VERSION_STR = VERSION + " [" + VERSION_NAME + "]"
__version__ = VERSION
VERSION_STR = VERSION + " [" + VERSION_NAME + "]"
VERSION_TAG = "v" + VERSION_STR
PY2 = sys.version_info < (3,)
PY2_HEADER_BASE = r'''
py2_filter, py2_hex, py2_map, py2_oct, py2_zip, py2_open, py2_range, py2_int, py2_chr, py2_str, py2_print, py2_input = filter, hex, map, oct, zip, open, range, int, chr, str, print, input
Expand Down
2 changes: 1 addition & 1 deletion conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
project = "Coconut"
copyright = "2015, Evan Hubinger, licensed under Apache 2.0"
author = "Evan Hubinger"
version = VERSION
version = VERSION_TAG

master_doc = 'README'
htmlhelp_basename = "coconutdoc"
Expand Down

0 comments on commit 415928e

Please sign in to comment.