Skip to content

Commit

Permalink
Merge pull request #202 from PetrDlouhy/django50
Browse files Browse the repository at this point in the history
update testing to Django 5.0, Python 3.12
  • Loading branch information
PetrDlouhy authored Apr 19, 2024
2 parents a0762b5 + 2d17fa2 commit df6fe5d
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
max-parallel: 5
matrix:
python-version: ['3.5', '3.6', '3.7', '3.8', '3.9', '3.10', 'pypy-3.8', 'pypy-3.9']
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', 'pypy-3.8', 'pypy-3.9', 'pypy-3.10']
fail-fast: false

steps:
Expand Down
18 changes: 14 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,13 @@ minversion=2.7
skip_missing_interpreters=True

envlist =
{py35,py36,py37,py38,pypy38,pypy39}-django{2.2}
{py36,py37,py38,py39,pypy38,pypy39}-django{3.0,3.1}
{py36,py37,py38,py39,py310,pypy38,pypy39}-django{3.2}
{py38,py39,py310,pypy38,pypy39}-django{4.0}
{py,pypy}{35,36,37,38}-django{2.2}
{py,pypy}{36,37,38,39}-django{3.0,3.1}
{py,pypy}{36,37,38,39,py310}-django{3.2}
{py,pypy}{38,39,310}-django{4.0}
{py,pypy}{38,39,310,311}-django{4.1}
{py,pypy}{38,39,310,311,312}-django{4.2}
{py,pypy}{310,311,312}-django{5.0}

[gh-actions]
python =
Expand All @@ -23,8 +26,12 @@ python =
3.8: py38
3.9: py39
3.10: py310
3.11: py311
pypy-3.8: pypy38
pypy-3.9: pypy39
pypy-3.10: pypy310
pypy-3.11: pypy311
pypy-3.12: pypy312

[testenv]
commands =
Expand All @@ -41,3 +48,6 @@ deps =
django3.1: jsonfield>=1.0.3,<3
django3.2: Django==3.2.*
django4.0: Django==4.0.*
django4.1: Django==4.1.*
django4.2: Django==4.2.*
django5.0: Django==5.0.*

0 comments on commit df6fe5d

Please sign in to comment.