Skip to content

Commit

Permalink
Enable using Python 3 in a project infrastructure
Browse files Browse the repository at this point in the history
Closes #20
  • Loading branch information
ligurio committed Nov 21, 2020
1 parent da61799 commit 8a84b2f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
10 changes: 9 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
language: python
python: 2.7

python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
- "3.8"
- "3.8-dev"

install:
- pip install -r requirements.txt
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ default:

.PHONY: lint
lint:
python2 -m flake8 *.py lib/*.py
python -m flake8 *.py lib/*.py

0 comments on commit 8a84b2f

Please sign in to comment.