Skip to content

Commit c536841

Browse files
committed
Drop support for Python 2.7 and add support for Python 3.7
1 parent b8eb107 commit c536841

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ sudo: false
33
services:
44
- mysql
55
python:
6-
- '2.7'
76
- '3.4'
87
- '3.6'
8+
- '3.7'
99
env:
1010
- DJANGO_VERSION=1.8
1111
- DJANGO_VERSION=1.9

django_dbq/tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def test_worker_with_queue_name(self):
8888
class WorkerProcessDoWorkTestCase(TestCase):
8989

9090
def setUp(self):
91-
super(WorkerProcessDoWorkTestCase, self).setUp()
91+
super().setUp()
9292
self.MockWorker = mock.MagicMock()
9393
self.MockWorker.queue_name = 'default'
9494
self.MockWorker.rate_limit_in_seconds = 5

0 commit comments

Comments
 (0)