Skip to content
Closed
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
7 changes: 4 additions & 3 deletions .github/workflows/integration-eval.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,10 @@ concurrency:
jobs:
eval-and-judge:
runs-on: ubuntu-latest
# Provider credentials are stored as environment secrets so they can be
# rotated without requiring repo-admin access to Actions secrets.
environment: pypi-internal-preview
# Provider credentials are stored in a dedicated CI environment so they can
# be rotated without repo-admin access and without polluting PyPI preview
# deployment status in the GitHub Deployments sidebar.
environment: integration-eval-secrets
# Only run where integration secrets are available. Fork PRs lack secrets,
# while internal PRs should fail visibly when the real eval path breaks.
if: >-
Expand Down
10 changes: 7 additions & 3 deletions docs/release.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ Current release state:

- `0.6.2` is the latest stable release **published on PyPI** (tag `v0.6.2`).
Use the public install commands below.
- `main` currently carries `0.6.2`. To resume internal-preview builds for the
next line, bump `main` to `0.6.3.dev0` — internal previews then publish as
`0.6.3.dev<N>` automatically after the `test` workflow passes on `main`.
- `main` tracks the next preview line, currently `0.6.3.dev0`. Internal
previews publish as `0.6.3.dev<N>` automatically after the `test` workflow
and integration gate pass on `main`.

## Install and Upgrade Commands

Expand Down Expand Up @@ -143,6 +143,10 @@ Create matching GitHub environments:

- `pypi-internal-preview`: used for automatic preview publishing from `main`.
- `pypi-public`: used for tag-driven public releases.
- `integration-eval-secrets`: used by the integration-eval gate for provider
credentials. Do not reuse `pypi-internal-preview` here, because every Actions
job environment creates a GitHub deployment record and can make the PyPI
preview environment appear stale or inactive.

The workflows build with `uv build --no-sources`, check distributions with
`twine check`, and publish with `uv publish`.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "benchflow"
version = "0.6.2"
version = "0.6.3.dev0"
description = "Multi-turn agent benchmarking with ACP — run any agent, any model, any provider."
readme = "README.md"
requires-python = ">=3.12"
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading