Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ load("@rules_python//python/pip_install:requirements.bzl", "compile_pip_requirem
gazelle_python_manifest(
name = "gazelle_python_manifest",
modules_mapping = ":modules_map",
pip_repository_incremental = True,
pip_repository_name = "pypi",
requirements = "requirements.txt",
)
Expand Down
3 changes: 1 addition & 2 deletions gazelle_python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -947,5 +947,4 @@ manifest:
tomli: tomli
pip_repository:
name: pypi
incremental: true
integrity: 90e6880a4d14b010e935cfc6eb5933bf7ea8b1e59eee41f5d037c098628f9d31
integrity: b403c528c18524aaef6f123ecbdf260d35d434f878a52002ae1cf7a6e5d9de63
2 changes: 1 addition & 1 deletion py/private/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ bzl_library(
bzl_library(
name = "py_pytest_main",
srcs = ["py_pytest_main.bzl"],
visibility = ["//py:__subpackages__"],
deps = ["@rules_python//python:defs"],
visibility = ["//py:__subpackages__"],
)

bzl_library(
Expand Down
12 changes: 6 additions & 6 deletions py/repositories.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,13 @@ def rules_py_dependencies():
http_archive(
name = "rules_python",
patch_cmds = ["""\
cat >> python/BUILD <<EOF
cat >> python/BUILD.bazel <<EOF
load("@bazel_skylib//:bzl_library.bzl", "bzl_library")

bzl_library(
name = "defs",
srcs = [":bzl"],
deps = [
srcs = [
":bzl",
"@bazel_tools//tools/python:srcs_version.bzl",
"@bazel_tools//tools/python:utils.bzl",
"@bazel_tools//tools/python:private/defs.bzl",
Expand All @@ -55,7 +55,7 @@ bzl_library(
)
EOF
"""],
sha256 = "497ca47374f48c8b067d786b512ac10a276211810f4a580178ee9b9ad139323a",
strip_prefix = "rules_python-0.16.1",
url = "https://github.com/bazelbuild/rules_python/archive/refs/tags/0.16.1.tar.gz",
sha256 = "48a838a6e1983e4884b26812b2c748a35ad284fd339eb8e2a6f3adf95307fbcd",
strip_prefix = "rules_python-0.16.2",
url = "https://github.com/bazelbuild/rules_python/archive/refs/tags/0.16.2.tar.gz",
)
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#
# This file is autogenerated by pip-compile with python 3.9
# To update, run:
# This file is autogenerated by pip-compile with Python 3.9
# by the following command:
#
# bazel run //:requirements.update
#
Expand Down