diff --git a/.circleci/config.yml b/.circleci/config.yml
index 407fb8b..d07fb22 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -12,7 +12,7 @@ jobs:
       - add_ssh_keys
       - checkout
       - run:
-          name: Install dependencies
+          name: Install dependencies8
           command: |
             sudo pip install -r development.txt
       - run:
diff --git a/development.txt b/development.txt
index 41376c2..2bf0713 100644
--- a/development.txt
+++ b/development.txt
@@ -1,5 +1,5 @@
 boto3==1.24.75
-Django==3.2.15
+Django==4.1.1
 mock==4.0.3
 moto==4.0.3
 requests==2.28.1
\ No newline at end of file
diff --git a/eb_sqs/worker/service.py b/eb_sqs/worker/service.py
index cfaa4c8..f168ad1 100644
--- a/eb_sqs/worker/service.py
+++ b/eb_sqs/worker/service.py
@@ -19,9 +19,9 @@
 
 logger = logging.getLogger(__name__)
 
-MESSAGES_RECEIVED = django.dispatch.Signal(providing_args=['messages'])
-MESSAGES_PROCESSED = django.dispatch.Signal(providing_args=['messages'])
-MESSAGES_DELETED = django.dispatch.Signal(providing_args=['messages'])
+MESSAGES_RECEIVED = django.dispatch.Signal()
+MESSAGES_PROCESSED = django.dispatch.Signal()
+MESSAGES_DELETED = django.dispatch.Signal()
 
 
 class WorkerService(object):