Skip to content

Commit 1555e5b

Browse files
committed
Upgraded django to 4.1.1
1 parent d59ddfe commit 1555e5b

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- add_ssh_keys
1313
- checkout
1414
- run:
15-
name: Install dependencies
15+
name: Install dependencies8
1616
command: |
1717
sudo pip install -r development.txt
1818
- run:

development.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
boto3==1.24.75
2-
Django==3.2.15
2+
Django==4.1.1
33
mock==4.0.3
44
moto==4.0.3
55
requests==2.28.1

eb_sqs/worker/service.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919

2020
logger = logging.getLogger(__name__)
2121

22-
MESSAGES_RECEIVED = django.dispatch.Signal(providing_args=['messages'])
23-
MESSAGES_PROCESSED = django.dispatch.Signal(providing_args=['messages'])
24-
MESSAGES_DELETED = django.dispatch.Signal(providing_args=['messages'])
22+
MESSAGES_RECEIVED = django.dispatch.Signal()
23+
MESSAGES_PROCESSED = django.dispatch.Signal()
24+
MESSAGES_DELETED = django.dispatch.Signal()
2525

2626

2727
class WorkerService(object):

0 commit comments

Comments
 (0)