Skip to content

Commit

Permalink
Update package_info.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Laicheng0830 committed Dec 13, 2021
1 parent a5177b4 commit 50583c2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tensorlayer/package_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@
# -*- coding: utf-8 -*-
"""Deep learning and Reinforcement learning library for Researchers and Engineers."""

MAJOR = 1
MINOR = 2
PATCH = 0
MAJOR = 0
MINOR = 0
PATCH = 1
PRE_RELEASE = ''
# Use the following formatting: (major, minor, patch, prerelease)
VERSION = (MAJOR, MINOR, PATCH, PRE_RELEASE)

__shortversion__ = '.'.join(map(str, VERSION[:3]))
__version__ = '.'.join(map(str, VERSION[:3])) + ''.join(VERSION[3:])

__package_name__ = 'tensorlayer3'
__package_name__ = 'tensorlayerx'
__contact_names__ = 'TensorLayer Contributors'
__contact_emails__ = 'tensorlayer@gmail.com'
__homepage__ = 'https://tensorlayer3.readthedocs.io/en/latest/'
Expand Down

0 comments on commit 50583c2

Please sign in to comment.