Convert dependency management to uv (#785)

This commit is contained in:
besendorf
2026-05-11 23:21:40 +02:00
committed by GitHub
parent c2b0b6db28
commit 436a0dc7c0
16 changed files with 1926 additions and 43 deletions
+5 -2
View File
@@ -16,14 +16,17 @@ jobs:
steps:
- uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install Python dependencies
run: |
make install
make test-requirements
uv sync --locked --group dev --python ${{ matrix.python-version }}
- name: Test with pytest
run: |
set -o pipefail