remove redundant python version #10
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
| name: zarr v2 compatibility | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main, test] | |
| jobs: | |
| test: | |
| name: zarr v2 / Python 3.11 / ubuntu | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: astral-sh/setup-uv@v5 | |
| - name: Install dependencies | |
| run: uv sync --python 3.11 --group test | |
| - name: Downgrade zarr to v2 | |
| run: uv pip install "zarr>=2.18,<3" | |
| - name: Run tests | |
| run: uv run pytest |