Skip to content

Commit

Permalink
Add Python 3.9 support
Browse files Browse the repository at this point in the history
  • Loading branch information
mgedmin committed Oct 27, 2020
1 parent f102a86 commit 065771b
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Expand Up @@ -3,6 +3,7 @@ python:
- 3.6
- 3.7
- 3.8
- 3.9
- pypy3
jobs:
include:
Expand Down
2 changes: 1 addition & 1 deletion CHANGES.rst
Expand Up @@ -16,7 +16,7 @@ Changelog
- Fixed an AttributeError in the undocumented remote task list feature
(GH: #153).

- Add Python 3.8 support.
- Add Python 3.8 and 3.9 support.

- Drop Python 2.7 and 3.5 support.

Expand Down
1 change: 1 addition & 0 deletions appveyor.yml
Expand Up @@ -7,6 +7,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
Expand Up @@ -67,6 +67,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',
'Topic :: Office/Business',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,6 +1,6 @@
[tox]
envlist =
py36,py37,py38,pypy3,flake8
py36,py37,py38,py39,pypy3,flake8

[testenv]
setenv =
Expand Down

0 comments on commit 065771b

Please sign in to comment.