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:
|
python:
|
||||||
- "2.7"
|
- "2.7"
|
||||||
- "3.7"
|
- "3.7"
|
||||||
|
- "3.8"
|
||||||
|
|
||||||
before_install:
|
before_install:
|
||||||
- docker pull bytemark/webdav
|
- docker pull bytemark/webdav
|
||||||
|
@ -25,4 +26,7 @@ install:
|
||||||
script:
|
script:
|
||||||
- coverage run setup.py test
|
- coverage run setup.py test
|
||||||
- coverage xml
|
- 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',
|
'Operating System :: Unix',
|
||||||
'Programming Language :: Python :: 2.7',
|
'Programming Language :: Python :: 2.7',
|
||||||
'Programming Language :: Python :: 3.7',
|
'Programming Language :: Python :: 3.7',
|
||||||
|
'Programming Language :: Python :: 3.8',
|
||||||
'Topic :: Internet',
|
'Topic :: Internet',
|
||||||
'Topic :: Software Development :: Libraries :: Python Modules',
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
||||||
],
|
],
|
||||||
|
|
Loading…
Add table
Reference in a new issue