Skip to content

Commit

Permalink
Merge pull request #98 from jodal/py39
Browse files Browse the repository at this point in the history
Support Python 3.9
  • Loading branch information
jodal authored Oct 21, 2020
2 parents 37ebcb0 + 154c4be commit d1b33b3
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
10 changes: 8 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ workflows:
- py36
- py37
- py38
- py39
- pypy3
- black
- check-manifest
Expand All @@ -18,9 +19,9 @@ workflows:
- mypy

jobs:
py38: &test-template
py39: &test-template
docker:
- image: circleci/python:3.8
- image: circleci/python:3.9
steps:
- checkout
- run:
Expand Down Expand Up @@ -58,6 +59,11 @@ jobs:
docker:
- image: circleci/python:3.7

py38:
<<: *test-template
docker:
- image: circleci/python:3.8

pypy3:
<<: *test-template
docker:
Expand Down
2 changes: 2 additions & 0 deletions docs/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ Changes
v3.0.0 (UNRELEASED)
===================

- Include Python 3.9 in the test matrix. (PR: :issue:`98`)

- Remove support for Python 2.7. (PR: :issue:`87`)

- Remove support for Python 3.5. (PR: :issue:`89`)
Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ classifiers =
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 =
py36, py37, py38, pypy3,
py36, py37, py38, py39, pypy3,
black, check-manifest, docs, flake8

[testenv]
Expand Down

0 comments on commit d1b33b3

Please sign in to comment.