Support Python 3.8
This commit is contained in:
parent
c380dc56c7
commit
3d4751cdd0
2 changed files with 6 additions and 1 deletions
|
@ -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
|
||||
|
|
1
setup.py
1
setup.py
|
@ -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',
|
||||
],
|
||||
|
|
Loading…
Add table
Reference in a new issue