Skip to content

Commit

Permalink
Merge pull request #86 from fubuloubu/python3.8
Browse files Browse the repository at this point in the history
Add support for Python 3.8
  • Loading branch information
pipermerriam authored Jan 31, 2020
2 parents a0a6063 + 02e9e12 commit 5503868
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
7 changes: 7 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,12 @@ jobs:
- image: circleci/python:3.7
environment:
TOXENV: py37-core
py38-core:
<<: *common
docker:
- image: circleci/python:3.8
environment:
TOXENV: py38-core
workflows:
version: 2
test:
Expand All @@ -68,3 +74,4 @@ workflows:
- lint
- py36-core
- py37-core
- py38-core
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,5 +73,6 @@
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
)
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist=
py{36,37}-core
py{36,37,38}-core
lint
doctest

Expand Down Expand Up @@ -28,6 +28,7 @@ basepython =
doctest: python
py36: python3.6
py37: python3.7
py38: python3.8
extras=
test
doctest: doc
Expand Down

0 comments on commit 5503868

Please sign in to comment.