We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6226a92 commit 00084a0Copy full SHA for 00084a0
.github/workflows/ci.yml
@@ -34,11 +34,18 @@ jobs:
34
- '3.10'
35
- '3.11'
36
- '3.12'
37
-# - '3.13'
+ - '3.13'
38
django-version:
39
- - '4.2'
40
- - '5.0'
41
- - '5.1'
+ - 'django==4.2'
+ - 'django==5.0'
+ - '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
49
env:
50
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
51
steps:
@@ -70,7 +77,7 @@ jobs:
70
77
71
78
- name: Install project
72
79
run: |
73
- uv pip install django==${{ matrix.django-version }}
80
+ uv pip install ${{ matrix.django-version }}
74
81
75
82
- name: tests
76
83
0 commit comments