@@ -21,12 +21,20 @@ jobs:
2121
2222 strategy :
2323 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" ]
2525 node-version : ["16.x"]
26- django-version : ["4.0.*", "4.1.*", "4.2.*"]
26+ django-version : ["4.0.*", "4.1.*", "4.2.*", "5.0.*" ]
2727 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.*"
2832 - python-version : " 3.11"
2933 django-version : " 4.0.*"
34+ - python-version : " 3.12"
35+ django-version : " 4.0.*"
36+ - python-version : " 3.12"
37+ django-version : " 4.1.*"
3038
3139 steps :
3240 - uses : actions/checkout@v3
4957 - name : Patch templates
5058 run : |
5159 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" )
5361 for django_version in ${DJANGO_VERSIONS[@]}; do
5462 echo $django_version
5563 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