Skip to content

Commit

Permalink
chore: test against Django 5.1 and 5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
nijel committed Feb 12, 2025
1 parent 6797ab5 commit 63788f5
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
10 changes: 10 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,16 @@ jobs:
tox -e "py${PYTHON_VERSION/\./}-django50"
if: ${{ env.PYTHON_VERSION == '3.10' || env.PYTHON_VERSION == '3.11' || env.PYTHON_VERSION == '3.12' || env.PYTHON_VERSION == '3.13' }}

- name: Django 5.1.x Test
run: |
tox -e "py${PYTHON_VERSION/\./}-django51"
if: ${{ env.PYTHON_VERSION == '3.10' || env.PYTHON_VERSION == '3.11' || env.PYTHON_VERSION == '3.12' || env.PYTHON_VERSION == '3.13' }}

- name: Django 5.2.x Test
run: |
tox -e "py${PYTHON_VERSION/\./}-django52"
if: ${{ env.PYTHON_VERSION == '3.10' || env.PYTHON_VERSION == '3.11' || env.PYTHON_VERSION == '3.12' || env.PYTHON_VERSION == '3.13' }}

- name: Django main Test
run: |
tox -e "py${PYTHON_VERSION/\./}-djangomain"
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@ deps =
django32: Django>=3.2,<3.3
django41: Django>=4.1,<4.2
django42: Django>=4.2,<4.3
django50: Django>=5.0a1,<5.1
django50: Django>=5.0,<5.1
django51: Django>=5.1,<5.2
django52: Django>=5.2a1,<5.3
djangomain: https://github.com/django/django/archive/main.tar.gz
socialmaster: https://github.com/python-social-auth/social-core/archive/master.tar.gz
.[dev]

0 comments on commit 63788f5

Please sign in to comment.