Skip to content

Commit bdf6762

Browse files
committed
Add Bazel files and change Options to Optionz for testing
1 parent 2049f04 commit bdf6762

File tree

3 files changed

+13
-1
lines changed

3 files changed

+13
-1
lines changed

BUILD.bazel

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
load("@rules_python//python:defs.bzl", "py_library")
2+
3+
py_library(
4+
name = "sphinx-click",
5+
srcs = glob(["sphinx_click/**/*.py"]),
6+
imports = ["."],
7+
visibility = ["//visibility:public"],
8+
deps = [],
9+
)
10+

REPO.bazel

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# This file marks this directory as a Bazel repository
2+

sphinx_click/ext.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ def _format_command(
372372

373373
lines = list(_format_options(ctx))
374374
if lines:
375-
yield '.. rubric:: Options'
375+
yield '.. rubric:: Optionz'
376376
yield ''
377377

378378
for line in lines:

0 commit comments

Comments
 (0)