Skip to content

chore(deps): Bump actions/setup-python from 5 to 7 - #1

Closed
dependabot[bot] wants to merge 19 commits into
mainfrom
dependabot/github_actions/actions/setup-python-7
Closed

chore(deps): Bump actions/setup-python from 5 to 7#1
dependabot[bot] wants to merge 19 commits into
mainfrom
dependabot/github_actions/actions/setup-python-7

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 10, 2026

Copy link
Copy Markdown

Bumps actions/setup-python from 5 to 7.

Release notes

Sourced from actions/setup-python's releases.

v7.0.0

What's Changed

Enhancements

Bug Fix

Dependency Upgrade

New Contributors

Full Changelog: actions/setup-python@v6...v7.0.0

v6.3.0

What's Changed

Enhancement

Dependency update

Documentation

New Contributors

Full Changelog: actions/setup-python@v6.2.0...v6.3.0

v6.2.0

What's Changed

Dependency Upgrades

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

pramodbn27 and others added 19 commits August 9, 2026 21:45
Original concept/architecture writeup for the companion-intelligence and
decision-supervision layer this package implements.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Covers what the Sidecar is and isn't, the Main Agent vs. Sidecar split, how
the Decision Gate evaluates a proposed action (Policy/Risk/Intent), the
planned Python API, operating modes, the long-term intent-propagation
vision, and the package's place in the DeepAgentLabs ecosystem.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Design Constraints (LLM-free v0.1, one framework adapter first, required
fail_open/fail_closed, rules before models, Policy/Risk/Intent separation),
Scaffold Gaps, Cross-Project Dependencies, Definition of Done, module-by-
module build order through v1.0, and the narrow v0.2.x validation benchmark
that precedes the full v0.8 evaluation harness.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
pyproject.toml (hatchling build, ruff/mypy strict config, pytest+coverage,
optional agenticlens/agentic-chaos extras with no core hard dependency on
either), Makefile (install/lint/format/typecheck/test/build/check), MIT
LICENSE, and .gitignore.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
AGENTS.md (repo map, design constraints, package boundaries), CONTRIBUTING.md
(dev workflow, release checklist), CI.md (pre-push checklist), SECURITY.md
(scope: intercepted tool-call args and IntentEnvelope data are sensitive),
CHANGELOG.md (Keep a Changelog format, Unreleased scaffold entry).

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
ci.yml (lint/format-check/typecheck/test matrix across Python 3.10-3.13,
scoped to src/tests since ruff >=0.16 reformats fenced python blocks in
Markdown by default, plus a build/package check job), release-pypi.yml
(Trusted Publishing/OIDC on tag push), CODEOWNERS, dependabot.yml.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Top-level package __version__/__all__, plus docstring-only placeholders for
Sidecar/attach() (sidecar.py), DecisionContext (context.py), and the
Decision type (decision.py). Planned for v0.1 -- no logic yet.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Policy Advisor (policy.py, v0.1, rule-based) and Risk Evaluator (risk.py,
v0.1, rule-based) answer 'are you permitted' and 'how dangerous' only --
kept deliberately separate from intent/ (which answers 'is this what was
actually asked for'). Budget Guardian (budget.py, v0.4) placeholder too.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
IntentEnvelope (envelope.py) and drift/constraint checking (alignment.py),
planned for v0.2. Deterministic where possible so it stays checkable
without an LLM -- see the v0.2.x validation benchmark in ROADMAP.md.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Critic mode (critic.py) and a model-agnostic LLM Judge interface
(judge.py), planned for v0.3, off by default given the cost/latency
tradeoff. Must never default to the same model/provider as the Main Agent.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Raw execution event -> human-readable narration (narrate.py), planned for
v0.5, backing the future 'agentic-sidecar status --follow' CLI.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
langgraph.py (v0.1, the only adapter built before framework independence
is claimed) plus crewai.py/autogen.py/openai_agents.py/google_adk.py
(v0.6, not started until the LangGraph adapter is done and stable).

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
…lder

agenticlens.py -- one-way export: Sidecar Decision events -> AgenticLens
Workflow, so 'agenticlens analyze' can surface them alongside cost/latency.
Opt-in only (agentic-sidecar[agenticlens]); core never imports it.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
main.py backing the future 'agentic-sidecar status --follow', planned for
v0.5. [project.scripts] intentionally not wired up in pyproject.toml until
this has a real Typer app.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
test_package.py just asserts __version__ is set -- enough for CI to have
something real to run. examples/README.md explains the first runnable
example lands with v0.1, not before.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
agentic_chaos.py -- two-way, same-run coordination placeholder (Chaos
injects a fault, Sidecar's Decision Gate judges the recovery; also useful
for chaos-testing the Sidecar's own fail_open/fail_closed gate). The
pyproject.toml extra, mypy override, and ROADMAP/AGENTS/CHANGELOG entries
for this were already included in their respective earlier commits.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 5 to 7.
- [Release notes](https://github.com/actions/setup-python/releases)
- [Commits](actions/setup-python@v5...v7)

---
updated-dependencies:
- dependency-name: actions/setup-python
  dependency-version: '7'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github

dependabot Bot commented on behalf of github Aug 10, 2026

Copy link
Copy Markdown
Author

Labels

The following labels could not be found: dependencies, github-actions. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@dependabot @github

dependabot Bot commented on behalf of github Aug 10, 2026

Copy link
Copy Markdown
Author

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@dependabot
dependabot Bot deleted the dependabot/github_actions/actions/setup-python-7 branch August 10, 2026 04:26
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant