2017-10-08 20:37:59 -04:00
|
|
|
sudo: false
|
|
|
|
language: python
|
2019-05-21 10:44:40 -04:00
|
|
|
install:
|
2021-08-07 19:35:57 -05:00
|
|
|
- pip3 install -r requirements.txt -r requirements-extra.txt
|
2019-05-22 11:29:37 -04:00
|
|
|
script: tox
|
2019-05-18 14:35:10 -04:00
|
|
|
matrix:
|
2021-08-07 19:35:57 -05:00
|
|
|
include:
|
|
|
|
- os: "linux"
|
|
|
|
dist: "xenial"
|
|
|
|
python: "3.6"
|
|
|
|
- os: "linux"
|
|
|
|
dist: "xenial"
|
|
|
|
python: "3.7"
|
|
|
|
- os: "linux"
|
|
|
|
dist: "focal"
|
|
|
|
python: "3.8"
|
|
|
|
- os: "linux"
|
|
|
|
dist: "focal"
|
|
|
|
python: "3.9"
|
|
|
|
- os: "windows"
|
|
|
|
language: shell
|
|
|
|
python: "3.9"
|
|
|
|
env: "PATH=/c/python39:/c/python39/Scripts:$PATH"
|
|
|
|
before_install:
|
|
|
|
- choco install python --version=3.9.6
|
|
|
|
- cp /c/python39/python.exe /c/python39/python3.exe
|
|
|
|
script: tox -e py39
|