chore(deps): remove unused ansible dependency#10837
Merged
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the Python dependency lock to use ansible-core version 2.20.7 (previously 2.20.1), by adding an explicit constraint in the input requirements and regenerating the compiled, hashed requirements.txt.
Changes:
- Added
ansible-core>=2.20.7torequirements.into explicitly constrain the transitive dependency. - Regenerated
requirements.txt, updating the pinnedansible-coreversion and its hashes.
Reviewed changes
Copilot reviewed 1 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| requirements.in | Adds an explicit minimum version constraint for ansible-core to drive resolution. |
| requirements.txt | Updates the locked ansible-core version to 2.20.7 (with updated hashes / provenance comments). |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Pin ansible-core explicitly in requirements.in and regenerate requirements.txt. 2.20.7 stays within ansible 13.2.0's `ansible-core~=2.20.1` constraint, so no other resolved versions change. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
tmu0
force-pushed
the
@tmu0/bump-ansible-core
branch
from
July 20, 2026 14:59
b6f1974 to
489b0ce
Compare
tmu0
marked this pull request as ready for review
July 20, 2026 15:08
basvandijk
approved these changes
Jul 20, 2026
Collaborator
|
BTW @tmu0 do we still use Ansible for something? |
Contributor
Author
|
@basvandijk good point, claude doesn't find any usage. let me remove it and see if something breaks... |
ansible — and its exclusive transitive deps ansible-core, jinja2, markupsafe and resolvelib — is not referenced by any first-party code, playbook, script or Bazel target in this repo; the only remaining mentions are stale comments/docs. Drop it from requirements.in and regenerate requirements.txt. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
tmu0
enabled auto-merge
July 20, 2026 15:46
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.
What
Removes the
ansibledependency fromrequirements.inand regeneratesrequirements.txt.Why
ansiblehas no first-party consumer in this repo — no Python imports, no playbooks/roles, no scripts invokingansible-playbook, and no Bazel target depends on it. The only remaining references are stale comments/docs. It was pulled into the dependency-scanning venv purely because it was declared here.Effect
Dropping it also removes its exclusive transitive deps:
ansible-core,jinja2,markupsafe,resolvelib(none of which are used first-party either). Net diff is a clean deletion (88 lines out ofrequirements.txt, nothing added).This supersedes the earlier
ansible-coreversion bump on this branch.🤖 Generated with Claude Code