Skip to content

Commit

Permalink
feat: Add Python 3.9 support and drop Python 3.5 support
Browse files Browse the repository at this point in the history
  • Loading branch information
Toilal committed Dec 16, 2020
1 parent cd80d76 commit 83e97e9
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/build.yml
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ 3.5, 3.6, 3.7, 3.8 ]
python-version: [ 3.6, 3.7, 3.8, 3.9 ]
steps:
# Setup docker
- uses: docker-practice/actions-setup-docker@master
Expand Down Expand Up @@ -47,7 +47,10 @@ jobs:
pip freeze
- run: pylint ddb
if: matrix.python-version != '3.9'

- run: coverage run --source=ddb -m pytest

- run: python setup.py build

- name: Coveralls
Expand Down
7 changes: 6 additions & 1 deletion tox.ini
@@ -1,9 +1,14 @@
# content of: tox.ini , put in same dir as setup.py
[tox]
envlist = py35,py36,py37,py38
envlist = py36,py37,py38,py39
requires = tox-venv
setuptools >= 30.0.0

[testenv:py39]
deps = -r requirements-dev.txt
commands =
pytest

[testenv]
deps = -r requirements-dev.txt
commands =
Expand Down

0 comments on commit 83e97e9

Please sign in to comment.