Skip to content
Open
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
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,3 +133,15 @@ jobs:
conda:path/to/env.yaml
manifest-path: path/to/pixi.toml # or pyproject.toml
```

### Running locally

You can also easily run the checker locally using UV. See the example below. Note the example uses `v1.0.0` (remove the `@v1.0.0` to use the version in `main`):

```bash
uv run --with 'minimum-dependency-versions @ git+https://github.com/xarray-contrib/[email protected]'\
python -m minimum_versions validate\
--policy=.github/ci/policy.yaml\
--manifest-path=pixi.toml\
pixi:test-minimum
```