Skip to content

Commit

Permalink
Fixed CI configurations for pull request #11. Removed Python 3.3 buil…
Browse files Browse the repository at this point in the history
…d and added new versions. (#13)
  • Loading branch information
liboyue authored Jun 22, 2020
1 parent dd989c5 commit f016ddd
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,15 @@ language: python

python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6-dev" # 3.6 development branch
- "3.6"
- "3.7"
- "3.8"
- "3.8-dev"

install: "pip install ."
install:
- pip install .

script: py.test
script:
- pytest

0 comments on commit f016ddd

Please sign in to comment.