@@ -21,12 +21,20 @@ jobs:
21
21
22
22
strategy :
23
23
matrix :
24
- python-version : ["3.8", "3.9", "3.10", "3.11"]
24
+ python-version : ["3.8", "3.9", "3.10", "3.11", "3.12" ]
25
25
node-version : ["16.x"]
26
- django-version : ["4.0.*", "4.1.*", "4.2.*"]
26
+ django-version : ["4.0.*", "4.1.*", "4.2.*", "5.0.*" ]
27
27
exclude : # https://docs.djangoproject.com/en/4.2/faq/install/#what-python-version-can-i-use-with-django
28
+ - python-version : " 3.8"
29
+ django-version : " 5.0.*"
30
+ - python-version : " 3.9"
31
+ django-version : " 5.0.*"
28
32
- python-version : " 3.11"
29
33
django-version : " 4.0.*"
34
+ - python-version : " 3.12"
35
+ django-version : " 4.0.*"
36
+ - python-version : " 3.12"
37
+ django-version : " 4.1.*"
30
38
31
39
steps :
32
40
- uses : actions/checkout@v3
49
57
- name : Patch templates
50
58
run : |
51
59
mkdir -p adminsortable2/templates/adminsortable2/edit_inline
52
- DJANGO_VERSIONS=("4.0" "4.1" "4.2")
60
+ DJANGO_VERSIONS=("4.0" "4.1" "4.2", "5.0" )
53
61
for django_version in ${DJANGO_VERSIONS[@]}; do
54
62
echo $django_version
55
63
curl --silent --output adminsortable2/templates/adminsortable2/edit_inline/stacked-django-$django_version.html https://raw.githubusercontent.com/django/django/stable/$django_version.x/django/contrib/admin/templates/admin/edit_inline/stacked.html
0 commit comments