Skip to content

Commit

Permalink
Merge pull request #11 from mgedmin/py39
Browse files Browse the repository at this point in the history
Add Python 3.9 support
  • Loading branch information
mgedmin committed Oct 28, 2020
2 parents 6cc0c87 + 32e4ab2 commit 7761486
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
language: python
cache: pip
python:
- 2.7
- 3.6
- 3.7
- 3.8
- 3.9
- pypy
- pypy3
install:
Expand Down
2 changes: 2 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ Changes
1.5.3 (unreleased)
------------------

- Add support for Python 3.9.

- Drop support for Python 3.5.


Expand Down
1 change: 1 addition & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ environment:
- PYTHON: "C:\\Python36"
- PYTHON: "C:\\Python37"
- PYTHON: "C:\\Python38"
- PYTHON: "C:\\Python39"

init:
- "echo %PYTHON%"
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ def read(filename):
'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',
] + [
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py27,py36,py37,py38,pypy,pypy3
py27,py36,py37,py38,py39,pypy,pypy3

[testenv]
deps =
Expand Down

0 comments on commit 7761486

Please sign in to comment.