File tree 3 files changed +7
-14
lines changed
3 files changed +7
-14
lines changed Original file line number Diff line number Diff line change @@ -13,17 +13,10 @@ workspace(name = "tf_serving")
13
13
# 3. Request the new archive to be mirrored on mirror.bazel.build for more
14
14
# reliable downloads.
15
15
load ("//tensorflow_serving:repo.bzl" , "tensorflow_http_archive" )
16
- load ("@bazel_tools//tools/build_defs/repo:http.bzl" , "http_archive" )
17
16
tensorflow_http_archive (
18
17
name = "org_tensorflow" ,
19
- sha256 = "86720850e6ebb561ed87a520754000be44ad68eaf881219456d553ec9de6d040" ,
20
- git_commit = "db80fa53b76cbb149c3a2580539c49ccc7f92141" ,
21
- )
22
-
23
- http_archive (
24
- name = "bazel_skylib" ,
25
- sha256 = "74d544d96f4a5bb630d465ca8bbcfe231e3594e5aae57e1edbf17a6eb3ca2506" ,
26
- url = "https://github.com/bazelbuild/bazel-skylib/releases/download/1.3.0/bazel-skylib-1.3.0.tar.gz" ,
18
+ sha256 = "37abf3d45a34e11012ef60ee6dcd79e317384b62d319b6346cc2a94eb447e172" ,
19
+ git_commit = "d5b57ca93e506df258271ea00fc29cf98383a374" ,
27
20
)
28
21
29
22
# Import all of TensorFlow Serving's external dependencies.
@@ -35,7 +28,7 @@ tf_serving_workspace()
35
28
36
29
# Check bazel version requirement, which is stricter than TensorFlow's.
37
30
load ("@bazel_skylib//lib:versions.bzl" , "versions" )
38
- versions .check (minimum_bazel_version = "5.1.1" )
31
+ versions .check ("5.1.1" )
39
32
40
33
# Initialize TensorFlow's external dependencies.
41
34
load ("@org_tensorflow//tensorflow:workspace3.bzl" , "workspace" )
Original file line number Diff line number Diff line change @@ -530,7 +530,7 @@ pkg_deb(
530
530
homepage = "https://github.com/tensorflow/serving" ,
531
531
maintainer = "TensorFlow Serving team" ,
532
532
package = "tensorflow-model-server" ,
533
- version = "2.11.0-rc2 " , # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
533
+ version = "2.11.0" , # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
534
534
)
535
535
536
536
# Build with '-c opt'
@@ -541,5 +541,5 @@ pkg_deb(
541
541
homepage = "https://github.com/tensorflow/serving" ,
542
542
maintainer = "TensorFlow Serving team" ,
543
543
package = "tensorflow-model-server-universal" ,
544
- version = "2.11.0-rc2 " , # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
544
+ version = "2.11.0" , # Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
545
545
)
Original file line number Diff line number Diff line change 31
31
DOCLINES = __doc__ .split ('\n ' )
32
32
33
33
# Set when releasing a new version of TensorFlow Serving (e.g. 1.0.0).
34
- _VERSION = '2.11.0-rc2 '
34
+ _VERSION = '2.11.0'
35
35
# Have this by default be open; releasing a new version will lock to TF version
36
- _TF_VERSION = '>=2.11.0-rc2 ,<3'
36
+ _TF_VERSION = '>=2.11.0,<3'
37
37
_TF_VERSION_SANITIZED = _TF_VERSION .replace ('-' , '' )
38
38
39
39
project_name = 'tensorflow-serving-api'
You can’t perform that action at this time.
0 commit comments