1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-06-21 03:58:26 +02:00

Upgrade dependencies + add support for Python 3.13 and Django 5.1

Signed-off-by: Emmy D'Anello <emmy.danello@animath.fr>
This commit is contained in:
Emmy D'Anello
2024-10-21 19:33:47 +02:00
parent 65c6158b52
commit 6cdf6331db
5 changed files with 33 additions and 23 deletions

View File

@ -7,7 +7,7 @@ py311:
image: python:3.11-alpine
before_script:
- apk add --no-cache libmagic
- apk add --no-cache gettext git # Useful for django-haystack, remove when the newer versions are in PyPI
- apk add --no-cache gettext
- pip install tox --no-cache-dir
script: tox -e py311
@ -16,10 +16,19 @@ py312:
image: python:3.12-alpine
before_script:
- apk add --no-cache libmagic
- apk add --no-cache gettext git # Useful for django-haystack, remove when the newer versions are in PyPI
- apk add --no-cache gettext
- pip install tox --no-cache-dir
script: tox -e py312
py313:
stage: test
image: python:3.13-alpine
before_script:
- apk add --no-cache libmagic
- apk add --no-cache gettext
- pip install tox --no-cache-dir
script: tox -e py313
linters:
stage: quality-assurance
image: python:3-alpine