Skip to content

Commit 2577f7a

Browse files
jburnimtensorflower-gardener
authored andcommitted
Update version to 0.23-dev and remove Python 3.8 support.
PiperOrigin-RevId: 570096139
1 parent 6cc612f commit 2577f7a

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

setup.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def has_ext_modules(self):
7070
url='http://github.com/tensorflow/probability',
7171
license='Apache 2.0',
7272
packages=find_packages(),
73-
python_requires='>=3.8',
73+
python_requires='>=3.9',
7474
install_requires=REQUIRED_PACKAGES,
7575
# Add in any packaged data.
7676
include_package_data=True,
@@ -88,7 +88,6 @@ def has_ext_modules(self):
8888
'Intended Audience :: Science/Research',
8989
'License :: OSI Approved :: Apache Software License',
9090
'Programming Language :: Python :: 3',
91-
'Programming Language :: Python :: 3.8',
9291
'Programming Language :: Python :: 3.9',
9392
'Programming Language :: Python :: 3.10',
9493
'Programming Language :: Python :: 3.11',

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.13'
54+
required_tensorflow_version = '2.14'
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
@@ -16,7 +16,7 @@
1616

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

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

0 commit comments

Comments
 (0)