Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix for python 3.8 #145

Merged
merged 3 commits into from
Jan 7, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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