Skip to content

Commit

Permalink
travis: add new Python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
theonlypwner committed Apr 23, 2021
1 parent e2d98ec commit dc046ec
Showing 1 changed file with 22 additions and 9 deletions.
31 changes: 22 additions & 9 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,26 @@
language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "pypy"
matrix:
allow_failures:
- python: "pypy"
jobs:
- python: "2.6"
dist: trusty
- python: "2.7"
- python: "3.2"
dist: trusty
allow_failure: true
- python: "3.3"
dist: trusty
allow_failure: true
- python: "3.4"
allow_failure: true
- python: "3.5"
allow_failure: true
- python: "3.6"
allow_failure: true
- python: "3.7"
allow_failure: true
- python: "3.8"
- python: "3.9"
- python: "pypy"
allow_failure: true
install: pip install coveralls
script:
- coverage run --branch --source=crc32 test.py
Expand Down

0 comments on commit dc046ec

Please sign in to comment.