Skip to content

Commit e197f2c

Browse files
committed
Upgrade dependent package versions and remove python 2.7 support
1 parent c1ca5cc commit e197f2c

File tree

3 files changed

+8
-12
lines changed

3 files changed

+8
-12
lines changed

.circleci/config.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,10 @@ workflows:
44
eb-sqs-jobs:
55
jobs:
66
- test-python-3-7
7-
- test-python-2-7
87
jobs:
98
test-python-3-7: &test-template
109
docker:
11-
- image: circleci/python:3.7.6
10+
- image: cimg/python:3.7
1211
steps:
1312
- add_ssh_keys
1413
- checkout
@@ -20,7 +19,4 @@ jobs:
2019
name: Run tests
2120
command: |
2221
python -m django test --settings=eb_sqs.test_settings
23-
test-python-2-7:
24-
<<: *test-template
25-
docker:
26-
- image: circleci/python:2.7.16
22+

development.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
boto3==1.9.86
2-
Django==1.10.6
3-
mock==2.0.0
4-
moto==1.3.13
5-
requests==2.10.0
1+
boto3==1.24.75
2+
Django==3.2.15
3+
mock==4.0.3
4+
moto==4.0.3
5+
requests==2.28.1

eb_sqs/test_settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
},
3535
]
3636

37-
ROOT_URLCONF = 'eb_sqs.urls'
37+
# ROOT_URLCONF = 'eb_sqs.urls'
3838

3939
LOGGING = {
4040
'version': 1,

0 commit comments

Comments
 (0)