Skip to content

Commit 8a84b2f

Browse files
committed
Enable using Python 3 in a project infrastructure
Closes #20
1 parent da61799 commit 8a84b2f

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

.travis.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
language: python
2-
python: 2.7
2+
3+
python:
4+
- "2.7"
5+
- "3.4"
6+
- "3.5"
7+
- "3.6"
8+
- "3.7"
9+
- "3.8"
10+
- "3.8-dev"
311

412
install:
513
- pip install -r requirements.txt

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ default:
33

44
.PHONY: lint
55
lint:
6-
python2 -m flake8 *.py lib/*.py
6+
python -m flake8 *.py lib/*.py

0 commit comments

Comments
 (0)