File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
1112jobs :
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
Original file line number Diff line number Diff line change 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' ,
You can’t perform that action at this time.
0 commit comments