Skip to content

Commit

Permalink
[release] 1.7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
zsdonghao committed Dec 14, 2017
1 parent ee44afc commit 5a06096
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ TensorLayer is maintained by numerous Github contributors [here](https://github.
This project is in an active development stage and has received numerous contributions from an open community.
It has been widely used by researchers from Imperial College London, Carnegie Mellon University, Stanford University,
Tsinghua University, UCLA, Linköping University and etc.,
as well as engineers from Google, Microsoft, Alibaba, Tencent, Penguins Innovate, ReFULE4, Bloomberg and many others.
as well as engineers from Google, Microsoft, Alibaba, Tencent, Penguins Innovate, ReFULE4, Bloomberg, GoodAILab and many others.

<!--
TensorLayer started as an internal repository at Imperial College London, helping researchers to test their new methods. It now encourages researchers from all over the world to controbute their methods so as to promote the development of machine learning. You can either contact us to discuss your ideas, or fork our repository and make a pull request.
Expand Down
6 changes: 3 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@
# built documents.
#
# The short X.Y version.
version = '1.7.2rc'
version = '1.7.2'
# The full version, including alpha/beta/rc tags.
release = '1.7.2rc'
release = '1.7.2'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down Expand Up @@ -143,7 +143,7 @@
# The name for this set of Sphinx documents.
# "<project> v<release> documentation" by default.
#
# html_title = 'TensorLayer v1.7.2rc'
# html_title = 'TensorLayer v1.7.2'

# A shorter title for the navigation bar. Default is the same as html_title.
#
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

setup(
name = "tensorlayer",
version = "1.7.2rc",
version = "1.7.2",
include_package_data=True,
author='TensorLayer Contributors',
author_email='hao.dong11@imperial.ac.uk',
Expand Down
2 changes: 1 addition & 1 deletion tensorlayer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
act = activation
vis = visualize

__version__ = "1.7.2rc"
__version__ = "1.7.2"

global_flag = {}
global_dict = {}
2 changes: 1 addition & 1 deletion tensorlayer/files.py
Original file line number Diff line number Diff line change
Expand Up @@ -1551,7 +1551,7 @@ def _dlProgress(count, blockSize, totalSize):
_download(filename, working_directory, url_source)
print()
statinfo = os.stat(filepath)
print('Succesfully downloaded', filename, statinfo.st_size, 'bytes.')
print('Succesfully downloaded %s %s bytes.' % (filename, statinfo.st_size))#, 'bytes.')
if(not(expected_bytes is None) and (expected_bytes != statinfo.st_size)):
raise Exception('Failed to verify ' + filename + '. Can you get to it with a browser?')
if(extract):
Expand Down

0 comments on commit 5a06096

Please sign in to comment.