Use pip instead of Poetry

This commit is contained in:
Joakim Hellsén 2024-06-27 00:30:39 +02:00
commit d23f364f71
No known key found for this signature in database
GPG key ID: D196AE66FEBE1DC9
8 changed files with 46 additions and 1760 deletions

View file

@ -1,7 +1,7 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
"config:recommended"
],
"automerge": true,
"configMigration": true,

View file

@ -20,10 +20,12 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: 3.12
- run: pipx install poetry
- run: poetry install
- run: poetry run python manage.py migrate
- run: poetry run python manage.py test
- run: pipx install uv
- run: uv venv
- run: source .venv/bin/activate
- run: pip install -r requirements.txt
- run: pip install -r requirements-dev.txt
- run: pytest
build:
runs-on: ubuntu-latest
permissions: