File tree Expand file tree Collapse file tree 5 files changed +9
-59
lines changed Expand file tree Collapse file tree 5 files changed +9
-59
lines changed Original file line number Diff line number Diff line change @@ -21,8 +21,8 @@ buildifier:
21
21
.minimum_supported_version : &minimum_supported_version
22
22
# For testing minimum supported version.
23
23
# NOTE: Keep in sync with //:version.bzl
24
- bazel : 5.4 .0
25
- skip_in_bazel_downstream_pipeline : " Bazel 5 required"
24
+ bazel : 6.2 .0
25
+ skip_in_bazel_downstream_pipeline : " Bazel 6 required"
26
26
.minimum_supported_bzlmod_version : &minimum_supported_bzlmod_version
27
27
bazel : 6.2.0 # test minimum supported version of bazel for bzlmod tests
28
28
.reusable_config : &reusable_config
@@ -64,10 +64,7 @@ buildifier:
64
64
- //tests:version_3_9_test
65
65
- //tests:version_default_test
66
66
.pystar_base : &pystar_base
67
- # TODO: Change to "7.x" once Bazel 7 is available
68
- # https://github.com/bazelbuild/bazel/commit/f3aafea59ae021c6a12086cb2cd34c5fa782faf1
69
- # is available in rolling.
70
- bazel : " last_rc"
67
+ bazel : " 7.x"
71
68
environment :
72
69
RULES_PYTHON_ENABLE_PYSTAR : " 1"
73
70
test_flags :
Original file line number Diff line number Diff line change @@ -13,7 +13,10 @@ bazel-testlogs
13
13
examples/bzlmod/bazel-bzlmod
14
14
examples/bzlmod/other_module/bazel-other_module
15
15
examples/bzlmod_build_file_generation/bazel-bzlmod_build_file_generation
16
+ examples/multi_python_versions/bazel-multi_python_versions
16
17
examples/pip_parse/bazel-pip_parse
18
+ examples/pip_parse_vendored/bazel-pip_parse_vendored
17
19
examples/py_proto_library/bazel-py_proto_library
20
+ tests/compile_pip_requirements/bazel-compile_pip_requirements
18
21
tests/ignore_root_user_error/bazel-ignore_root_user_error
19
22
tests/pip_repository_entry_points/bazel-pip_repository_entry_points
Original file line number Diff line number Diff line change 1
- 6.2 .0
1
+ 7.0 .0
Original file line number Diff line number Diff line change 11
11
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
12
# See the License for the specific language governing permissions and
13
13
# limitations under the License.
14
- load ("//tools/bazel_integration_test:bazel_integration_test.bzl" , "bazel_integration_test" )
15
14
16
15
package (default_visibility = ["//visibility:public" ])
17
16
18
17
licenses (["notice" ]) # Apache 2.0
19
-
20
- bazel_integration_test (
21
- name = "build_file_generation_example" ,
22
- timeout = "long" ,
23
- )
24
-
25
- bazel_integration_test (
26
- name = "bzlmod_build_file_generation_example" ,
27
- timeout = "long" ,
28
- )
29
-
30
- bazel_integration_test(
31
- name = "pip_parse_example" ,
32
- timeout = "long" ,
33
- )
34
-
35
- bazel_integration_test (
36
- name = "pip_parse_vendored_example" ,
37
- timeout = "long" ,
38
- tags = ["fix-windows" ],
39
- )
40
-
41
- bazel_integration_test (
42
- name = "pip_repository_annotations_example" ,
43
- timeout = "long" ,
44
- )
45
-
46
- bazel_integration_test (
47
- name = "py_proto_library_example" ,
48
- timeout = "long" ,
49
- )
50
-
51
- bazel_integration_test (
52
- name = "py_proto_library_example_bzlmod" ,
53
- timeout = "long" ,
54
- bzlmod = True ,
55
- dirname = "py_proto_library" ,
56
- )
57
-
58
- bazel_integration_test (
59
- name = "multi_python_versions_example" ,
60
- timeout = "long" ,
61
- )
62
-
63
- bazel_integration_test (
64
- name = "bzlmod_example" ,
65
- bzlmod = True ,
66
- override_bazel_version = "6.2.0" ,
67
- )
Original file line number Diff line number Diff line change 17
17
# against.
18
18
# This version should be updated together with the version of Bazel
19
19
# in .bazelversion.
20
- BAZEL_VERSION = "6.2 .0"
20
+ BAZEL_VERSION = "7.0 .0"
21
21
22
22
# NOTE: Keep in sync with .bazelci/presubmit.yml
23
23
# This is the minimum supported bazel version, that we have some tests for.
24
- MINIMUM_BAZEL_VERSION = "5.4 .0"
24
+ MINIMUM_BAZEL_VERSION = "6.2 .0"
25
25
26
26
# Versions of Bazel which users should be able to use.
27
27
# Ensures we don't break backwards-compatibility,
You can’t perform that action at this time.
0 commit comments