Skip to content

Commit

Permalink
Merge pull request #116 from willkg/112-python38
Browse files Browse the repository at this point in the history
Support Python 3.8
  • Loading branch information
willkg committed Nov 4, 2019
2 parents b3698c0 + e7d1989 commit 318f781
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .github/workflows/main.yml
Expand Up @@ -25,6 +25,11 @@ jobs:
with:
python-version: 3.7

- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.8

- name: Install CI dependencies
run: |
python -m pip install --upgrade pip
Expand Down
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -59,6 +59,7 @@ def get_version():
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3 :: Only',
],
)
2 changes: 1 addition & 1 deletion tox.ini
Expand Up @@ -4,7 +4,7 @@
# and then run "tox" from this directory.

[tox]
envlist = py35,py36,py37,py36-lint
envlist = py35,py36,py37,py38,py36-lint

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

0 comments on commit 318f781

Please sign in to comment.