Skip to content

Commit 860ea96

Browse files
committed
Test on Python 3.8 and 3.9-dev
1 parent 9cd5d98 commit 860ea96

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

.travis.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,20 @@ matrix:
3939
- WITH_GCOV=1
4040
dist: xenial
4141
sudo: true
42-
- python: 3.8-dev
42+
- python: 3.8
4343
env:
4444
- TOXENV=py38
4545
- CFLAGS_std="-std=c99"
4646
- WITH_GCOV=1
4747
dist: xenial
4848
sudo: true
49+
- python: 3.9-dev
50+
env:
51+
- TOXENV=py39
52+
- CFLAGS_std="-std=c99"
53+
- WITH_GCOV=1
54+
dist: xenial
55+
sudo: true
4956
- python: 2.7
5057
env:
5158
- TOXENV=py2-nosasltls
@@ -61,7 +68,7 @@ matrix:
6168
env: TOXENV=doc
6269
allow_failures:
6370
- env:
64-
- TOXENV=py38
71+
- TOXENV=py39
6572
- CFLAGS_std="-std=c99"
6673
- WITH_GCOV=1
6774
- env:

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ class OpenLDAP2:
9595
'Programming Language :: Python :: 3.5',
9696
'Programming Language :: Python :: 3.6',
9797
'Programming Language :: Python :: 3.7',
98+
'Programming Language :: Python :: 3.8',
9899
# Note: when updating Python versions, also change .travis.yml and tox.ini
99100

100101
'Topic :: Database',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
[tox]
77
# Note: when updating Python versions, also change setup.py and .travis.yml
8-
envlist = py27,py34,py35,py36,py37,py38,{py2,py3}-nosasltls,doc,py3-trace,coverage-report
8+
envlist = py27,py34,py35,py36,py37,py38,py39,{py2,py3}-nosasltls,doc,py3-trace,coverage-report
99
minver = 1.8
1010

1111
[testenv]

0 commit comments

Comments
 (0)