Skip to content

Commit

Permalink
Update version and TF version requirement for TFP 0.21.0 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
jburnim committed Aug 3, 2023
1 parent 714d547 commit 6d5fb16
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tensorflow_probability/python/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def _validate_tf_environment(package):
#
# Update this whenever we need to depend on a newer TensorFlow release.
#
required_tensorflow_version = '2.11'
required_tensorflow_version = '2.13'
# required_tensorflow_version = '1.15' # Needed internally -- DisableOnExport

if (distutils.version.LooseVersion(tf.__version__) <
Expand Down
4 changes: 2 additions & 2 deletions tensorflow_probability/python/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@

# We follow Semantic Versioning (https://semver.org/)
_MAJOR_VERSION = '0'
_MINOR_VERSION = '20'
_MINOR_VERSION = '21'
_PATCH_VERSION = '0'

# When building releases, we can update this value on the release branch to
# reflect the current release candidate ('rc0', 'rc1') or, finally, the official
# 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 6d5fb16

Please sign in to comment.