Skip to content

Commit f23193a

Browse files
committed
fix owlbot.py
1 parent 02f94c5 commit f23193a

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

owlbot.py

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -100,19 +100,22 @@
100100
"recursive-include third_party/bigframes_vendored *\nrecursive-include bigframes",
101101
)
102102

103+
104+
# Include JavaScript files for display widgets
105+
assert 1 == s.replace( # MANIFEST.in
106+
["MANIFEST.in"],
107+
re.escape("recursive-include bigframes *.json *.proto py.typed"),
108+
"recursive-include bigframes *.json *.proto *.js py.typed",
109+
)
110+
111+
103112
# Fixup the documentation.
104113
assert 1 == s.replace( # docs/conf.py
105114
["docs/conf.py"],
106115
re.escape("Google Cloud Client Libraries for bigframes"),
107116
"BigQuery DataFrames provides DataFrame APIs on the BigQuery engine",
108117
)
109118

110-
# Include JavaScript files for anywidget
111-
assert 1 == s.replace( # MANIFEST.in
112-
["MANIFEST.in"],
113-
"recursive-include bigframes *.json *.proto py.typed",
114-
"recursive-include bigframes *.json *.proto *.js py.typed",
115-
)
116119

117120
# Don't omit `*/core/*.py` when counting test coverages
118121
assert 1 == s.replace( # .coveragerc

0 commit comments

Comments
 (0)