Skip to content

Commit adab589

Browse files
authored
Merge branch 'crccheck:master' into post-actions-v2
2 parents 11034e0 + ad3b898 commit adab589

File tree

5 files changed

+7
-2
lines changed

5 files changed

+7
-2
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,9 @@ jobs:
1818
python-version {3.7}, django-version {2.0,2.1,2.2,3.0,3.1}
1919
python-version {3.8}, django-version {2.2,3.0,3.1,3.2,4.0,4.1,4.2}
2020
python-version {3.9}, django-version {2.2,3.0,3.1,3.2,4.0,4.1,4.2}
21-
python-version {3.10}, django-version {3.2,4.0,4.1,4.2}
22-
python-version {3.11}, django-version {3.2,4.0,4.1,4.2}
21+
python-version {3.10}, django-version {3.2,4.0,4.1,4.2,5.0}
22+
python-version {3.11}, django-version {4.0,4.1,4.2,5.0}
23+
python-version {3.12}, django-version {4.2, 5.0}
2324
outputs:
2425
matrix: ${{ steps.create_matrix.outputs.matrix }}
2526

django_object_actions/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""A Django app for adding object tools for models in the admin."""
2+
23
__version__ = "4.2.0"
34

45

django_object_actions/tests/test_admin.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""
22
Integration tests that actually try and use the tools setup in admin.py
33
"""
4+
45
from django.contrib.admin.utils import quote
56
from django.http import HttpResponse
67
from django.urls import reverse

django_object_actions/tests/test_urls.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""
22
Integration tests
33
"""
4+
45
from django.urls import reverse
56

67
from .tests import LoggedInTestCase

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ classifiers = [
2525
"Programming Language :: Python :: 3.9",
2626
"Programming Language :: Python :: 3.10",
2727
"Programming Language :: Python :: 3.11",
28+
"Programming Language :: Python :: 3.12",
2829
]
2930

3031
[tool.poetry.dependencies]

0 commit comments

Comments
 (0)