acc: use valid PEP 440 placeholder for masked databricks-bundles version#5978
Merged
janniklasrose merged 1 commit intoJul 21, 2026
Merged
Conversation
The pydabs template test masks the real databricks-bundles version to "x.y.z" so the golden pyproject.toml does not churn on every release. "x.y.z" is not valid PEP 440, so Dependabot's dependency-graph submission aborts the entire pip/uv graph job when it parses this generated manifest (InvalidRequirement on "databricks-bundles==x.y.z"), which is why those graph jobs fail regardless of the exclude-paths in .github/dependabot.yml (exclude-paths is not honored on the graph-submission code path). Use "0.0.0" instead: still an obvious placeholder, but parses cleanly so the graph submission no longer crashes on the fixture. Co-authored-by: Isaac
Collaborator
Integration test reportCommit: c79c6e9
8 interesting tests: 4 RECOVERED, 4 SKIP
Top 6 slowest tests (at least 2 minutes):
|
pietern
approved these changes
Jul 21, 2026
janniklasrose
deleted the
janniklasrose/databricks-bundles-repls-xyz-to-000
branch
July 21, 2026 10:08
Collaborator
Integration test reportCommit: 9f5208c
16 interesting tests: 7 flaky, 4 RECOVERED, 2 FAIL, 2 SKIP, 1 KNOWN
Top 50 slowest tests (at least 2 minutes):
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
TL;DR
#5866 added dependabot.yml with the goal of fixing dependabot graph generation errors. This did not work because
exclude-pathsonly impacts the automatic PRs, not the graph generation. This PR fixes the underlying issue (PEP 440 incompliant placeholder version in test fixtures).Changes
The pydabs template test (
acceptance/bundle/templates/pydabs) masks the realdatabricks-bundlesversion tox.y.zvia a[[Repls]]rule, so the goldenpyproject.tomldoesn't churn on every release.The problem:
x.y.zis not a valid PEP 440 version. Dependabot's dependency-graph submission jobs (theupdate-pip-graph/update-uv-graphjobs, distinct from the version-update PRs) scan this generated fixture manifest and abort the entire pip/uv graph submission with:This is why those graph jobs keep failing (example run) even after
exclude-pathswas added to.github/dependabot.yml— the graph-submission code path does not honorexclude-paths(the job definition is dispatched with"exclude-paths":[]), so theacceptance/**fixtures are scanned regardless.This PR changes the placeholder to
0.0.0: still an obvious masked value, but valid PEP 440, so the graph submission parses it cleanly instead of crashing. A comment on the[[Repls]]rule records why the placeholder must stay parseable.Tests
Regenerated the golden with
./task test-update-templates;go test ./acceptance -run '^TestAccept/bundle/templates/pydabs'passes.This pull request and its description were written by Isaac, an AI coding agent.