Skip to content

Commit

Permalink
Add support for Python 3.7, 3.8, and 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
mgedmin committed Nov 6, 2020
1 parent 13d0025 commit 10bb264
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ cache: pip
python:
- 2.7
- 3.6
- 3.7
- 3.8
- 3.9
- pypy2
- pypy3
install:
Expand Down
4 changes: 4 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
4.0.1 (unreleased)
==================

- Add support for Python 3.7, 3.8, and 3.9.

- Drop support for Python 3.4 and 3.5.


Expand Down Expand Up @@ -37,6 +39,7 @@
- Moved a doctest into a unittest to fix failures in the KGS test suite
(see LP #257954)


3.4.1 (2008-02-25)
==================

Expand All @@ -45,6 +48,7 @@

- Removed the use of ``ThreadedAsync``.


3.4.0 (2007-10-27)
==================

Expand Down
3 changes: 3 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,9 @@ def read(*rnames):
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Natural Language :: English',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py27, py36, pypy, pypy3
envlist = py27, py36, py37, py38, py39, pypy, pypy3

[testenv]
extras = test
Expand Down

0 comments on commit 10bb264

Please sign in to comment.