diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b53b43f..3c9c112 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,8 +13,11 @@ jobs: strategy: matrix: - python: ["3.10", "3.11", "3.12"] - django: ["4.2", "5.0", "5.1"] + python: ["3.10", "3.11", "3.12", "3.13"] + django: ["4.2", "5.0", "5.1", "5.2"] + exclude: + - { python: "3.13", django: "4.2" } + - { python: "3.13", django: "5.0" } name: Tests - python ${{ matrix.python }} × django ${{ matrix.django }} diff --git a/dev/docker/Dockerfile b/dev/docker/Dockerfile index e4b50ce..e23e365 100644 --- a/dev/docker/Dockerfile +++ b/dev/docker/Dockerfile @@ -23,6 +23,6 @@ COPY . /app/ # Install project dependencies RUN poetry config virtualenvs.create false \ && poetry install \ - && pip install -U "django==$DJANGO_VERSION.*" + && pip install -U --pre "django==$DJANGO_VERSION.*" CMD [ "python", "manage.py", "runserver", "0.0.0.0:8000" ]