Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 46c203e

Browse files
committedAug 5, 2018
Test circleci with python 3.6 instead of 3.5.
1 parent d2de296 commit 46c203e

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed
 

‎.circleci/config.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
version: 2
22
jobs:
3-
test_py35:
3+
test_py36:
44
docker:
5-
- image: circleci/python:3.5
5+
- image: circleci/python:3.6
66
steps:
77
- checkout
88
- run: pip install --user tox
9-
- run: ~/.local/bin/tox -e py35
9+
- run: ~/.local/bin/tox
1010
test_py27:
1111
docker:
1212
- image: circleci/python:2.7
1313
steps:
1414
- checkout
1515
- run: pip install --user tox
16-
- run: ~/.local/bin/tox -e py27
16+
- run: ~/.local/bin/tox
1717

1818
workflows:
1919
version: 2
2020
build_and_test:
2121
jobs:
22-
- test_py35
22+
- test_py36
2323
- test_py27

‎tox.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
[tox]
22
envlist = {py27,py36}-sklearn{17,18,19}-pandas{19,22}
3+
skip_missing_interpreters = true
34

45
[testenv]
56
deps =

0 commit comments

Comments
 (0)
Please sign in to comment.