Skip to content

Commit

Permalink
selenium: refresh patch for new set of Python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
OddBloke committed Jan 20, 2025
1 parent 08acc26 commit 71126ce
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions selenium/ignore-root-user-error.patch
Original file line number Diff line number Diff line change
@@ -1,18 +1,11 @@
diff --git a/MODULE.bazel b/MODULE.bazel
index 43611ccd9e..cdc848c409 100644
index c83f8ab..58fc669 100644
--- a/MODULE.bazel
+++ b/MODULE.bazel
@@ -98,10 +98,20 @@
@@ -112,10 +112,20 @@ python = use_extension("@rules_python//python/extensions:python.bzl", "python")
python.toolchain(
is_default = True,
python_version = "3.8",
+ ignore_root_user_error = True,
)
-python.toolchain(python_version = "3.9")
-python.toolchain(python_version = "3.10")
-python.toolchain(python_version = "3.11")
+python.toolchain(
+ python_version = "3.9",
python_version = "3.9",
+ ignore_root_user_error = True,
+)
+python.toolchain(
Expand All @@ -23,6 +16,13 @@ index 43611ccd9e..cdc848c409 100644
+ python_version = "3.11",
+ ignore_root_user_error = True,
+)
+python.toolchain(
+ python_version = "3.12",
+ ignore_root_user_error = True,
)
-python.toolchain(python_version = "3.10")
-python.toolchain(python_version = "3.11")
-python.toolchain(python_version = "3.12")
use_repo(python, "pythons_hub")

pip = use_extension("@rules_python//python/extensions:pip.bzl", "pip")

0 comments on commit 71126ce

Please sign in to comment.