Skip to content

Commit

Permalink
split setuptools/wheel and requirements installation
Browse files Browse the repository at this point in the history
  • Loading branch information
mathiasertl committed Dec 4, 2024
1 parent d23c01f commit 8885381
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,10 @@ on:
push:
pull_request:

jobs:
env:
UV_SYSTEM_PYTHON: 1

jobs:
run:
runs-on: ${{ matrix.os }}

Expand Down Expand Up @@ -44,10 +46,11 @@ jobs:
pyproject.toml
requirements/requirements*.txt
- name: Update setuptools/wheel
run: uv pip install -U setuptools wheel

- name: Install dependencies
run: |
uv pip install --system -U setuptools wheel
uv pip install --system -r requirements.txt -r requirements/requirements-test.txt django~=${{ matrix.django-version }} cryptography~=${{ matrix.cryptography-version }} pydantic~=${{ matrix.pydantic-version }}
run: uv pip install -r requirements.txt -r requirements/requirements-test.txt django~=${{ matrix.django-version }} cryptography~=${{ matrix.cryptography-version }} pydantic~=${{ matrix.pydantic-version }}

- name: Initialize demo
run: python dev.py init-demo
Expand Down

0 comments on commit 8885381

Please sign in to comment.