Skip to content

Commit

Permalink
feat: Add python 3.9 support
Browse files Browse the repository at this point in the history
  • Loading branch information
Toilal committed Dec 23, 2020
1 parent 16323da commit df1d605
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ 3.5, 3.6, 3.7, 3.8, pypy-3.6 ]
python-version: [ 3.5, 3.6, 3.7, 3.8, 3.9, pypy-3.6 ]

steps:
- name: Setup python ${{ matrix.python-version }}
Expand Down
7 changes: 6 additions & 1 deletion tox.ini
@@ -1,5 +1,10 @@
[tox]
envlist = py35,py36,py37,py38,pypy3
envlist = py35,py36,py37,py38,py39,pypy3

[testenv:py39]
commands =
{envbindir}/pip install -e .[dev,test]
{envpython} setup.py test

[testenv]
commands =
Expand Down

0 comments on commit df1d605

Please sign in to comment.