cChardet/.travis.yml

39 lines
688 B
YAML
Raw Normal View History

2016-10-17 03:41:26 +00:00
sudo: false
language: python
cache:
directories:
- $HOME/.cache/pip
2017-03-27 16:01:07 +00:00
git:
submodules: false
2016-10-17 03:41:26 +00:00
2017-01-08 03:24:55 +00:00
matrix:
2017-01-08 03:32:54 +00:00
include:
- python: 3.5
env: TOXENV=py35
- python: 3.6
env: TOXENV=py36
2018-09-26 12:31:45 +00:00
- python: 3.7
env: TOXENV=py37
2018-09-26 12:49:01 +00:00
dist: xenial
sudo: true
2019-11-15 18:52:17 +00:00
- python: 3.8
env: TOXENV=py38
2018-09-26 12:49:01 +00:00
dist: xenial
sudo: true
2019-11-18 04:04:23 +00:00
- python: 'nightly'
dist: bionic
2019-11-15 18:52:17 +00:00
sudo: true
env: TOXENV=py39
2017-01-08 03:32:54 +00:00
allow_failures:
2019-11-18 04:04:23 +00:00
- python: nightly
2016-10-17 03:41:26 +00:00
2017-03-27 16:01:07 +00:00
before_install:
- sed -i 's/git@github.com:/https:\/\/github.com\//' .gitmodules
- git submodule update --init --recursive
2016-10-17 03:41:26 +00:00
install:
2018-09-26 12:56:35 +00:00
- pip install -r requirements-dev.txt
2016-10-17 03:41:26 +00:00
script:
- tox -e $TOXENV