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 librarian.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3125,7 +3125,6 @@ libraries:
keep:
- CHANGELOG.md
- docs/CHANGELOG.md
skip_generate: true
python:
opt_args_by_api:
google/cloud/recaptchaenterprise/v1:
Expand Down
27 changes: 13 additions & 14 deletions packages/google-cloud-recaptcha-enterprise/.repo-metadata.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
{
"api_description": "protect your website from fraudulent activity like scraping, credential stuffing, and automated account creation.",
"api_id": "recaptchaenterprise.googleapis.com",
"api_shortname": "recaptchaenterprise",
"client_documentation": "https://cloud.google.com/python/docs/reference/recaptchaenterprise/latest",
"default_version": "v1",
"distribution_name": "google-cloud-recaptcha-enterprise",
"issue_tracker": "",
"language": "python",
"library_type": "GAPIC_AUTO",
"name": "recaptchaenterprise",
"name_pretty": "reCAPTCHA Enterprise",
"product_documentation": "https://cloud.google.com/recaptcha-enterprise",
"release_level": "stable",
"repo": "googleapis/google-cloud-python"
"api_description": "protect your website from fraudulent activity like scraping, credential stuffing, and automated account creation.",
"api_id": "recaptchaenterprise.googleapis.com",
"api_shortname": "recaptchaenterprise",
"client_documentation": "https://cloud.google.com/python/docs/reference/recaptchaenterprise/latest",
"default_version": "v1",
"distribution_name": "google-cloud-recaptcha-enterprise",
"language": "python",
"library_type": "GAPIC_AUTO",
"name": "recaptchaenterprise",
"name_pretty": "reCAPTCHA Enterprise",
"product_documentation": "https://cloud.google.com/recaptcha-enterprise",
"release_level": "stable",
"repo": "googleapis/google-cloud-python"
}
1 change: 0 additions & 1 deletion packages/google-cloud-recaptcha-enterprise/noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,6 @@ def docs(session):
shutil.rmtree(os.path.join("docs", "_build"), ignore_errors=True)
session.run(
"sphinx-build",
"-W", # warnings as errors
"-T", # show full traceback on exception
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The -W flag (warnings as errors) has been removed from the sphinx-build command. This flag ensures that documentation is built without warnings. According to repository rules, changes to shared configurations should be applied consistently across all relevant packages in a dedicated, universal change rather than piecemeal in individual pull requests. Unless this is a repository-wide change, please retain the flag to prevent regressions in documentation quality.

Suggested change
"-T", # show full traceback on exception
"-W", # warnings as errors
"-T", # show full traceback on exception
References
  1. Changes to shared configurations, like mypy or sphinx flags, should be applied consistently across all relevant packages in a dedicated, universal change rather than piecemeal in individual pull requests.

"-N", # no colors
"-b",
Expand Down
Loading