Skip to content

Commit

Permalink
Version bump 0.0.1 -> 0.1.0
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 200768831
  • Loading branch information
csuter authored and Copybara-Service committed Jun 15, 2018
1 parent 41f72ef commit 256932d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 9 deletions.
13 changes: 5 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@
from setuptools.command.install import install as InstallCommandBase
from setuptools.dist import Distribution

VERSION = '0.0.1'
VERSION = '0.1.0'

REQUIRED_PACKAGES = [
'six >= 1.10.0',
'numpy >= 1.11.1',
]
# TODO(b/76094057): Once we support releases, enable the following:
# REQUIRED_TENSORFLOW_VERSION = '1.6.0'

REQUIRED_TENSORFLOW_VERSION = '1.9.0rc1'

if '--gpu' in sys.argv:
use_gpu = True
Expand All @@ -46,11 +46,8 @@
maybe_gpu_suffix = '-gpu' if use_gpu else ''

if release:
raise NotImplementedError('TensorFlow Probability team does not yet '
'support releases.')
# TODO(b/76094057): Once we support releases, enable the following:
# tensorflow_package_name = 'tensorflow{}>={}'.format(
# maybe_gpu_suffix, REQUIRED_TENSORFLOW_VERSION)
tensorflow_package_name = 'tensorflow{}>={}'.format(
maybe_gpu_suffix, REQUIRED_TENSORFLOW_VERSION)
else:
# Nightly releases use date-based versioning of the form
# '0.0.1.dev20180305'
Expand Down
2 changes: 1 addition & 1 deletion tensorflow_probability/python/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,6 @@
'vi',
]

__version__ = '0.0.1'
__version__ = '0.1.0'

remove_undocumented(__name__, _allowed_symbols)

0 comments on commit 256932d

Please sign in to comment.