Support Python 3.8

This commit is contained in:
Evgeny Ezhov 2020-01-26 19:17:03 -08:00
parent c380dc56c7
commit 3d4751cdd0
2 changed files with 6 additions and 1 deletions

View file

@ -13,6 +13,7 @@ services:
python:
- "2.7"
- "3.7"
- "3.8"
before_install:
- docker pull bytemark/webdav
@ -25,4 +26,7 @@ install:
script:
- coverage run setup.py test
- coverage xml
- sonar-scanner
- |
if [[ $TRAVIS_PYTHON_VERSION == "3.8" ]]; then
sonar-scanner
fi

View file

@ -75,6 +75,7 @@ setup(
'Operating System :: Unix',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Internet',
'Topic :: Software Development :: Libraries :: Python Modules',
],