Skip to content

Commit 00084a0

Browse files
committed
test against newer python and django versions
1 parent 6226a92 commit 00084a0

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,18 @@ jobs:
3434
- '3.10'
3535
- '3.11'
3636
- '3.12'
37-
# - '3.13'
37+
- '3.13'
3838
django-version:
39-
- '4.2'
40-
- '5.0'
41-
- '5.1'
39+
- 'django==4.2'
40+
- 'django==5.0'
41+
- 'django==5.1'
42+
- 'django==5.2'
43+
44+
include:
45+
- python-version: '3.13'
46+
django-version: "git+https://github.com/django/django.git@main#egg=Django"
47+
experimental: true
48+
4249
env:
4350
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
4451
steps:
@@ -70,7 +77,7 @@ jobs:
7077
7178
- name: Install project
7279
run: |
73-
uv pip install django==${{ matrix.django-version }}
80+
uv pip install ${{ matrix.django-version }}
7481
7582
- name: tests
7683
run: |

0 commit comments

Comments
 (0)