Add python3.8 + isort + flake8

This commit is contained in:
László Károlyi 2019-11-21 15:46:06 +01:00
parent 312c028a1e
commit 193788fea3
Signed by: karolyi
GPG Key ID: 2DCAF25E55735BFE
2 changed files with 6 additions and 0 deletions

View File

@ -5,11 +5,15 @@ python:
- "3.6-dev" # 3.6 development branch
- "3.7"
- "3.7-dev" # 3.7 development branch
- "3.8"
- "3.8-dev" # 3.8 development branch
# command to install dependencies
install:
- pip install -U pip wheel setuptools
- pip install -r requirements.txt
- pip install -e .
# command to run tests
script:
- isort -c --skip-glob=venv

View File

@ -1,2 +1,4 @@
dnspython==1.16.0
idna==2.8
isort==4.3.21
flake8==3.7.8