8000 Travis CI: Drop Python 2.6 and add Python 3.6 · pythonthings/q@59033bd · GitHub
[go: up one dir, main page]

Skip to content

Commit 59033bd

Browse files
author
cclauss
committed
Travis CI: Drop Python 2.6 and add Python 3.6
Python 2.6 end of life was more that five years ago.
1 parent 6ae7386 commit 59033bd

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.travis.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
language: python
22
python:
3-
- "2.6"
43
- "2.7"
4+
- "3.6"
5+
matrix:
6+
allow_failures:
7+
- python: "3.6"
8+
install: pip install flake8
9+
before_script: flake8 ./bin/q --count --select=E901,E999,F821,F822,F823 --show-source --statistics
510
script: test/test-all

0 commit comments

Comments
 (0)
0