Skip to content

Commit

Permalink
Merge pull request #525 from azmeuk/py38
Browse files Browse the repository at this point in the history
Python 3.8 support
  • Loading branch information
ftm committed Dec 17, 2019
2 parents 23f730a + 203fff7 commit cb02076
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ sudo: false
language: python

python:
- 3.8
- 3.7
- 3.6
- 3.5
Expand All @@ -14,7 +15,7 @@ env: TOXENV=py,coveralls

matrix:
include:
- python: "3.6"
- python: "3.8"
env: TOXENV=stylecheck,docs-html
- python: "2.7"
env: TOXENV=py27,coveralls
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ class BDistWheel(CompileCatalogMixin, BaseBDistWheel):
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
],
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py{37,36,35,34,27,py3,py}
py{38,37,36,35,34,27,py3,py}
stylecheck
docs-html
coverage-report
Expand Down Expand Up @@ -45,7 +45,7 @@ commands =
coveralls

[testenv:stylecheck]
basepython = python3.6
basepython = python3.8
deps =
black
flake8
Expand Down

0 comments on commit cb02076

Please sign in to comment.