Skip to content

Commit a6f6784

Browse files
committed
Update version and TF requirement for TFP 0.24.0 release.
1 parent 7baa486 commit a6f6784

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@
4949
TFDS_PACKAGE = 'tfds-nightly'
5050

5151
if release:
52-
TF_PACKAGE = 'tensorflow >= 2.15'
53-
KERAS_PACKAGE = 'tf-keras >= 2.15'
52+
TF_PACKAGE = 'tensorflow >= 2.16'
53+
KERAS_PACKAGE = 'tf-keras >= 2.16'
5454
else:
5555
TF_PACKAGE = 'tf-nightly'
5656
KERAS_PACKAGE = 'tf-keras-nightly'

tensorflow_probability/python/__init__.py

+1-1
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.15'
54+
required_tensorflow_version = '2.16'
5555
# required_tensorflow_version = '1.15' # Needed internally -- DisableOnExport
5656

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

tensorflow_probability/python/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
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)