@@ -11,7 +11,7 @@ module(
11
11
repo_name = "mlir_tutorial" ,
12
12
)
13
13
14
- # Core Bazel dependencies that are available in BCR
14
+ # Dependencies available in BCR
15
15
bazel_dep (name = "bazel_skylib" , version = "1.7.1" )
16
16
bazel_dep (name = "rules_python" , version = "1.2.0" )
17
17
bazel_dep (name = "platforms" , version = "0.0.11" )
@@ -20,8 +20,6 @@ bazel_dep(name = "rules_java", version = "8.12.0")
20
20
bazel_dep (name = "protobuf" , version = "30.1" )
21
21
bazel_dep (name = "rules_proto" , version = "7.1.0" )
22
22
bazel_dep (name = "rules_pkg" , version = "1.1.0" )
23
-
24
- # External dependencies available in BCR
25
23
bazel_dep (name = "re2" , version = "2024-07-02.bcr.1" )
26
24
bazel_dep (name = "abseil-cpp" , version = "20250512.1" )
27
25
bazel_dep (name = "or-tools" , version = "9.12" )
@@ -58,13 +56,13 @@ llvm_configure(name = "llvm-project")
58
56
59
57
# Configure Python dependencies
60
58
python = use_extension ("@rules_python//python/extensions:python.bzl" , "python" )
61
- python .toolchain (python_version = "3.10 " )
62
- use_repo (python , "python_3_10 " )
59
+ python .toolchain (python_version = "3.13 " )
60
+ use_repo (python , "python_3_13 " )
63
61
64
62
pip = use_extension ("@rules_python//python/extensions:pip.bzl" , "pip" )
65
63
pip .parse (
66
64
hub_name = "mlir_tutorial_pip_deps" ,
67
- python_version = "3.10 " ,
65
+ python_version = "3.13 " ,
68
66
requirements_lock = "//:requirements.txt" ,
69
67
)
70
68
use_repo (pip , "mlir_tutorial_pip_deps" )
0 commit comments