Skip to content

Commit

Permalink
Officially add Python 3.9 support (#71)
Browse files Browse the repository at this point in the history
This is equivalent to what we did for Python 3.8 at #52.

* Officially add Python 3.9 support

* Use 3.9-dev since 3.9 isn't available
  • Loading branch information
bmw authored Oct 29, 2020
1 parent b743e16 commit 4558519
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ matrix:
- python: "3.6"
- python: "3.7"
- python: "3.8"
- python: "3.9-dev"
install:
- pip install tox-travis codecov
script:
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Security',
],
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tox]
envlist =
py27
py3{6,7,8}
py3{6,7,8,9}

[testenv]
commands =
Expand Down

0 comments on commit 4558519

Please sign in to comment.