Skip to content

Commit

Permalink
Bump version and TF requirement for after TFP 0.24.0 release.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 615175673
  • Loading branch information
jburnim authored and tensorflower-gardener committed Mar 12, 2024
1 parent 11031d5 commit 9e996db
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@
TFDS_PACKAGE = 'tfds-nightly'

if release:
TF_PACKAGE = 'tensorflow >= 2.15'
KERAS_PACKAGE = 'tf-keras >= 2.15'
TF_PACKAGE = 'tensorflow >= 2.16'
KERAS_PACKAGE = 'tf-keras >= 2.16'
else:
TF_PACKAGE = 'tf-nightly'
KERAS_PACKAGE = 'tf-keras-nightly'
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 @@ -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.15'
required_tensorflow_version = '2.16'
# required_tensorflow_version = '1.15' # Needed internally -- DisableOnExport

if (distutils.version.LooseVersion(tf.__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 @@ -16,7 +16,7 @@

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

# When building releases, we can update this value on the release branch to
Expand Down

0 comments on commit 9e996db

Please sign in to comment.