Skip to content

Commit

Permalink
fix: use artman, not bazel
Browse files Browse the repository at this point in the history
  • Loading branch information
busunkim96 committed Feb 6, 2020
1 parent 71705da commit 14c5033
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions recommender/synth.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
from synthtool import gcp
from synthtool.languages import python

gapic = gcp.GAPICBazel()
gapic = gcp.GAPICGenerator()
versions = ["v1beta1", "v1"]
common = gcp.CommonTemplates()

Expand All @@ -28,7 +28,7 @@
# Generate Cloud Recommender
# ----------------------------------------------------------------------------
for version in versions:
library = gapic.py_library("recommender", version)
library = gapic.py_library("recommender", version, config_path=f"/google/cloud/recommender/{version}/artman_recommender_{version}.yaml")
s.move(library, excludes=["nox.py", "docs/index.rst", "README.rst", "setup.py"])

# Fix docstring with regex pattern that breaks docgen
Expand Down

0 comments on commit 14c5033

Please sign in to comment.