Skip to content

Commit

Permalink
fix for python 3.8 (#145)
Browse files Browse the repository at this point in the history
* fix for python 3.8

* Add CI for python 3.8

* Add newsfragment

Co-authored-by: kclowes <kclowes@users.noreply.github.com>
  • Loading branch information
step21 and kclowes authored Jan 7, 2022
1 parent decaadc commit ec58c4d
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 2 deletions.
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 newsfragments/145.feature.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Add support for python 3.8
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
find_packages,
)

HYPOTHESIS_REQUIREMENT = "hypothesis>=3.6.1,<4"
HYPOTHESIS_REQUIREMENT = "hypothesis>=4.18.2,<5.0.0"

extras_require = {
'tools': [
Expand Down
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
docs

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

0 comments on commit ec58c4d

Please sign in to comment.