Skip to content

Commit a216b75

Browse files
committed
Add support for Python 3.8
1 parent e8f49da commit a216b75

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ classifier =
1515
Programming Language :: Python :: 3
1616
Programming Language :: Python :: 3.6
1717
Programming Language :: Python :: 3.7
18+
Programming Language :: Python :: 3.8
1819

1920
[files]
2021
packages =

tox.ini

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{36,37},lint
2+
envlist = py{36,37,38},lint
33
skipsdist = True
44

55
[testenv]
@@ -15,7 +15,7 @@ whitelist_externals = find
1515
go
1616
docker
1717
[testenv:lint]
18-
basepython = python3.7
18+
basepython = python3.8
1919
commands =
2020
flake8
2121

@@ -28,6 +28,9 @@ commands = pytest -v -s --tb=long --cov=cloudevents {toxinidir}/cloudevents/test
2828
[testenv:py37]
2929
commands = pytest -v -s --tb=long --cov=cloudevents {toxinidir}/cloudevents/tests
3030

31+
[testenv:py38]
32+
commands = pytest -v -s --tb=long --cov=cloudevents {toxinidir}/cloudevents/tests
33+
3134
[flake8]
3235
ignore = H405,H404,H403,H401,H306,S101,N802,N803,N806,I202,I201
3336
show-source = True

0 commit comments

Comments
 (0)