Parallel and sequential task-tree runner with matrix expansion and effects plugins.
Project description
Camas
A task runner with parallel execution, matrix expansion, MCP, and pluggable output effects.
- For developers: live tree view that updates in place as tasks stream
- For CI/CD: one definition drives both local runs and CI
- For LLMs: a closed edit→validate→run loop over structured MCP
Example
from camas import Parallel, Sequential
ci = Sequential(
Parallel(
"ruff format . --check",
"npx prettier ."
),
Parallel(
"ruff check .",
"mypy .",
"npx eslint src/",
"pytest",
"npx tsc --noEmit"
),
)
The animated tree above is from a live test fixture — see the walkthrough.
Install
[!TIP] Add extras with PEP 621, e.g.
camas[github_checks]
pipx:
pipx install camas
uv:
uv tool install camas
Nix:
nix run github:JPHutchins/camas # default
nix run github:JPHutchins/camas#with-github-checks # adds httpx for the GitHubChecks effect
nix run github:JPHutchins/camas#with-check # adds ty for `camas --check`
nix run github:JPHutchins/camas#all # both extras
[!NOTE] camas requires Python ≥ 3.10. Adding it to a project that still supports older interpreters (e.g.
requires-python = ">=3.8") makesuv add camas/uv lockfail to resolve — camas can't install for the sub-3.10 part of the range. Guard the dependency with an environment marker so the lock stays green —"camas[mcp]==0.1.26 ; python_version >= '3.10'"— or keep camas out of the project environment entirely and launch it with uvx (camas mcp init --launcher uvx). Either way camas orchestrates from its own ≥3.10 interpreter and shells out, so it still drives the sub-floor cells.
Then scaffold a starter tasks.py in your project root:
camas --init
The starter demonstrates leaf tasks, Sequential/Parallel composition, a matrix, a Config default task, and the optional PEP 723 standalone block — cross-platform placeholder commands ready to be swapped for your real ones.
--init also creates a gitignored .camas/ directory beside tasks.py. Camas writes run logs and a per-leaf timing cache there, so camas --list can annotate tasks with an estimated duration; delete the directory to opt out. Rename or relocate it with Config(camas_dir=...).
[!TIP] A multi-version matrix that builds a per-version environment should point it into
.camas/—env={"UV_PROJECT_ENVIRONMENT": ".camas/.venv-{PY}", "UV_PYTHON": "{PY}"}— so the venvs land in the already-gitignored.camas/rather than the project root. In the root, a later.-scanning tool (a formatter, a linter that isn't gitignore-aware) descends into.venv-3.13/and friends; and note that a formatter's default.venvexclude often won't match a.venv-3.13suffix, so the breakage is tool-inconsistent and only appears after a matrix run.
Want to see the whole authoring surface at once instead of growing the short starter? camas --init --verbose writes a kitchen-sink tasks.py covering every Task/Sequential/Parallel/Config option — path scoping, matrix expansion, agent_format structured output, Config(agent=Claude(fix=..., check=..., default=...)), and a commented recipe for sourcing a matrix axis from your own project's SSOT — each one worked and explained in place. The MCP camas_init tool writes this template by default (pass verbose=false for the short one).
Why camas?
camas is not a build system. camas is for the specific job of running structured trees of shell commands.
| Python task runners† | just | Task | Mage | camas | |
|---|---|---|---|---|---|
| Project scope | Python projects only | Any | Any | Go projects only | Any |
| Definition language | pyproject.toml TOML or @task decorator |
justfile DSL | YAML | Go | Python (typed AST) |
| Inline anonymous parallel groups | No | No | No (must be a named task) | No | Yes |
| Parallel execution | poe yes; Invoke / taskipy no | [parallel] attr |
deps: (parallel) |
mg.Deps(...) |
Parallel(...) |
| Matrix expansion | No | No | for: + parallel:true |
Go loops | matrix= |
| Coupled (non-cross-product) fan-out | No | No | No | Go loops | variants= |
CLI matrix override (e.g. --PY 3.13) |
No | No | No | No | Yes |
| Live tree output | No | No | prefixed / group modes |
No | Termtree (default) |
| Pluggable output renderers | No | No | 3 built-ins | No | --effects |
| Type checking on task definitions | Partial | No | Editor schema | Yes (Go) | mypy / pyright |
| First release / status | 2013–2020, stable | 2016, stable | 2017, stable | 2017, stable | 2026, alpha |
| Ecosystem | Moderate (Python) | Large | Large | Moderate | None yet |
†poethepoet, Invoke, taskipy — pyproject.toml-bound runners that assume a Python project.
| If you need... | Reach for |
|---|---|
| Reproducible, hermetic builds | Nix |
| Incremental file-based builds (skip when inputs unchanged) | Task |
| Simple project command menu | just |
Parameterized tasks (--env=staging, prompts, vars) |
Task |
| Go project, build logic in Go | Mage |
| Inline parallel/sequential trees with a live view | camas |
| Pluggable output effects (live tree locally, summary in CI) | camas |
| Matrix runs across versions/platforms, overridable from the CLI | camas |
CI integration
The renderer is swappable, not the tree. Run the same tasks.py locally with the live Termtree and in CI with Status — one flag changes the output, the pipeline definition is unchanged.
On GitHub Actions, no flag is needed. Camas detects GITHUB_ACTIONS=true and defaults --effects to (Status(output_mode="github"),) — collapsed workflow groups, ISO timestamps with millisecond precision, ANSI colors preserved.
Under an AI coding agent, no flag is needed either. Camas detects agents (the CLAUDECODE env var, or set CAMAS_AGENT=1) and defaults to the line-oriented Status renderer instead of the live Termtree, whose cursor-redraw frames bloat captured output. Prefer the camas mcp server over the CLI from an agent; a Config default_effects always overrides the detection.
- run: uv run camas check
On other CI providers (or to opt into a specific mode), spell it out:
- run: uv run camas check --effects='(Status(output_mode="errors"),)'
See the OutputMode literal and block_for doctests for the per-mode behavior. The status-modes-demo job renders one CI run per mode for visual comparison.
For per-leaf visibility in the PR Checks panel, add the GitHubChecks effect alongside Status (opt-in extra: camas[github_checks]). Each leaf task becomes its own check run, so reviewers see lint / mypy / pytest pass-or-fail individually instead of one monolithic log.
- run: |
uv run --extra github_checks camas matrix --effects='(
Status(output_mode="github"),
GitHubChecks(sha="${{ github.event.pull_request.head.sha || github.sha }}"),
)'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
The job needs permissions: checks: write. Defaults read GITHUB_TOKEN, GITHUB_REPOSITORY, and GITHUB_SHA from the Actions env. The pull_request.head.sha override attaches checks to the PR head rather than the synthetic merge commit. See the github-checks-demo job for a working example.
When to use it. Two things it gives you:
- SSOT between local dev and CI. Your
camas matrixterminal view and the PR Checks panel show the same per-leaf shape (lint [PY=3.10],mypy [PY=3.14], …). The matrix definition lives once intasks.py; CI doesn't re-encode it in YAML. - One runner instead of N. Camas-side parallel matrix on a single runner produces the same per-
(cell, leaf)granularity that a GHA matrix gets across N runners — at 1/N the minutes and camas gives you efficient task parallelization pushing that runner to 100% utilization as much as possible. Worth it on paid-runner budgets.
The downside is that fork PRs get a read-only GITHUB_TOKEN from GitHub and can't write checks — usually a non-issue for Enterprise teams where contributors have push to the org repo.
When not to bother. OSS gets free runners — just GHA-matrix them in parallel for faster wall-clock time. The cost is small: you give up either SSOT (matrix definition moves into YAML) or per-leaf-UI granularity (one PR check entry per runner instead of per leaf) — pick one. What is a deal-breaker for OSS is fork PRs: external-contributor PRs return 403 from the Checks API, so per-leaf entries silently don't appear. The github-checks-demo job is marked continue-on-error so it doesn't block CI when that happens, but GitHubChecks isn't a workable OSS solution.
GitHub Actions matrix (--github-matrix)
Fan out across N runners without giving up SSOT. camas <task> --github-matrix emits the task's fan-out as the JSON GHA's strategy.matrix consumes, so a discover job can source it from tasks.py and downstream jobs read it with fromJSON — the fan-out lives in one place. This repo dogfoods it: see the discover and check jobs fanning out over .python-version.
Three shapes, one per way a tasks.py fans out:
tasks.py |
emitted | job runs |
|---|---|---|
matrix={"PY": (...)} — a cross product |
{"PY": ["3.13", "3.14"]} |
camas <task> with the cell's axes pinned (flags, or job env) |
variants=({...}, {...}) — coupled bundles |
{"include": [{...}, {...}]} |
same, pinning the cell's keys |
a Parallel of named tasks, no axes |
{"task": ["build", "lint", "test"]} |
camas ${{ matrix.task }} |
The last one is the common CI shape — N independent jobs, no version matrix — and its values are the binding names camas <task> dispatches on, so an emitted job can't 404 in CI. Compose a YAML-side axis (os, which a shell command can't change from inside a job anyway) with either object-of-arrays form:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
task: ${{ fromJSON(needs.discover.outputs.matrix).task }}
--github-matrix=axes|variants|tasks pins the shape; pin it in your discover step so a later tasks.py refactor fails there instead of quietly handing the workflow a differently-shaped object. Whatever the shape, camas checks the emitted object against the task's real run-set — each job must run exactly its own cell's leaves, and the jobs together every leaf exactly once — so a fan-out with no faithful projection (independent fan-outs in one tree, a plain leaf beside matrixed siblings) is rejected rather than silently widened or narrowed.
[!NOTE] If your test matrix includes Python below camas's floor (camas needs ≥3.10; a library might test 3.8+), the sub-floor cells can't
uv run camas— camas isn't installable there. Naively switching touvxdoesn't help either:setup-uv'spython-version(and any job-levelUV_PYTHON) also pin auvx camasinvocation onto the sub-floor interpreter. Decouple camas's interpreter from the cell's by scopingUV_PYTHONto the sync step only:- uses: astral-sh/setup-uv@... # no python-version -> no job-wide UV_PYTHON - run: uv sync env: UV_PYTHON: ${{ matrix.python-version }} # step-scoped: builds the cell's .venv - run: uvx camas==0.1.26 <task> # camas gets its own >=3.10 interpreter; # its leaves' `uv run` reuse the synced .venvThe
discoverjob still emits the matrix fromtasks.py, so SSOT is preserved — only the per-cell launcher changes.
Machine-readable report (Ctrf)
For a CI artifact or input to an AI code review, add the Ctrf effect (opt-in extra: camas[ctrf]). It writes the run as a CTRF JSON report — each leaf a test with status, duration, output, command, and exit code. path= writes a file; the default is stdout.
uv run --extra ctrf camas check --effects='(Status(output_mode="errors"), Ctrf(path="ctrf-report.json"))'
Config
Bind a Config in tasks.py and bare camas (no arguments) runs its default_task:
from camas import Config, Sequential, Task
lint = Task("ruff check .")
test = Task("pytest")
ci = Sequential(lint, test, name="ci")
_ = Config(default_task=ci)
Now camas runs ci, camas --dry-run previews it, and the default's matrix axes stay overridable (camas --PY 3.13). With no Config (or no default_task), bare camas prints the full help — task listing, effects, hints — and exits non-zero.
github_task is the CI counterpart, falling back to default_task when unset; it runs under GITHUB_ACTIONS=true. Paired with the automatic Status effect, one bare camas does the right thing in both places:
_ = Config(
default_task=ci, # bare `camas` locally
github_task=Sequential(ci, "pytest --cov"), # bare `camas` under GitHub Actions
)
Config is discovered by type, so the binding's name never matters — _ by convention. Defining two is an error.
Because github_task reproduces CI, running it before a push catches a CI failure locally. If it is a named task, a one-line git hook guards every push:
echo 'exec camas check' > .git/hooks/pre-push && chmod +x .git/hooks/pre-push
git push --no-verify still bypasses it deliberately. An LLM agent needs no hook — when a github_task is declared, camas_list reports it as github_default, so the agent runs camas_run with that name before pushing. The field is null when no github_task is set; camas never infers it from your CI workflow files.
Time budget (--under)
Once camas has timed a task's leaves (the .camas/ cache, surfaced by camas --list), camas --under=<duration> runs only the leaves whose estimate fits a wall-clock budget — the fast inner-loop subset, picked for you instead of by hand.
camas --under=1s # budget the Config default task
camas --under=500ms check # budget a named task or expression
It runs the mutating leaves first, in sequence, then the read-only rest in parallel — so formatters never race a checker over the same files. Mark a leaf that writes the workspace with mutates=True:
fix = Task("ruff check --fix .", mutates=True)
fmt = Task("ruff format .", mutates=True)
lint = Task("ruff check .")
$ camas --under=1s --dry-run
Time budget 1.00s — running 6 leaf(s) (0 unmeasured), excluded 2 over budget.
over budget: pyright ~4.57s, coverage ~20.98s
fix → fmt → (mypy | ty | zuban | pyrefly)
Durations are 1s, 500ms, 2m, 1h, or a bare number of seconds. Only leaves measured to exceed the budget are excluded; a leaf with no recorded timing yet runs anyway (and is thereby measured) — skipping it would keep it forever untimed. The budget is per-leaf: a measured leaf runs when its own estimate fits, so the parallel group's wall-clock stays near the budget.
For agents, camas_run exposes the same budget as its under argument (omit task to budget the project default), and the response's budget field reports what was selected and excluded — a tight, time-boxed validate loop over structured MCP.
Path scoping (--paths)
camas <task> --paths <path>… scopes a run to changed paths instead of the whole tree. A command opts in by writing the {paths} placeholder and declaring its scope with paths= — a directory prefix, or a (changed) -> paths callable. A Sequential/Parallel may carry paths= too: it's the default scope for descendant {paths} commands that set none (the same way env/cwd propagate into a group's leaves):
py = Task("ruff format {paths}", mutates=True, paths="src")
web = Task("prettier --write {paths}", mutates=True, paths="web")
# the group's paths="." is the default for both children (neither sets its own):
autofix = Parallel(Task("ruff format {paths}"), Task("ruff check --fix {paths}"), paths=".")
_ = Config(agent=Claude(fix=Sequential(py, web, autofix)))
--paths works on any task — camas check --paths src/a.py. Without it, every {paths} resolves to its full-run default (ruff format src); with it, each {paths} command runs only over the changed files it covers, and one covering none is dropped. A command without {paths} can't be narrowed, so its paths= is a no-op and it always runs — unless it declares when= (below), camas errs on correctness (a tool it can't narrow might be affected by the edit). --paths is repeatable, or comma-separated.
A command that can't take {paths} (cargo build, nix flake check, ctest) is scoped with when= instead — a directory-prefix string or Path (coerced to its POSIX prefix), a tuple of those, or a (changed) -> bool callable. On a scoped run a leaf whose when= doesn't match the changed set is dropped; a full run never consults it. Like paths=, a group's when= is the default for descendant leaves that set none. A leaf with a cwd but no when= gates on its cwd directory — the monorepo file-tree default; set when="." to opt back into always-run:
build = Task("cargo build", when="src") # runs only when src/ changed
flake = Task("nix flake check", when=("flake.nix", "nix"))
tests = Task("cargo test", cwd="code-gen") # when= defaults to "code-gen"
A paths= callable is called with () on a full run — one that filters the changed set would return () and strip the command's arguments entirely (a formatter reading stdin on no args hangs). by_suffix(suffixes, default=...) is the safe factory: it filters the changed files by suffix on a scoped run and returns default on a full run:
tidy = Task("clang-tidy {paths}", paths=by_suffix((".c", ".h"), default=("src",)))
camas --check (and the MCP camas_check) flags both authoring mistakes as advisory warnings: a leaf whose own paths= can never apply (no {paths} token — use when= instead) and a {paths} callable that goes empty on a full run.
For the Claude Code plugin, you register the auto-fix node — whatever you named it — to Config.agent.fix; the PostToolBatch hook runs that node over the just-changed files, zero model tokens. Run camas mcp init --claude to write the full Claude Code setup in one command (.mcp.json + PostToolBatch/Stop autofix hooks + an async Stop nudge hook + the tiered camas-fixer agents + gate skill), resolving the launcher for your project (uv run camas/uv run tasks.py, uvx, or a PATH camas) and pinning it — to tasks.py's PEP 723 block when present, else to the running camas release version (a dev/local build is left unpinned, since it isn't published to pin against). Pass --launcher uv|uvx|camas to force a strategy instead of auto-detecting — e.g. --launcher camas for a nix/flake-provided camas on PATH. For a bare .mcp.json for any MCP client, camas mcp init alone (same launcher/pin resolution, no Claude Code files). Or wire it by hand:
// .claude/settings.json
{ "hooks": { "PostToolBatch": [
{ "hooks": [{ "type": "command", "command": "camas mcp fix" }] } ] } }
camas mcp fix runs the registered Config.agent.fix node (not a task named fix — that's just camas fix, your own task); it reads the changed files from a PostToolBatch or Stop event on stdin (--paths still works for a manual run). With no fix registered it is a clean no-op, so the hooks are harmless without it. camas mcp init --claude also writes a second Stop hook, camas mcp gate --under 5s --nudge (async: true, asyncRewake: true) — a headless, time-boxed check that stays silent when green and otherwise wakes the main agent with a reminder to delegate to the camas-fixer ladder (see the gate skill), without ever blocking the turn. The nudge is self-limiting: at most one wake per prompt (it honors the Stop event's stop_hook_active and tracks the prompt_id it last nudged), and a configuration state — no check node registered, a tasks.py load error, a missing camas[mcp] extra — exits 0 silently instead of waking the agent over something a rewake cannot fix. The launcher runs in your project's environment — camas mcp init --claude resolves and pins it: to tasks.py's PEP 723 declaration (dependencies = ["camas>=X.Y"]) when present, else to the running camas release version; re-run camas mcp init --claude after bumping either to keep it current.
Monorepos
A tasks.py composes others with Project. Binding one imports a child tasks.py as a task node — a self-contained child project — and mounts the child's own tasks under the binding name:
from camas import Claude, Config, Parallel, Project
libs = Project("libs") # camas libs, camas libs.search.lint, ...
api = Project("services/api") # name the handle whatever you like
_ = Config(
default_task=Parallel(libs, api, name="all"), # each child's default_task, in parallel
github_task=Parallel(libs, api, name="ci"), # each child's github_task
agent=Claude(
fix=Parallel(libs, api, name="fix"), # each child's fix node
check=Parallel(libs, api, name="check"), # each child's check node
),
)
Name each composite (or bind it to a variable) so camas_list can report it as the default — an
anonymous inline Parallel/Sequential in a Config task field surfaces as null, and camas --check flags that papercut.
A reference composes the child's matching field: the same bare libs grabs the child's default_task in default_task, its github_task in github_task, its fix node in agent.fix, its check node in agent.check — the slot the reference sits in selects which field of the child's own Config it contributes. So a Parallel of references in any slot is that slot composed across the monorepo, each child contributing its own. A binding name resolves by context instead — camas libs runs whatever a bare camas runs in that directory (its default locally, its github_task under CI, its agent default under an agent). camas libs.search.lint reaches a task the child exposes (because libs/tasks.py itself did search = Project("search")), and expressions compose across namespaces (camas '{libs.search.lint, api.deploy}').
Nodes stay anchored where they were authored: a leaf's cwd and its paths=/when= scopes are relative to its own tasks.py, rebased across the boundary no matter where camas is invoked from. Because a leaf's when= defaults to its cwd, a scoped run (the gate, or --paths) automatically runs only the children whose directory changed — no per-leaf when= anywhere in a child's tasks.py. Children are referenced by path relative to the importing file and live within its directory. The monorepo fixture exercises the permutations.
Effects plugins
Define an Effect in your tasks.py and it's discovered automatically — usable by name from --effects and listed under camas --effects. See examples/effect-plugin/ for a typed Tail effect that streams per-task output as it arrives.
Versioning
The public API is published through versioned namespaces — camas.v0 today, camas.v1 and beyond later. Import from a generation to pin the API shape: a name a generation exports is never removed or changed within that generation. The scheme tracks semver — v0 pairs with camas 0.x and is as loose as semver says 0.x is (the surface prefers to grow; breaking changes stay possible until 1.0, made deliberately and noted in releases). At 1.0 a generation freezes: a breaking change forces the next camas.vN, and published generations keep shipping, so a tasks.py or effect plugin pinned to one keeps working across upgrades.
The top-level camas namespace is the unversioned alias for the latest generation: from camas import Task, Sequential, Parallel, Effect, Config re-exports that generation's five headline definers and is kept 1:1 with its package surface. The rest of the public API for a generation — TaskNode, the TaskEvent stream, LeafState, Completion — lives in that generation's submodules, e.g. from camas.v0.task_event import TaskEvent. Everything under camas.core / camas.main is internal — it consumes whatever generations are installed and carries no stability promise.
To pin a minimum camas feature level, use your dependency declaration (camas>=0.x in pyproject.toml, or PEP 723 inline metadata) — the import path covers API shape; the package pin covers feature availability.
Standalone tasks.py (PEP 723)
For a non-Python project that wants a single-file task runner — no pyproject.toml, no venv to manage — give tasks.py a PEP 723 header and a run_cli(globals()) entry point, then run it with any PEP 723-aware tool:
# /// script
# requires-python = ">=3.11"
# dependencies = ["camas>=0.1.8"]
# ///
"""Build tasks for my project."""
from camas import Parallel, Task, run_cli
lint = Task("ruff check .")
test = Task("pytest")
check = Parallel(lint, test)
if __name__ == "__main__":
run_cli(globals())
uv run tasks.py check # uv reads the header, builds an ephemeral env, runs
uv run tasks.py --list # every camas flag still works
pipx run tasks.py test
run_cli(globals()) introspects the module for Task / Sequential / Parallel and Effect bindings — exactly what camas does when it auto-discovers a tasks.py — so the standalone file behaves identically to a discovered one: camas <task> --help, --dry-run, matrix overrides, and --check all work and cite the file. run_cli is part of the stable surface (from camas import run_cli, or from camas.v0 import run_cli to pin the generation); it's imported lazily, so a plain from camas import Task doesn't pull it in.
The header owns version pinning (dependencies = ["camas>=0.1.8"]) and the interpreter floor (requires-python); it's inert to camas --check and to auto-discovery, which read the module the same way with or without it.
Reference
- examples/ — full project layouts under test coverage. The canonical reference for how to structure
tasks.py, use[tool.camas.tasks]inpyproject.toml, drive a matrix from.python-version, or scope a 2-axis matrix from the CLI. - src/camas/ — typed Python with thorough docstrings.
camas --helpandcamas <task> --helplink back here. camaswith no args runs theConfigdefault task (or prints the full help when none is defined);camas <task> --helpshows the expanded tree, matrix axes, and override flags.
Walkthrough
The animated tree at the top is generated from this tasks.py:
examples/tauri-app/tasks.py — Rust + TypeScript + Python in one tree
from pathlib import Path
from camas import Config, Parallel, Sequential, Task
src_tauri = Path("src-tauri")
python_sdk = Path("python-sdk")
node = Path("node_modules/.bin")
frontend = Sequential(
f"{node}/prettier --write .",
Parallel(
f"{node}/eslint src/",
f"{node}/tsc --noEmit",
f"{node}/vitest run",
),
)
backend = Sequential(
Task("cargo fmt --all", cwd=src_tauri),
Parallel(
Task("cargo clippy --all-targets --locked -- -D warnings", cwd=src_tauri),
Task("cargo test --all-targets --locked", cwd=src_tauri),
),
)
sdk = Sequential(
Task("uv run ruff check --fix .", cwd=python_sdk),
Task("uv run ruff format .", cwd=python_sdk),
Parallel(
Task("uv run mypy .", cwd=python_sdk),
Task("uv run pytest", cwd=python_sdk),
),
)
all = Parallel(frontend, backend, sdk)
fix = Parallel(
f"{node}/prettier --write .",
Task("cargo fmt --all", cwd=src_tauri),
Sequential(
Task("uv run ruff check --fix .", cwd=python_sdk),
Task("uv run ruff format .", cwd=python_sdk),
),
)
build = Parallel(
Task("npm run tauri build {FLAG}"),
matrix={"FLAG": ("-- --debug", "")},
help="Debug and release builds (FLAG='-- --debug' debug, FLAG='' release)",
)
_ = Config(default_task=all)
$ cd examples/tauri-app
List the tasks —
$ camas --list
output
Available tasks from .../tauri-app/tasks.py:
all frontend | backend | sdk
backend cargo fmt --all, cargo clippy --all-targets --locked -- -D warnings | cargo test --all-targets --locked
build Debug and release builds (FLAG='-- --debug' debug, FLAG='' release) [matrix: FLAG×2 (-- --debug..)]
fix node_modules/.bin/prettier --write . | cargo fmt --all | (uv run ruff check --fix ., uv run ruff format .)
frontend node_modules/.bin/prettier --write ., node_modules/.bin/eslint src/ | node_modules/.bin/tsc --noEmit | node_modules/.bin/vitest run
sdk uv run ruff check --fix ., uv run ruff format ., uv run mypy . | uv run pytest
Preview what all would run —
$ camas --dry-run all
output
all ∥
┃ frontend →
┃ ├─ node_modules/.bin/prettier --write .
┃ └─ node_modules/.bin/eslint src/ | node_modules/.bin/tsc --noEmit | node_modules/.bin/vitest run
┃ ┃ node_modules/.bin/eslint src/
┃ ┃ node_modules/.bin/tsc --noEmit
┃ ┃ node_modules/.bin/vitest run
┃ backend →
┃ ├─ cargo fmt --all (cwd: src-tauri)
┃ └─ cargo clippy --all-targets --locked -- -D warnings | cargo test --all-targets --locked
┃ ┃ cargo clippy --all-targets --locked -- -D warnings (cwd: src-tauri)
┃ ┃ cargo test --all-targets --locked (cwd: src-tauri)
┃ sdk →
┃ ├─ uv run ruff check --fix . (cwd: python-sdk)
┃ ├─ uv run ruff format . (cwd: python-sdk)
┃ └─ uv run mypy . | uv run pytest
┃ ┃ uv run mypy . (cwd: python-sdk)
┃ ┃ uv run pytest (cwd: python-sdk)
Tree-symbol key: ∥ ends a Parallel header, → ends a Sequential. Children hang off ┃ (parallel siblings, run concurrently) or ├─ / └─ (sequential steps, short-circuit on first failure).
Discover a task's matrix axes and override flags —
$ camas build --help
output
usage: camas build [-h] [--dry-run | --github-matrix [SHAPE]] [--effects EFFECTS] [--FLAG VAL[,VAL...]]
Debug and release builds (FLAG='-- --debug' debug, FLAG='' release)
runs the 'build' task:
build ∥
┃ npm run tauri build -- --debug [FLAG=-- --debug]: npm run tauri build -- --debug FLAG=-- --debug
┃ npm run tauri build [FLAG=]: npm run tauri build FLAG=
Matrix axes (override with --AXIS VAL[,VAL...]):
--FLAG -- --debug,
Pin the matrix from the CLI —
$ camas build --dry-run --FLAG '-- --debug'
output
build ∥
┃ npm run tauri build -- --debug [FLAG=-- --debug]: npm run tauri build -- --debug FLAG=-- --debug
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file camas-0.1.29.tar.gz.
File metadata
- Download URL: camas-0.1.29.tar.gz
- Upload date:
- Size: 203.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8ed98007cb2f66dc3e20e9d5603cc38546bbb9f11c53104e69633a1f8f43a91c
|
|
| MD5 |
38e42f640f0ce36df37c54c6fc4a2510
|
|
| BLAKE2b-256 |
6906478d9a0038bccb9ba04ead373be0f5a797af59f020522850f658112cb071
|
Provenance
The following attestation bundles were made for camas-0.1.29.tar.gz:
Publisher:
ci.yaml on JPHutchins/camas
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
camas-0.1.29.tar.gz -
Subject digest:
8ed98007cb2f66dc3e20e9d5603cc38546bbb9f11c53104e69633a1f8f43a91c - Sigstore transparency entry: 2240791165
- Sigstore integration time:
-
Permalink:
JPHutchins/camas@18aad057d46f1fda1e1aeb32fd234c0e7e86a782 -
Branch / Tag:
refs/tags/0.1.29 - Owner: https://github.com/JPHutchins
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yaml@18aad057d46f1fda1e1aeb32fd234c0e7e86a782 -
Trigger Event:
push
-
Statement type:
File details
Details for the file camas-0.1.29-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: camas-0.1.29-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 654.4 kB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f93b90c0321712c023d0047ffefa084c6968cc1a569e6e5edaecdbdf747739d8
|
|
| MD5 |
b79b677e081bf8622a28156042461f5a
|
|
| BLAKE2b-256 |
2daf308bc3a442401135a9b2e3d0369b6ad7748bb6b7155f704272c6ee9fc49c
|
Provenance
The following attestation bundles were made for camas-0.1.29-cp314-cp314-win_amd64.whl:
Publisher:
ci.yaml on JPHutchins/camas
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
camas-0.1.29-cp314-cp314-win_amd64.whl -
Subject digest:
f93b90c0321712c023d0047ffefa084c6968cc1a569e6e5edaecdbdf747739d8 - Sigstore transparency entry: 2240798040
- Sigstore integration time:
-
Permalink:
JPHutchins/camas@18aad057d46f1fda1e1aeb32fd234c0e7e86a782 -
Branch / Tag:
refs/tags/0.1.29 - Owner: https://github.com/JPHutchins
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yaml@18aad057d46f1fda1e1aeb32fd234c0e7e86a782 -
Trigger Event:
push
-
Statement type:
File details
Details for the file camas-0.1.29-cp314-cp314-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: camas-0.1.29-cp314-cp314-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9b890b6d0bfa2b78e22f2766e6cb79dde9aa67432eab67b2ab1497870b0065ba
|
|
| MD5 |
660c892647cd8ef02ce75a2d60a169a2
|
|
| BLAKE2b-256 |
ae93ade1ab5bcb51b0c356c99ab40abaa47eb281fbef150696d24d62b69338d3
|
Provenance
The following attestation bundles were made for camas-0.1.29-cp314-cp314-musllinux_1_2_x86_64.whl:
Publisher:
ci.yaml on JPHutchins/camas
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
camas-0.1.29-cp314-cp314-musllinux_1_2_x86_64.whl -
Subject digest:
9b890b6d0bfa2b78e22f2766e6cb79dde9aa67432eab67b2ab1497870b0065ba - Sigstore transparency entry: 2240800986
- Sigstore integration time:
-
Permalink:
JPHutchins/camas@18aad057d46f1fda1e1aeb32fd234c0e7e86a782 -
Branch / Tag:
refs/tags/0.1.29 - Owner: https://github.com/JPHutchins
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yaml@18aad057d46f1fda1e1aeb32fd234c0e7e86a782 -
Trigger Event:
push
-
Statement type:
File details
Details for the file camas-0.1.29-cp314-cp314-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: camas-0.1.29-cp314-cp314-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9e1755d53549c7419e24417796524170efd8eeb93e44780648072de80d6132d6
|
|
| MD5 |
1059b73cebb9f68d748888b73bc35c4f
|
|
| BLAKE2b-256 |
1cb7576373d05d284cdf56bfc202b757186bff930cb3923215de22a07d07a654
|
Provenance
The following attestation bundles were made for camas-0.1.29-cp314-cp314-musllinux_1_2_aarch64.whl:
Publisher:
ci.yaml on JPHutchins/camas
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
camas-0.1.29-cp314-cp314-musllinux_1_2_aarch64.whl -
Subject digest:
9e1755d53549c7419e24417796524170efd8eeb93e44780648072de80d6132d6 - Sigstore transparency entry: 2240804330
- Sigstore integration time:
-
Permalink:
JPHutchins/camas@18aad057d46f1fda1e1aeb32fd234c0e7e86a782 -
Branch / Tag:
refs/tags/0.1.29 - Owner: https://github.com/JPHutchins
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yaml@18aad057d46f1fda1e1aeb32fd234c0e7e86a782 -
Trigger Event:
push
-
Statement type:
File details
Details for the file camas-0.1.29-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: camas-0.1.29-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cffb1a49be03a55cbe689b75d887e5c591bda082b32dee38fe50039241e49f36
|
|
| MD5 |
56b4c26f89e872837d470d2d0e7dd155
|
|
| BLAKE2b-256 |
5226fdaf5c62231b80ea5a6e9ad6cbf1a8f6ad746e522f843d472404a664f784
|
Provenance
The following attestation bundles were made for camas-0.1.29-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
ci.yaml on JPHutchins/camas
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
camas-0.1.29-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
cffb1a49be03a55cbe689b75d887e5c591bda082b32dee38fe50039241e49f36 - Sigstore transparency entry: 2240802262
- Sigstore integration time:
-
Permalink:
JPHutchins/camas@18aad057d46f1fda1e1aeb32fd234c0e7e86a782 -
Branch / Tag:
refs/tags/0.1.29 - Owner: https://github.com/JPHutchins
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yaml@18aad057d46f1fda1e1aeb32fd234c0e7e86a782 -
Trigger Event:
push
-
Statement type:
File details
Details for the file camas-0.1.29-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: camas-0.1.29-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
540b1d0ec48f481ebfdb51cf40760aa39e18dbfd760cea734f966870d755cbb6
|
|
| MD5 |
a4b9dd775147dd9a2c48239b12a26e67
|
|
| BLAKE2b-256 |
798a07e0c748dff64dc292ab5e27ca8d0c239aaca1ece69f95478d2774f39e48
|
Provenance
The following attestation bundles were made for camas-0.1.29-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
ci.yaml on JPHutchins/camas
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
camas-0.1.29-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
540b1d0ec48f481ebfdb51cf40760aa39e18dbfd760cea734f966870d755cbb6 - Sigstore transparency entry: 2240799866
- Sigstore integration time:
-
Permalink:
JPHutchins/camas@18aad057d46f1fda1e1aeb32fd234c0e7e86a782 -
Branch / Tag:
refs/tags/0.1.29 - Owner: https://github.com/JPHutchins
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yaml@18aad057d46f1fda1e1aeb32fd234c0e7e86a782 -
Trigger Event:
push
-
Statement type:
File details
Details for the file camas-0.1.29-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: camas-0.1.29-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 788.5 kB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2b02eeffde6afec72fce736a9827d3044f96c379cf1d8d3c2e1b5fcd1ff290f0
|
|
| MD5 |
3782d8510eecc3c5f51d86d5779ea9f9
|
|
| BLAKE2b-256 |
1491c5df906987d3cc8d7ca84a23280ab0c08eaf6818cad464d7974c7d535025
|
Provenance
The following attestation bundles were made for camas-0.1.29-cp314-cp314-macosx_11_0_arm64.whl:
Publisher:
ci.yaml on JPHutchins/camas
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
camas-0.1.29-cp314-cp314-macosx_11_0_arm64.whl -
Subject digest:
2b02eeffde6afec72fce736a9827d3044f96c379cf1d8d3c2e1b5fcd1ff290f0 - Sigstore transparency entry: 2240802835
- Sigstore integration time:
-
Permalink:
JPHutchins/camas@18aad057d46f1fda1e1aeb32fd234c0e7e86a782 -
Branch / Tag:
refs/tags/0.1.29 - Owner: https://github.com/JPHutchins
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yaml@18aad057d46f1fda1e1aeb32fd234c0e7e86a782 -
Trigger Event:
push
-
Statement type:
File details
Details for the file camas-0.1.29-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: camas-0.1.29-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 643.9 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9842e33cf4be81cf869c8d5938eb7b58a6f274df55eb1c52a2d33831ca2c858d
|
|
| MD5 |
6ce9203d7adce28fb7822ec2493ef5b1
|
|
| BLAKE2b-256 |
9c860d47a657c273be95579db234f7d9016fb044469009f5800b0b058832374b
|
Provenance
The following attestation bundles were made for camas-0.1.29-cp313-cp313-win_amd64.whl:
Publisher:
ci.yaml on JPHutchins/camas
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
camas-0.1.29-cp313-cp313-win_amd64.whl -
Subject digest:
9842e33cf4be81cf869c8d5938eb7b58a6f274df55eb1c52a2d33831ca2c858d - Sigstore transparency entry: 2240798592
- Sigstore integration time:
-
Permalink:
JPHutchins/camas@18aad057d46f1fda1e1aeb32fd234c0e7e86a782 -
Branch / Tag:
refs/tags/0.1.29 - Owner: https://github.com/JPHutchins
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yaml@18aad057d46f1fda1e1aeb32fd234c0e7e86a782 -
Trigger Event:
push
-
Statement type:
File details
Details for the file camas-0.1.29-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: camas-0.1.29-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7e87e1c606edf75939f31b06f09c6856e95576e0f1f85a547bf9bd9ce987800f
|
|
| MD5 |
2337a287ed86ae635c86090e1a6b1177
|
|
| BLAKE2b-256 |
b6f600f1b550a4bc30d2b23974da785773955a586cd5d81eb79104e692209460
|
Provenance
The following attestation bundles were made for camas-0.1.29-cp313-cp313-musllinux_1_2_x86_64.whl:
Publisher:
ci.yaml on JPHutchins/camas
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
camas-0.1.29-cp313-cp313-musllinux_1_2_x86_64.whl -
Subject digest:
7e87e1c606edf75939f31b06f09c6856e95576e0f1f85a547bf9bd9ce987800f - Sigstore transparency entry: 2240803456
- Sigstore integration time:
-
Permalink:
JPHutchins/camas@18aad057d46f1fda1e1aeb32fd234c0e7e86a782 -
Branch / Tag:
refs/tags/0.1.29 - Owner: https://github.com/JPHutchins
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yaml@18aad057d46f1fda1e1aeb32fd234c0e7e86a782 -
Trigger Event:
push
-
Statement type:
File details
Details for the file camas-0.1.29-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: camas-0.1.29-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7636a0df2df4cb1e8ff7f00dc30d010b5780aac70008c37dc19e41a468145437
|
|
| MD5 |
e392599c31889104b2c6d73ea9dc2d8b
|
|
| BLAKE2b-256 |
b65cf1aa9b52a112cb65db3d1802d8262af3fa5ca0540a99e03d7196eeab33d8
|
Provenance
The following attestation bundles were made for camas-0.1.29-cp313-cp313-musllinux_1_2_aarch64.whl:
Publisher:
ci.yaml on JPHutchins/camas
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
camas-0.1.29-cp313-cp313-musllinux_1_2_aarch64.whl -
Subject digest:
7636a0df2df4cb1e8ff7f00dc30d010b5780aac70008c37dc19e41a468145437 - Sigstore transparency entry: 2240793706
- Sigstore integration time:
-
Permalink:
JPHutchins/camas@18aad057d46f1fda1e1aeb32fd234c0e7e86a782 -
Branch / Tag:
refs/tags/0.1.29 - Owner: https://github.com/JPHutchins
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yaml@18aad057d46f1fda1e1aeb32fd234c0e7e86a782 -
Trigger Event:
push
-
Statement type:
File details
Details for the file camas-0.1.29-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: camas-0.1.29-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
73218e0d4caae670476448aa941bc90f4a63b6231393aa704cd580d887d825da
|
|
| MD5 |
de3b0ff4be1c83dda36f262b9a31427c
|
|
| BLAKE2b-256 |
98ea16d764903cce4e76b5e32292d37c0795899ccc06dd614309d43fa0c75e22
|
Provenance
The following attestation bundles were made for camas-0.1.29-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
ci.yaml on JPHutchins/camas
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
camas-0.1.29-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
73218e0d4caae670476448aa941bc90f4a63b6231393aa704cd580d887d825da - Sigstore transparency entry: 2240803826
- Sigstore integration time:
-
Permalink:
JPHutchins/camas@18aad057d46f1fda1e1aeb32fd234c0e7e86a782 -
Branch / Tag:
refs/tags/0.1.29 - Owner: https://github.com/JPHutchins
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yaml@18aad057d46f1fda1e1aeb32fd234c0e7e86a782 -
Trigger Event:
push
-
Statement type:
File details
Details for the file camas-0.1.29-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: camas-0.1.29-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
392dafc58df0c5a03fc1b25e6792f7735cc46e7443b7a5006d258f263a819622
|
|
| MD5 |
6061ffc35f448791da7313bc85bb0239
|
|
| BLAKE2b-256 |
a2bcd666cdb5ac6b75c11fe61869d7bacd19891c23c7743254e7e249fada2e52
|
Provenance
The following attestation bundles were made for camas-0.1.29-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
ci.yaml on JPHutchins/camas
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
camas-0.1.29-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
392dafc58df0c5a03fc1b25e6792f7735cc46e7443b7a5006d258f263a819622 - Sigstore transparency entry: 2240794966
- Sigstore integration time:
-
Permalink:
JPHutchins/camas@18aad057d46f1fda1e1aeb32fd234c0e7e86a782 -
Branch / Tag:
refs/tags/0.1.29 - Owner: https://github.com/JPHutchins
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yaml@18aad057d46f1fda1e1aeb32fd234c0e7e86a782 -
Trigger Event:
push
-
Statement type:
File details
Details for the file camas-0.1.29-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: camas-0.1.29-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 787.8 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
52d13d2474524a43660fdfadc121b194e17199dfbd6d8b3cf3cc66f037f01917
|
|
| MD5 |
399f8acae5209da46fc7f49defe2cda4
|
|
| BLAKE2b-256 |
188afe11694f4710b423f7d6006393c51cad4c408f385f5307f86a12254c396d
|
Provenance
The following attestation bundles were made for camas-0.1.29-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
ci.yaml on JPHutchins/camas
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
camas-0.1.29-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
52d13d2474524a43660fdfadc121b194e17199dfbd6d8b3cf3cc66f037f01917 - Sigstore transparency entry: 2240796912
- Sigstore integration time:
-
Permalink:
JPHutchins/camas@18aad057d46f1fda1e1aeb32fd234c0e7e86a782 -
Branch / Tag:
refs/tags/0.1.29 - Owner: https://github.com/JPHutchins
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yaml@18aad057d46f1fda1e1aeb32fd234c0e7e86a782 -
Trigger Event:
push
-
Statement type:
File details
Details for the file camas-0.1.29-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: camas-0.1.29-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 640.7 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b500f544801badd0f41ab7eba4827b6578b255682ba045f6e7c95285ec0213f3
|
|
| MD5 |
9103907c0398e79faf12e6dc105e52b4
|
|
| BLAKE2b-256 |
6f65e49518044baea4d3315a2cfe3f84bd12c4d131498ad12ec7809490fbdfc0
|
Provenance
The following attestation bundles were made for camas-0.1.29-cp312-cp312-win_amd64.whl:
Publisher:
ci.yaml on JPHutchins/camas
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
camas-0.1.29-cp312-cp312-win_amd64.whl -
Subject digest:
b500f544801badd0f41ab7eba4827b6578b255682ba045f6e7c95285ec0213f3 - Sigstore transparency entry: 2240795902
- Sigstore integration time:
-
Permalink:
JPHutchins/camas@18aad057d46f1fda1e1aeb32fd234c0e7e86a782 -
Branch / Tag:
refs/tags/0.1.29 - Owner: https://github.com/JPHutchins
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yaml@18aad057d46f1fda1e1aeb32fd234c0e7e86a782 -
Trigger Event:
push
-
Statement type:
File details
Details for the file camas-0.1.29-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: camas-0.1.29-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ef6d7ab33139d91a93311f92e19e8b57c2c7eeb5be0aadb7f7523697a7f5b90d
|
|
| MD5 |
4f50e1083b6121cfd75e712004302b8f
|
|
| BLAKE2b-256 |
b119921d2fd08554a7b7bd422b2f0673f475a484ad0bd2de694e5b1b49e422a6
|
Provenance
The following attestation bundles were made for camas-0.1.29-cp312-cp312-musllinux_1_2_x86_64.whl:
Publisher:
ci.yaml on JPHutchins/camas
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
camas-0.1.29-cp312-cp312-musllinux_1_2_x86_64.whl -
Subject digest:
ef6d7ab33139d91a93311f92e19e8b57c2c7eeb5be0aadb7f7523697a7f5b90d - Sigstore transparency entry: 2240804701
- Sigstore integration time:
-
Permalink:
JPHutchins/camas@18aad057d46f1fda1e1aeb32fd234c0e7e86a782 -
Branch / Tag:
refs/tags/0.1.29 - Owner: https://github.com/JPHutchins
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yaml@18aad057d46f1fda1e1aeb32fd234c0e7e86a782 -
Trigger Event:
push
-
Statement type:
File details
Details for the file camas-0.1.29-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: camas-0.1.29-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e3c4f3a038feddc9a87b5b47d9016e88de9b92e1c89ab35d05e9bce567d36162
|
|
| MD5 |
f6ea12b8004958c229098b99815603a2
|
|
| BLAKE2b-256 |
96e14d4c3e1c8fa5e659e94067ef67c03ecbd6e6553b1378bbc95d18d6e009d2
|
Provenance
The following attestation bundles were made for camas-0.1.29-cp312-cp312-musllinux_1_2_aarch64.whl:
Publisher:
ci.yaml on JPHutchins/camas
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
camas-0.1.29-cp312-cp312-musllinux_1_2_aarch64.whl -
Subject digest:
e3c4f3a038feddc9a87b5b47d9016e88de9b92e1c89ab35d05e9bce567d36162 - Sigstore transparency entry: 2240804520
- Sigstore integration time:
-
Permalink:
JPHutchins/camas@18aad057d46f1fda1e1aeb32fd234c0e7e86a782 -
Branch / Tag:
refs/tags/0.1.29 - Owner: https://github.com/JPHutchins
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yaml@18aad057d46f1fda1e1aeb32fd234c0e7e86a782 -
Trigger Event:
push
-
Statement type:
File details
Details for the file camas-0.1.29-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: camas-0.1.29-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
04daf15d05f5c62d2284746851f5f426f6301737a5484df86267f14d9a165c66
|
|
| MD5 |
72672637ecc11ec7cb0038b5152a848a
|
|
| BLAKE2b-256 |
685477c71003e18c53c9de3b5b5ac26206117e8a26f9c963c400d98550f863c6
|
Provenance
The following attestation bundles were made for camas-0.1.29-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
ci.yaml on JPHutchins/camas
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
camas-0.1.29-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
04daf15d05f5c62d2284746851f5f426f6301737a5484df86267f14d9a165c66 - Sigstore transparency entry: 2240805530
- Sigstore integration time:
-
Permalink:
JPHutchins/camas@18aad057d46f1fda1e1aeb32fd234c0e7e86a782 -
Branch / Tag:
refs/tags/0.1.29 - Owner: https://github.com/JPHutchins
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yaml@18aad057d46f1fda1e1aeb32fd234c0e7e86a782 -
Trigger Event:
push
-
Statement type:
File details
Details for the file camas-0.1.29-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: camas-0.1.29-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5644ccd3535b15801b1bcfb6d17b72bb12d27cfbddb68c1a05b3477823c79c37
|
|
| MD5 |
c7a809bf219059b60fc472b16f760b53
|
|
| BLAKE2b-256 |
8e3cc2cec614203bd5fa4c9e52ad8b592ea74fab37f7b8150d81447cad7b0d75
|
Provenance
The following attestation bundles were made for camas-0.1.29-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
ci.yaml on JPHutchins/camas
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
camas-0.1.29-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
5644ccd3535b15801b1bcfb6d17b72bb12d27cfbddb68c1a05b3477823c79c37 - Sigstore transparency entry: 2240801955
- Sigstore integration time:
-
Permalink:
JPHutchins/camas@18aad057d46f1fda1e1aeb32fd234c0e7e86a782 -
Branch / Tag:
refs/tags/0.1.29 - Owner: https://github.com/JPHutchins
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yaml@18aad057d46f1fda1e1aeb32fd234c0e7e86a782 -
Trigger Event:
push
-
Statement type:
File details
Details for the file camas-0.1.29-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: camas-0.1.29-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 800.1 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
add1f707ceac5ed49cbf6e80dfd98bc8366f410d272097f5967343fb7fd5d5b0
|
|
| MD5 |
089865de2322993629e902d75e678531
|
|
| BLAKE2b-256 |
7aa426b9119ddc8eb7255c23d7ee1c55f5f15d7bac610a40702240eebfaaff2a
|
Provenance
The following attestation bundles were made for camas-0.1.29-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
ci.yaml on JPHutchins/camas
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
camas-0.1.29-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
add1f707ceac5ed49cbf6e80dfd98bc8366f410d272097f5967343fb7fd5d5b0 - Sigstore transparency entry: 2240805080
- Sigstore integration time:
-
Permalink:
JPHutchins/camas@18aad057d46f1fda1e1aeb32fd234c0e7e86a782 -
Branch / Tag:
refs/tags/0.1.29 - Owner: https://github.com/JPHutchins
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yaml@18aad057d46f1fda1e1aeb32fd234c0e7e86a782 -
Trigger Event:
push
-
Statement type:
File details
Details for the file camas-0.1.29-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: camas-0.1.29-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 638.6 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3e0aeac1c4adaec2d386e7ba05be74a4a1c20b4158d2b86b3f5f8e3b1fddd129
|
|
| MD5 |
6d5de83bf90e94900bfef01e2ed7ca1f
|
|
| BLAKE2b-256 |
1e7602158d9e54d5e45a85f0f8f3ad5d8775180f57a664398f7b4413e7317d9c
|
Provenance
The following attestation bundles were made for camas-0.1.29-cp311-cp311-win_amd64.whl:
Publisher:
ci.yaml on JPHutchins/camas
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
camas-0.1.29-cp311-cp311-win_amd64.whl -
Subject digest:
3e0aeac1c4adaec2d386e7ba05be74a4a1c20b4158d2b86b3f5f8e3b1fddd129 - Sigstore transparency entry: 2240801355
- Sigstore integration time:
-
Permalink:
JPHutchins/camas@18aad057d46f1fda1e1aeb32fd234c0e7e86a782 -
Branch / Tag:
refs/tags/0.1.29 - Owner: https://github.com/JPHutchins
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yaml@18aad057d46f1fda1e1aeb32fd234c0e7e86a782 -
Trigger Event:
push
-
Statement type:
File details
Details for the file camas-0.1.29-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: camas-0.1.29-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
82013ae8268e52ce7828fc8dba29634903cbe95abb5fddcf1613d6591d213824
|
|
| MD5 |
9771c123d17778194525d8ffffd36f03
|
|
| BLAKE2b-256 |
6edad8489ea89f700c43e8b2e93e47cf2e66a6b8bf9ad071e837e7489d91af9e
|
Provenance
The following attestation bundles were made for camas-0.1.29-cp311-cp311-musllinux_1_2_x86_64.whl:
Publisher:
ci.yaml on JPHutchins/camas
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
camas-0.1.29-cp311-cp311-musllinux_1_2_x86_64.whl -
Subject digest:
82013ae8268e52ce7828fc8dba29634903cbe95abb5fddcf1613d6591d213824 - Sigstore transparency entry: 2240793555
- Sigstore integration time:
-
Permalink:
JPHutchins/camas@18aad057d46f1fda1e1aeb32fd234c0e7e86a782 -
Branch / Tag:
refs/tags/0.1.29 - Owner: https://github.com/JPHutchins
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yaml@18aad057d46f1fda1e1aeb32fd234c0e7e86a782 -
Trigger Event:
push
-
Statement type:
File details
Details for the file camas-0.1.29-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: camas-0.1.29-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ad5193b602622b78af54c9c58e735cc12fefa0c1d5279ce296781c582fb48ecc
|
|
| MD5 |
a26ac2d9d8f7cd519f79f4f8b6c0f906
|
|
| BLAKE2b-256 |
6b2e84077a0764af92fc58fc7b5cdb722129451afcb21760f04a4b96bc96de43
|
Provenance
The following attestation bundles were made for camas-0.1.29-cp311-cp311-musllinux_1_2_aarch64.whl:
Publisher:
ci.yaml on JPHutchins/camas
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
camas-0.1.29-cp311-cp311-musllinux_1_2_aarch64.whl -
Subject digest:
ad5193b602622b78af54c9c58e735cc12fefa0c1d5279ce296781c582fb48ecc - Sigstore transparency entry: 2240800296
- Sigstore integration time:
-
Permalink:
JPHutchins/camas@18aad057d46f1fda1e1aeb32fd234c0e7e86a782 -
Branch / Tag:
refs/tags/0.1.29 - Owner: https://github.com/JPHutchins
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yaml@18aad057d46f1fda1e1aeb32fd234c0e7e86a782 -
Trigger Event:
push
-
Statement type:
File details
Details for the file camas-0.1.29-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: camas-0.1.29-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ef870f56899d306c4b7c1dcc581ff35ccf96dbec881d75dc78008b28eeb04344
|
|
| MD5 |
9354a4144a7a72d2bbca70e7e9aba304
|
|
| BLAKE2b-256 |
30a970515ee00465992a363bbc06e3239a508babef7826e8746c003717096641
|
Provenance
The following attestation bundles were made for camas-0.1.29-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
ci.yaml on JPHutchins/camas
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
camas-0.1.29-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
ef870f56899d306c4b7c1dcc581ff35ccf96dbec881d75dc78008b28eeb04344 - Sigstore transparency entry: 2240806203
- Sigstore integration time:
-
Permalink:
JPHutchins/camas@18aad057d46f1fda1e1aeb32fd234c0e7e86a782 -
Branch / Tag:
refs/tags/0.1.29 - Owner: https://github.com/JPHutchins
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yaml@18aad057d46f1fda1e1aeb32fd234c0e7e86a782 -
Trigger Event:
push
-
Statement type:
File details
Details for the file camas-0.1.29-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: camas-0.1.29-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f0bb62b5e84dd4d1b1ed97f87ca209ec3c6e4db2ad9153b0501bc664bcc8d03e
|
|
| MD5 |
7a27ca40345287550ebbd6f65c448cc1
|
|
| BLAKE2b-256 |
ae775b42ebdccf99669ba6fcba5a4ca4722b6b36b1fce1746d53b13a7554f787
|
Provenance
The following attestation bundles were made for camas-0.1.29-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
ci.yaml on JPHutchins/camas
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
camas-0.1.29-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
f0bb62b5e84dd4d1b1ed97f87ca209ec3c6e4db2ad9153b0501bc664bcc8d03e - Sigstore transparency entry: 2240796239
- Sigstore integration time:
-
Permalink:
JPHutchins/camas@18aad057d46f1fda1e1aeb32fd234c0e7e86a782 -
Branch / Tag:
refs/tags/0.1.29 - Owner: https://github.com/JPHutchins
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yaml@18aad057d46f1fda1e1aeb32fd234c0e7e86a782 -
Trigger Event:
push
-
Statement type:
File details
Details for the file camas-0.1.29-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: camas-0.1.29-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 795.5 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
34110d8e99a243b47adf8d69ceb5800fde2764fc012ac73182c0eda50d433de7
|
|
| MD5 |
2b2e4819ef9abd0db84db1b2952e5756
|
|
| BLAKE2b-256 |
20659bca36eafdce947fd3cdede7f18ca90870777a82e2c9f1873cec272c7243
|
Provenance
The following attestation bundles were made for camas-0.1.29-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
ci.yaml on JPHutchins/camas
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
camas-0.1.29-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
34110d8e99a243b47adf8d69ceb5800fde2764fc012ac73182c0eda50d433de7 - Sigstore transparency entry: 2240791998
- Sigstore integration time:
-
Permalink:
JPHutchins/camas@18aad057d46f1fda1e1aeb32fd234c0e7e86a782 -
Branch / Tag:
refs/tags/0.1.29 - Owner: https://github.com/JPHutchins
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yaml@18aad057d46f1fda1e1aeb32fd234c0e7e86a782 -
Trigger Event:
push
-
Statement type: