cChardet/.travis.yml
MISAWA Yoshihiro e9154f9694
Drop support for Python 2.7
See: [Maintenance releases - PEP 373 -- Python 2.7 Release Schedule | Python.org](https://www.python.org/dev/peps/pep-0373/#maintenance-releases)
2020-03-16 23:40:00 +09:00

38 lines
688 B
YAML

sudo: false
language: python
cache:
directories:
- $HOME/.cache/pip
git:
submodules: false
matrix:
include:
- python: 3.5
env: TOXENV=py35
- python: 3.6
env: TOXENV=py36
- python: 3.7
env: TOXENV=py37
dist: xenial
sudo: true
- python: 3.8
env: TOXENV=py38
dist: xenial
sudo: true
- python: 'nightly'
dist: bionic
sudo: true
env: TOXENV=py39
allow_failures:
- python: nightly
before_install:
- sed -i 's/git@github.com:/https:\/\/github.com\//' .gitmodules
- git submodule update --init --recursive
install:
- pip install -r requirements-dev.txt
script:
- tox -e $TOXENV