Skip to content

Commit db057f1

Browse files
committed
Merge branch 'master' of github.com:rq/django-rq
2 parents 18e01ad + a5acbf8 commit db057f1

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ jobs:
1616
name: Python${{ matrix.python-version }}/Django${{ matrix.django-version }}
1717
strategy:
1818
matrix:
19-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
20-
django-version: ["3.2.16", "4.0.8", "4.1.3", "4.2"]
19+
python-version: ["3.10", "3.11", "3.12"]
20+
django-version: ["3.2.23", "4.0.8", "4.1.3", "4.2", "5.0"]
2121

2222
steps:
2323
- uses: actions/checkout@v3

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ If you find ``django-rq`` useful, please consider supporting its development via
1919
Requirements
2020
============
2121

22-
* `Django <https://www.djangoproject.com/>`__ (2.0+)
22+
* `Django <https://www.djangoproject.com/>`__ (3.2+)
2323
* `RQ <https://github.com/nvie/rq>`__
2424

2525
============

django_rq/apps.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
from django.apps import AppConfig
2+
3+
4+
class DjangoRqAdminConfig(AppConfig):
5+
default_auto_field = "django.db.models.AutoField"
6+
name = "django_rq"

integration_test/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
-e ..
2-
Django==3.2.23
2+
Django==3.2.24
33
gunicorn==20.1.0
44
psycopg2==2.9.7
55
requests==2.31.0

0 commit comments

Comments
 (0)