Skip to content

Commit 65433ac

Browse files
committed
updates github action config
1 parent 29ff438 commit 65433ac

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

.github/workflows/tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ jobs:
2626
strategy:
2727
fail-fast: false
2828
matrix:
29-
python-version: [ "3.8", "3.9", "3.10"]
30-
django-version: [ "3.2", "4.0", "4.2"]
29+
python-version: [ "3.9", "3.11"]
30+
django-version: [ "3.2", "4.2"]
3131
db-engine: ["pg", "mysql"]
3232
env:
3333
PY_VER: ${{ matrix.python-version}}

src/concurrency/admin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
from django.contrib.admin import helpers
88
from django.core.checks import Error
99
from django.core.exceptions import ImproperlyConfigured, ValidationError
10+
from django.db import transaction
1011
from django.db.models import Q
1112
from django.forms.formsets import INITIAL_FORM_COUNT, ManagementForm, MAX_NUM_FORM_COUNT, TOTAL_FORM_COUNT
1213
from django.forms.models import BaseModelFormSet
1314
from django.http import HttpResponse, HttpResponseRedirect
1415
from django.utils.encoding import force_str
1516
from django.utils.safestring import mark_safe
1617
from django.utils.translation import ngettext
17-
from django.db import transaction
1818

1919
from concurrency import core, forms
2020
from concurrency.api import get_revision_of_object

src/concurrency/config.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import warnings
2-
31
from django.core.exceptions import ImproperlyConfigured
42
from django.test.signals import setting_changed
53
from django.utils.module_loading import import_string

0 commit comments

Comments
 (0)