mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-27 14:57:41 +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 ",
|
"env": "BUILD=test-storage DAV_SERVER=xandikos REQUIREMENTS=minimal ",
|
||||||
"python": "3.8"
|
"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",
|
"env": "BUILD=test ETESYNC_TESTS=true REQUIREMENTS=latest",
|
||||||
"python": "3.7"
|
"python": "3.7"
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
import itertools
|
import itertools
|
||||||
import json
|
import json
|
||||||
|
|
||||||
python_versions = ["3.7", "3.8"]
|
python_versions = ["3.7", "3.8", "3.9"]
|
||||||
|
|
||||||
cfg = {}
|
cfg = {}
|
||||||
|
|
||||||
|
|
|
||||||
1
setup.py
1
setup.py
|
|
@ -89,6 +89,7 @@ setup(
|
||||||
'Programming Language :: Python :: 3',
|
'Programming Language :: Python :: 3',
|
||||||
'Programming Language :: Python :: 3.7',
|
'Programming Language :: Python :: 3.7',
|
||||||
'Programming Language :: Python :: 3.8',
|
'Programming Language :: Python :: 3.8',
|
||||||
|
'Programming Language :: Python :: 3.9',
|
||||||
'Topic :: Internet',
|
'Topic :: Internet',
|
||||||
'Topic :: Utilities',
|
'Topic :: Utilities',
|
||||||
],
|
],
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue