Skip to content

Commit

Permalink
Merge pull request #718 from jburnim/jburnim_0.9.0
Browse files Browse the repository at this point in the history
Update TFP version suffix (to '') and required TF version (to 2.1).
  • Loading branch information
brianwa84 authored Jan 10, 2020
2 parents c060014 + 2d85642 commit 356cfdd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tensorflow_probability/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def _ensure_tf_install(): # pylint: disable=g-statement-before-imports
#
# Update this whenever we need to depend on a newer TensorFlow release.
#
required_tensorflow_version = "1.14"
required_tensorflow_version = "2.1"

if (distutils.version.LooseVersion(tf.__version__) <
distutils.version.LooseVersion(required_tensorflow_version)):
Expand Down
2 changes: 1 addition & 1 deletion tensorflow_probability/python/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
# stable release (indicated by `_VERSION_SUFFIX = ''`). Outside the context of a
# release branch, the current version is by default assumed to be a
# 'development' version, labeled 'dev'.
_VERSION_SUFFIX = 'dev'
_VERSION_SUFFIX = ''

# Example, '0.4.0-dev'
__version__ = '.'.join([
Expand Down

0 comments on commit 356cfdd

Please sign in to comment.