Skip to content

Commit 6d5fb16

Browse files
committed
Update version and TF version requirement for TFP 0.21.0 release.
1 parent 714d547 commit 6d5fb16

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tensorflow_probability/python/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def _validate_tf_environment(package):
5151
#
5252
# Update this whenever we need to depend on a newer TensorFlow release.
5353
#
54-
required_tensorflow_version = '2.11'
54+
required_tensorflow_version = '2.13'
5555
# required_tensorflow_version = '1.15' # Needed internally -- DisableOnExport
5656

5757
if (distutils.version.LooseVersion(tf.__version__) <

tensorflow_probability/python/version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@
1616

1717
# We follow Semantic Versioning (https://semver.org/)
1818
_MAJOR_VERSION = '0'
19-
_MINOR_VERSION = '20'
19+
_MINOR_VERSION = '21'
2020
_PATCH_VERSION = '0'
2121

2222
# When building releases, we can update this value on the release branch to
2323
# reflect the current release candidate ('rc0', 'rc1') or, finally, the official
2424
# stable release (indicated by `_VERSION_SUFFIX = ''`). Outside the context of a
2525
# release branch, the current version is by default assumed to be a
2626
# 'development' version, labeled 'dev'.
27-
_VERSION_SUFFIX = 'dev'
27+
_VERSION_SUFFIX = ''
2828

2929
# Example, '0.4.0-dev'
3030
__version__ = '.'.join([

0 commit comments

Comments
 (0)