Skip to content

Commit

Permalink
Confirmed support for django 5.0 and python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
olibook committed May 17, 2024
1 parent 16dcfc8 commit 4f5495c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
target: [pil, imagemagick, graphicsmagick, redis, wand, dbm]

include:
Expand Down Expand Up @@ -58,4 +58,3 @@ jobs:
uses: codecov/codecov-action@v3
with:
name: Python ${{ matrix.python-version }}

4 changes: 4 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,15 @@ python =
3.9: py39
3.10: py310
3.11: py311
3.12: py312

[gh-actions:env]
DJANGO =
3.2: django32
4.0: django40
4.1: django41
4.2: django42
5.0: django50
TARGET =
pil: pil
imagemagick: imagemagick
Expand All @@ -25,6 +27,7 @@ skipsdist = True
envlist =
py38-qa,
py{38,39,310,311}-django{32,40,41,42}-{pil,imagemagick,graphicsmagick,redis,dynamodb,wand,pgmagick,dbm,vipsthumbnail}
py{310,311,312}-django50-{pil,imagemagick,graphicsmagick,redis,dynamodb,wand,pgmagick,dbm,vipsthumbnail}

[testenv]
deps =
Expand All @@ -40,6 +43,7 @@ deps =
django40: django>=4.0,<4.1
django41: django>=4.1,<4.2
django42: django>=4.2,<4.3
django50: django>=5.0,<5.1

setenv =
PYTHONPATH = {toxinidir}:{toxinidir}
Expand Down

0 comments on commit 4f5495c

Please sign in to comment.