Skip to content

Commit

Permalink
[release] 1.8.5rc0 - Deprecation Warnings added + Github Templates + …
Browse files Browse the repository at this point in the history
…Test Suite Refactored (#497)
  • Loading branch information
DEKHTIARJonathan authored and luomai committed Apr 17, 2018
1 parent e215879 commit af8f935
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
6 changes: 4 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@
import os, sys
sys.path.insert(0, os.path.abspath("../")) # Important

from tensorlayer import __shortversion__
from tensorlayer import __version__

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

Expand Down Expand Up @@ -67,9 +69,9 @@
# built documents.
#
# The short X.Y version.
version = '1.8.4'
version = __shortversion__
# The full version, including alpha/beta/rc tags.
release = '1.8.4'
release = __version__

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
3 changes: 2 additions & 1 deletion tensorlayer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@
vis = visualize

# Use the following formating: (major, minor, patch, prerelease)
VERSION = (1, 8, 4, '')
VERSION = (1, 8, 5, 'rc0')
__shortversion__ = '.'.join(map(str, VERSION[:3]))
__version__ = '.'.join(map(str, VERSION[:3])) + "".join(VERSION[3:])

__package_name__ = 'tensorlayer'
Expand Down

0 comments on commit af8f935

Please sign in to comment.