Skip to content
This repository has been archived by the owner on Jul 24, 2023. It is now read-only.

Commit

Permalink
Add support for python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
ziima committed Jul 14, 2020
1 parent 0084ed3 commit 80cab9c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ python:
- "3.5"
- "3.6"
- "3.7"
- "3.8"
- "pypy"

addons:
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
Expand Down
6 changes: 3 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[tox]
envlist =
quality
py{27,35,36,37}-{openid,djopenid,httplib2,pycurl,requests}
py{27,35,36,37,38}-{openid,djopenid,httplib2,pycurl,requests}
pypy-{openid,djopenid,httplib2,pycurl,requests}

# tox-travis specials
[travis]
python =
3.7: py37, quality
3.8: py38, quality

# Generic specification for all unspecific environments
[testenv]
Expand All @@ -28,7 +28,7 @@ commands =
djopenid: coverage run --parallel-mode --branch --source=openid,examples --module unittest discover --start={toxinidir}/examples

[testenv:quality]
basepython = python3.7
basepython = python3.8
extras =
quality
commands =
Expand Down

0 comments on commit 80cab9c

Please sign in to comment.