Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: bazel-contrib/bazel-mypy-integration
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: d9813376b614e21daa7c0293eee7bc463870ddf6
Choose a base ref
..
head repository: bazel-contrib/bazel-mypy-integration
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1d360de2bea744227074f11e10b5128da7625c64
Choose a head ref
Showing with 4 additions and 4 deletions.
  1. +1 −1 examples/MODULE.bazel
  2. +3 −3 repositories/repositories.bzl
2 changes: 1 addition & 1 deletion examples/MODULE.bazel
Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@ module(

bazel_dep(name = "mypy_integration", version = "0.0.0")
bazel_dep(name = "rules_java", version = "7.6.1")
bazel_dep(name = "rules_python", version = "0.33.0")
bazel_dep(name = "rules_python", version = "0.33.1")

local_path_override(
module_name = "mypy_integration",
6 changes: 3 additions & 3 deletions repositories/repositories.bzl
Original file line number Diff line number Diff line change
@@ -8,9 +8,9 @@ def repositories():
maybe(
http_archive,
name = "rules_python",
url = "https://github.com/bazelbuild/rules_python/archive/0.33.0.tar.gz",
strip_prefix = "rules_python-0.33.0",
sha256 = "dc6e2756130fafb90273587003659cadd1a2dfef3f6464c227794cdc01ebf70e",
url = "https://github.com/bazelbuild/rules_python/archive/0.33.1.tar.gz",
strip_prefix = "rules_python-0.33.1",
sha256 = "5bcfa3852444d084b1d3262714cec151b797648d4d444ea9895c7c7ed79cd715",
)

maybe(