From 025feeffc28cdad25b926b5cbfd39e1734d1838d Mon Sep 17 00:00:00 2001 From: Jonathan DEKHTIAR Date: Sat, 21 Apr 2018 14:22:04 +0200 Subject: [PATCH] 1.8.5rc2 version bump (#518) * Activation Cleaning Docstring Test * Requirements Pinned with range to insure tested versions are used. Range are used to prevent updating requirements all the time. * setup.cfg file added with PEP8 configuration * activation.py refactored * docstring fixed - ready for documentation unittest * Yapf correction for max_line_length: 120 * test yapf refactored * test documentation added * Missing requirement added: sphinx * Allow test on documentation to pass on warning * Fix travis dependencies install * Travis install script fixed * Travis install command fixed * Requirements conflict solved * Yapf Style modified and merged in file "setup.cfg" * Yapf Confiuguration Updated * Code Refactored with new YAPF formating style * Code Refactored with new YAPF formating style * Code Refactored with new YAPF formating style * shorten codes * Various Cleaning * Trailing Slashes removed * Test Recurrent Fixed * Line Width Fix * docs requirements updated * fix example docs style * Codacy Issue Fixed * Merge Errors fixed * YAPF Style Applied * Version Bump to 1.8.5rc2 --- tensorlayer/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tensorlayer/__init__.py b/tensorlayer/__init__.py index 4f14392ee..a775499b8 100644 --- a/tensorlayer/__init__.py +++ b/tensorlayer/__init__.py @@ -27,7 +27,7 @@ vis = visualize # Use the following formating: (major, minor, patch, prerelease) -VERSION = (1, 8, 5, 'rc1') +VERSION = (1, 8, 5, 'rc2') __shortversion__ = '.'.join(map(str, VERSION[:3])) __version__ = '.'.join(map(str, VERSION[:3])) + "".join(VERSION[3:])