mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-03-29 09:35:50 +00:00
Add support for Python 3.9
This commit is contained in:
parent
6897995080
commit
8ac4a00306
3 changed files with 26 additions and 1 deletions
24
.travis.yml
24
.travis.yml
|
|
@ -73,6 +73,30 @@
|
|||
"env": "BUILD=test-storage DAV_SERVER=xandikos REQUIREMENTS=minimal ",
|
||||
"python": "3.8"
|
||||
},
|
||||
{
|
||||
"env": "BUILD=test REQUIREMENTS=release",
|
||||
"python": "3.9"
|
||||
},
|
||||
{
|
||||
"env": "BUILD=test-storage DAV_SERVER=radicale REQUIREMENTS=release ",
|
||||
"python": "3.9"
|
||||
},
|
||||
{
|
||||
"env": "BUILD=test-storage DAV_SERVER=xandikos REQUIREMENTS=release ",
|
||||
"python": "3.9"
|
||||
},
|
||||
{
|
||||
"env": "BUILD=test REQUIREMENTS=minimal",
|
||||
"python": "3.9"
|
||||
},
|
||||
{
|
||||
"env": "BUILD=test-storage DAV_SERVER=radicale REQUIREMENTS=minimal ",
|
||||
"python": "3.9"
|
||||
},
|
||||
{
|
||||
"env": "BUILD=test-storage DAV_SERVER=xandikos REQUIREMENTS=minimal ",
|
||||
"python": "3.9"
|
||||
},
|
||||
{
|
||||
"env": "BUILD=test ETESYNC_TESTS=true REQUIREMENTS=latest",
|
||||
"python": "3.7"
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
import itertools
|
||||
import json
|
||||
|
||||
python_versions = ["3.7", "3.8"]
|
||||
python_versions = ["3.7", "3.8", "3.9"]
|
||||
|
||||
cfg = {}
|
||||
|
||||
|
|
|
|||
1
setup.py
1
setup.py
|
|
@ -89,6 +89,7 @@ setup(
|
|||
'Programming Language :: Python :: 3',
|
||||
'Programming Language :: Python :: 3.7',
|
||||
'Programming Language :: Python :: 3.8',
|
||||
'Programming Language :: Python :: 3.9',
|
||||
'Topic :: Internet',
|
||||
'Topic :: Utilities',
|
||||
],
|
||||
|
|
|
|||
Loading…
Reference in a new issue