From 779286ef7e1fad26ea882315a47e4ac98c06bf29 Mon Sep 17 00:00:00 2001 From: Yong Tang Date: Wed, 4 Jul 2018 05:12:54 +0000 Subject: [PATCH 1/2] Update cython to 0.28.3 This fix updates the cython from 3732784 (09/2017) to the latest versioned release of 0.28.3 (05/2018). The change was initally added in PR 20228 but was not applied for some reason. The fix updates again. Signed-off-by: Yong Tang --- tensorflow/workspace.bzl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tensorflow/workspace.bzl b/tensorflow/workspace.bzl index 9f5ebc5f235..cb3e7b8c332 100644 --- a/tensorflow/workspace.bzl +++ b/tensorflow/workspace.bzl @@ -682,12 +682,12 @@ def tf_workspace(path_prefix="", tf_repo_name=""): tf_http_archive( name = "cython", - sha256 = "6dcd30b5ceb887b2b965ee7ceb82ea3acb5f0642fe2206c7636b45acea4798e5", + sha256 = "05e3eb7f06043f5ff2028338370329e71c29f57315e95f4dc6ad7c4971dd4c6f", urls = [ - "https://mirror.bazel.build/github.com/cython/cython/archive/3732784c45cfb040a5b0936951d196f83a12ea17.tar.gz", - "https://github.com/cython/cython/archive/3732784c45cfb040a5b0936951d196f83a12ea17.tar.gz", + "https://mirror.bazel.build/github.com/cython/cython/archive/0.28.3.tar.gz", + "https://github.com/cython/cython/archive/0.28.3.tar.gz", ], - strip_prefix = "cython-3732784c45cfb040a5b0936951d196f83a12ea17", + strip_prefix = "cython-0.28.3", build_file = clean_dep("//third_party:cython.BUILD"), delete = ["BUILD.bazel"], ) From 2f4b812cf41225fb64655e47330cd96f3af88294 Mon Sep 17 00:00:00 2001 From: Yong Tang Date: Mon, 9 Jul 2018 20:51:05 +0000 Subject: [PATCH 2/2] Update cython to 0.28.4 This fix updates the cython to the latest versioned release of 0.28.4 (released in 07/07/2018). Signed-off-by: Yong Tang --- tensorflow/workspace.bzl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tensorflow/workspace.bzl b/tensorflow/workspace.bzl index cb3e7b8c332..c75e5a78b98 100644 --- a/tensorflow/workspace.bzl +++ b/tensorflow/workspace.bzl @@ -682,12 +682,12 @@ def tf_workspace(path_prefix="", tf_repo_name=""): tf_http_archive( name = "cython", - sha256 = "05e3eb7f06043f5ff2028338370329e71c29f57315e95f4dc6ad7c4971dd4c6f", + sha256 = "bccc9aa050ea02595b2440188813b936eaf345e85fb9692790cecfe095cf91aa", urls = [ - "https://mirror.bazel.build/github.com/cython/cython/archive/0.28.3.tar.gz", - "https://github.com/cython/cython/archive/0.28.3.tar.gz", + "https://mirror.bazel.build/github.com/cython/cython/archive/0.28.4.tar.gz", + "https://github.com/cython/cython/archive/0.28.4.tar.gz", ], - strip_prefix = "cython-0.28.3", + strip_prefix = "cython-0.28.4", build_file = clean_dep("//third_party:cython.BUILD"), delete = ["BUILD.bazel"], )