Skip to content

Commit 196f501

Browse files
committed
use a better version for 3.9 in the pip_parse example
1 parent 60406fd commit 196f501

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

examples/pip_parse/MODULE.bazel

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ local_path_override(
99
python = use_extension("@rules_python//python/extensions:python.bzl", "python")
1010
python.toolchain(
1111
# We can specify the exact version.
12-
python_version = "3.9.13",
12+
python_version = "3.9.24",
1313
)
1414

1515
# You can use this repo mapping to ensure that your BUILD.bazel files don't need
1616
# to be updated when the python version changes to a different `3.9` version.
1717
use_repo(
1818
python,
19-
python_3_9 = "python_3_9_13",
19+
python_3_9 = "python_3_9_24",
2020
)
2121

2222
pip = use_extension("@rules_python//python/extensions:pip.bzl", "pip")
@@ -34,7 +34,7 @@ pip.parse(
3434
},
3535
hub_name = "pypi",
3636
# We need to use the same version here as in the `python.toolchain` call.
37-
python_version = "3.9.13",
37+
python_version = "3.9.24",
3838
requirements_lock = "//:requirements_lock.txt",
3939
requirements_windows = "//:requirements_windows.txt",
4040
)

0 commit comments

Comments
 (0)