Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit a5dad2e

Browse filesBrowse files
committed
bazel run: requiremens.update, manifest, gazelle
1 parent 472850e commit a5dad2e
Copy full SHA for a5dad2e

File tree

4 files changed

+46
-0
lines changed
Filter options

4 files changed

+46
-0
lines changed
+17Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# GENERATED FILE - DO NOT EDIT!
2+
#
3+
# To update this file, run:
4+
# bazel run //:gazelle_python_manifest.update
5+
6+
manifest:
7+
modules_mapping:
8+
pathspec: pathspec
9+
pathspec.gitignore: pathspec
10+
pathspec.pathspec: pathspec
11+
pathspec.pattern: pathspec
12+
pathspec.patterns: pathspec
13+
pathspec.patterns.gitwildmatch: pathspec
14+
pathspec.util: pathspec
15+
pip_repository:
16+
name: pypi
17+
integrity: 05245d78ed551ea7a050bc567024326e6d9256b8b8d356f855c3f29af654685a
+10Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#
2+
# This file is autogenerated by pip-compile with Python 3.9
3+
# by the following command:
4+
#
5+
# bazel run //:requirements.update
6+
#
7+
pathspec==0.12.1 \
8+
--hash=sha256:a0d503e138a4c123b27490a4f7beda6a01c6f288df0e4a8b79c7eb0dc7b4cc08 \
9+
--hash=sha256:a482d51503a1ab33b1c67a6c3813a26953dbdc71c31dacaef9a838c4e29f5712
10+
# via my-package (pyproject.toml)
+12Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
load("@rules_python//python:defs.bzl", "py_library")
2+
3+
py_library(
4+
name = "my_python_module",
5+
srcs = ["my_python_module.py"],
6+
imports = [".."],
7+
visibility = [
8+
"//src:__subpackages__",
9+
"//tests:__subpackages__",
10+
],
11+
deps = ["@pypi//pathspec"],
12+
)
+7Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
load("@rules_python//python:defs.bzl", "py_test")
2+
3+
py_test(
4+
name = "test_my_python_module",
5+
srcs = ["test_my_python_module.py"],
6+
deps = ["//src/my_package:my_python_module"],
7+
)

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.