Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Support Python 3.9 #283

Merged
merged 1 commit into from Dec 17, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8]
python-version: [3.6, 3.7, 3.8, 3.9]

steps:

Expand Down
1 change: 1 addition & 0 deletions docs/changelog.rst
Expand Up @@ -2,6 +2,7 @@
Changelog
=========

* :feature:`283` Support Python 3.9
* :support:`282` migrate CI from travis to GitHub actions
* :support:`281` Add downloads badge to track package usage

Expand Down
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,5 +1,5 @@
[tox]
envlist = clean, py36, py37, py38, stats, lint, docs
envlist = clean, py36, py37, py38, py39, stats, lint, docs

[testenv]
deps = .[test]
Expand Down