Add support for Python 3.9

This commit is contained in:
Hugo Osvaldo Barrera 2020-10-19 20:46:35 +02:00
parent 6897995080
commit 8ac4a00306
3 changed files with 26 additions and 1 deletions

View file

@ -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"

View file

@ -2,7 +2,7 @@
import itertools
import json
python_versions = ["3.7", "3.8"]
python_versions = ["3.7", "3.8", "3.9"]
cfg = {}

View file

@ -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',
],