Skip to content

Commit 8ac4a00

Browse files
author
Hugo Osvaldo Barrera
committed
Add support for Python 3.9
1 parent 6897995 commit 8ac4a00

File tree

3 files changed

+26
-1
lines changed

3 files changed

+26
-1
lines changed

.travis.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,30 @@
7373
"env": "BUILD=test-storage DAV_SERVER=xandikos REQUIREMENTS=minimal ",
7474
"python": "3.8"
7575
},
76+
{
77+
"env": "BUILD=test REQUIREMENTS=release",
78+
"python": "3.9"
79+
},
80+
{
81+
"env": "BUILD=test-storage DAV_SERVER=radicale REQUIREMENTS=release ",
82+
"python": "3.9"
83+
},
84+
{
85+
"env": "BUILD=test-storage DAV_SERVER=xandikos REQUIREMENTS=release ",
86+
"python": "3.9"
87+
},
88+
{
89+
"env": "BUILD=test REQUIREMENTS=minimal",
90+
"python": "3.9"
91+
},
92+
{
93+
"env": "BUILD=test-storage DAV_SERVER=radicale REQUIREMENTS=minimal ",
94+
"python": "3.9"
95+
},
96+
{
97+
"env": "BUILD=test-storage DAV_SERVER=xandikos REQUIREMENTS=minimal ",
98+
"python": "3.9"
99+
},
76100
{
77101
"env": "BUILD=test ETESYNC_TESTS=true REQUIREMENTS=latest",
78102
"python": "3.7"

scripts/make_travisconf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import itertools
33
import json
44

5-
python_versions = ["3.7", "3.8"]
5+
python_versions = ["3.7", "3.8", "3.9"]
66

77
cfg = {}
88

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ def run(self):
8989
'Programming Language :: Python :: 3',
9090
'Programming Language :: Python :: 3.7',
9191
'Programming Language :: Python :: 3.8',
92+
'Programming Language :: Python :: 3.9',
9293
'Topic :: Internet',
9394
'Topic :: Utilities',
9495
],

0 commit comments

Comments
 (0)