Skip to content

Update version to 2.19.1 #854

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: r2.19
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tf_keras/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,6 @@
from tensorflow.python import tf2
from tensorflow.python.util.tf_export import keras_export

__version__ = "2.19.0"
__version__ = "2.19.1"

keras_export("keras.__version__").export_constant(__name__, "__version__")
2 changes: 1 addition & 1 deletion tf_keras/saving/saving_lib.py
Original file line number Diff line number Diff line change
Expand Up @@ -639,7 +639,7 @@ def __init__(self, root_path, archive=None, mode="r"):
self.f = archive.open(root_path, mode="r")
else:
self.f = open(root_path, mode="rb")
self.contents = np.load(self.f, allow_pickle=True)
self.contents = np.load(self.f, allow_pickle=False)

def make(self, path):
if not path:
Expand Down
2 changes: 1 addition & 1 deletion tf_keras/tools/pip_package/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
# This version string is semver compatible, but incompatible with pip.
# For pip, we will remove all '-' characters from this string, and use the
# result for pip.
_VERSION = "2.19.0"
_VERSION = "2.19.1"

REQUIRED_PACKAGES = [
# We depend on TensorFlow's declared pip dependencies.
Expand Down
Loading