Skip to content

Commit

Permalink
Enable testing using Python 3.9 (errbotio#1477)
Browse files Browse the repository at this point in the history
* Enable testing using Python 3.9

* Fix linting.
  • Loading branch information
nzlosh authored Nov 19, 2020
1 parent 5531357 commit 7502572
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.6, 3.7, 3.8]
python-version: [3.6, 3.7, 3.8, 3.9]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ matrix:
env: TOXENV=py37
- python: 3.8
env: TOXENV=py38
- python: 3.9
env: TOXENV=py39
- python: 3.7
env: TOXENV=pypi-lint
- python: 3.7
Expand Down
8 changes: 8 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
v6.1.7 (unreleased)
-------------------

features:

- core: Add support for python3.9 (#1477)


v6.1.6 (2020-11-16)
-------------------

Expand Down
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,8 @@ def read(fname, encoding='ascii'):
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
src_root=src_root,
platforms='any',
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 = py36,py37,py38,codestyle,pypi-lint,security
envlist = py36,py37,py38,py39,codestyle,pypi-lint,security
skip_missing_interpreters = True

[testenv]
Expand Down

0 comments on commit 7502572

Please sign in to comment.