Skip to content

Commit 063132b

Browse files
authored
Add Python 3.8 testing (#53)
* Test with python 3.8 * Update structlog
1 parent 8209868 commit 063132b

File tree

2 files changed

+15
-4
lines changed

2 files changed

+15
-4
lines changed

.circleci/config.yml

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ workflows:
1010
- test-3.7:
1111
context:
1212
- docker-hub-creds-ro
13+
- test-3.8:
14+
context:
15+
- docker-hub-creds-ro
1316

1417
defaults: &defaults
1518
working_directory: ~/code
@@ -22,9 +25,6 @@ defaults: &defaults
2225
command: |
2326
sudo pip install -r requirements.txt
2427
sudo pip install -r requirements_tests.txt
25-
- run:
26-
name: Check dependencies
27-
command: sudo pip check
2828
- run:
2929
name: Lint
3030
command: flake8
@@ -55,3 +55,14 @@ jobs:
5555
auth:
5656
username: $DOCKER_USER
5757
password: $DOCKER_PASS
58+
test-3.8:
59+
<<: *defaults
60+
docker:
61+
- image: circleci/python:3.8
62+
auth:
63+
username: $DOCKER_USER
64+
password: $DOCKER_PASS
65+
- image: redis:3.2.12-alpine
66+
auth:
67+
username: $DOCKER_USER
68+
password: $DOCKER_PASS

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ multidict==4.3.1
1212
packaging==20.4
1313
pyparsing==2.2.0
1414
six==1.10.0
15-
structlog==16.1.0
15+
structlog==20.1.0
1616
websockets==6.0
1717
yarl==1.2.6

0 commit comments

Comments
 (0)