Skip to content

Commit fbee24c

Browse files
qlzh727tensorflower-gardener
authored andcommitted
Increase the nightly keras version to 2.15.
The 2.14 release branch is cut at https://github.com/keras-team/keras/tree/r2.14. PiperOrigin-RevId: 553299581
1 parent 2b5f28f commit fbee24c

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

keras/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@
2828
from tensorflow.python import tf2
2929
from tensorflow.python.util.tf_export import keras_export
3030

31-
__version__ = "2.14.0"
31+
__version__ = "2.15.0"
3232

3333
keras_export("keras.__version__").export_constant(__name__, "__version__")

keras/tools/pip_package/setup.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
# This version string is semver compatible, but incompatible with pip.
3232
# For pip, we will remove all '-' characters from this string, and use the
3333
# result for pip.
34-
_VERSION = "2.14.0"
34+
_VERSION = "2.15.0"
3535

3636
REQUIRED_PACKAGES = [
3737
# We depend on TensorFlow's declared pip dependencies.
@@ -58,7 +58,7 @@
5858
packages=setuptools.find_packages(),
5959
install_requires=REQUIRED_PACKAGES,
6060
# Supported Python versions
61-
python_requires=">=3.8",
61+
python_requires=">=3.9",
6262
# PyPI package information.
6363
classifiers=[
6464
"Development Status :: 5 - Production/Stable",
@@ -67,7 +67,6 @@
6767
"Intended Audience :: Science/Research",
6868
"License :: OSI Approved :: Apache Software License",
6969
"Programming Language :: Python :: 3",
70-
"Programming Language :: Python :: 3.8",
7170
"Programming Language :: Python :: 3.9",
7271
"Programming Language :: Python :: 3.10",
7372
"Programming Language :: Python :: 3.11",

0 commit comments

Comments
 (0)