Skip to content

Commit 41e19b8

Browse files
author
Éric Araujo
committed
test with python3.7
1 parent 973aad7 commit 41e19b8

2 files changed

Lines changed: 27 additions & 0 deletions

File tree

.circleci/config.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,35 @@ workflows:
44
version: 2
55
rest-auth-toolkit:
66
jobs:
7+
- test-py37
78
- test-py36
89
- test-py27
910
- check
1011

1112
jobs:
1213

14+
test-py37:
15+
docker:
16+
- image: circleci/python:3.7
17+
working_directory: ~/rest-auth-toolkit
18+
steps:
19+
- checkout
20+
- restore_cache:
21+
key: rest-auth-toolkit-py37-v1
22+
- run:
23+
name: Install CI tools
24+
command: |
25+
python3.7 -m venv venv
26+
venv/bin/pip install tox
27+
- run:
28+
name: Test with Python 3.7
29+
command: venv/bin/tox -e py37
30+
- save_cache:
31+
key: rest-auth-toolkit-py37-v1
32+
paths:
33+
- venv
34+
- .tox
35+
1336
test-py36:
1437
docker:
1538
- image: circleci/python:3.6

setup.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,10 @@
3535
'Programming Language :: Python :: 2.7',
3636
'Programming Language :: Python :: 3.5',
3737
'Programming Language :: Python :: 3.6',
38+
'Programming Language :: Python :: 3.7',
39+
'Framework :: Django :: 1.11',
40+
'Framework :: Django :: 2.0',
41+
'Framework :: Django :: 2.1',
3842
],
3943
packages=[
4044
'rest_auth_toolkit',

0 commit comments

Comments
 (0)