From e3b54b34ca6da91649b7b335ae881849b81dc9cd Mon Sep 17 00:00:00 2001 From: Adam Crume Date: Tue, 5 Nov 2024 20:18:43 -0800 Subject: [PATCH] Upgrade to TensorFlow 2.17.1 --- .github/workflows/requirements.txt | 4 ++-- tensorflow-sys/build.rs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/requirements.txt b/.github/workflows/requirements.txt index e998807252..8ee319a93f 100644 --- a/.github/workflows/requirements.txt +++ b/.github/workflows/requirements.txt @@ -1,2 +1,2 @@ -tensorflow == 2.17.0 -tf_keras == 2.17.0 +tensorflow == 2.17.1 +tf_keras == 2.17.1 diff --git a/tensorflow-sys/build.rs b/tensorflow-sys/build.rs index ad0b9a248a..5b29318771 100644 --- a/tensorflow-sys/build.rs +++ b/tensorflow-sys/build.rs @@ -24,8 +24,8 @@ const REPOSITORY: &str = "https://github.com/tensorflow/tensorflow.git"; const FRAMEWORK_TARGET: &str = "tensorflow:libtensorflow_framework"; const TARGET: &str = "tensorflow:libtensorflow"; // `VERSION` and `TAG` are separate because the tag is not always `'v' + VERSION`. -const VERSION: &str = "2.17.0"; -const TAG: &str = "v2.17.0"; +const VERSION: &str = "2.17.1"; +const TAG: &str = "v2.17.1"; const MIN_BAZEL: &str = "3.7.2"; macro_rules! get(($name:expr) => (ok!(env::var($name))));