Skip to content

Commit 5564b82

Browse files
cantoniostf-text-github-robot
authored andcommitted
Fix nightly builds.
- Update pybind11 workspace to reflect XLA refactoring. - Add new rules_shell dependency. - Remove python 3.9 build (will not be supported in future) PiperOrigin-RevId: 772068591
1 parent 32dc812 commit 5564b82

File tree

316 files changed

+322
-315
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

316 files changed

+322
-315
lines changed

WORKSPACE

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,13 @@ http_archive(
8383
build_file = "//third_party/pybind11:BUILD.bzl",
8484
)
8585

86+
http_archive(
87+
name = "rules_shell",
88+
sha256 = "bc61ef94facc78e20a645726f64756e5e285a045037c7a61f65af2941f4c25e1",
89+
strip_prefix = "rules_shell-0.4.1",
90+
url = "https://github.com/bazelbuild/rules_shell/releases/download/v0.4.1/rules_shell-v0.4.1.tar.gz",
91+
)
92+
8693
# Initialize hermetic Python
8794
load("@org_tensorflow//third_party/py:python_init_rules.bzl", "python_init_rules")
8895

oss_scripts/build_docs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# coding=utf-8
2-
# Copyright 2024 TF.Text Authors.
2+
# Copyright 2025 TF.Text Authors.
33
#
44
# Licensed under the Apache License, Version 2.0 (the "License");
55
# you may not use this file except in compliance with the License.

oss_scripts/docker_builds.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ set -e -x
88

99
# If a specific PYTHON_VERSION is specified, only build that one.
1010
# Otherwisebuild all supported versions.
11-
python_versions=("3.9" "3.10" "3.11" "3.12")
11+
python_versions=("3.10" "3.11" "3.12")
1212
if [[ ! -z ${PYTHON_VERSION+x} ]]; then
1313
python_versions=("$PYTHON_VERSION")
1414
fi

oss_scripts/pip_package/setup.nightly.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# coding=utf-8
2-
# Copyright 2024 TF.Text Authors.
2+
# Copyright 2025 TF.Text Authors.
33
#
44
# Licensed under the Apache License, Version 2.0 (the "License");
55
# you may not use this file except in compliance with the License.

oss_scripts/pip_package/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# coding=utf-8
2-
# Copyright 2024 TF.Text Authors.
2+
# Copyright 2025 TF.Text Authors.
33
#
44
# Licensed under the Apache License, Version 2.0 (the "License");
55
# you may not use this file except in compliance with the License.

oss_scripts/pip_package/tensorflow_build_info.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# coding=utf-8
2-
# Copyright 2024 TF.Text Authors.
2+
# Copyright 2025 TF.Text Authors.
33
#
44
# Licensed under the Apache License, Version 2.0 (the "License");
55
# you may not use this file except in compliance with the License.

tensorflow_text/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# coding=utf-8
2-
# Copyright 2024 TF.Text Authors.
2+
# Copyright 2025 TF.Text Authors.
33
#
44
# Licensed under the Apache License, Version 2.0 (the "License");
55
# you may not use this file except in compliance with the License.

tensorflow_text/core/kernels/boise_offset_converter.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2024 TF.Text Authors.
1+
// Copyright 2025 TF.Text Authors.
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.

tensorflow_text/core/kernels/boise_offset_converter.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2024 TF.Text Authors.
1+
// Copyright 2025 TF.Text Authors.
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.

tensorflow_text/core/kernels/boise_offset_converter_kernel.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2024 TF.Text Authors.
1+
// Copyright 2025 TF.Text Authors.
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)