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

Add python3.8 support #174

Merged
merged 2 commits into from
Nov 4, 2019
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
14 changes: 14 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,12 @@ jobs:
- image: circleci/python:3.7
environment:
TOXENV: lint-py37
lint-py38:
<<: *common
docker:
- image: circleci/python:3.8
environment:
TOXENV: lint-py38
py35:
<<: *common
docker:
Expand All @@ -79,6 +85,12 @@ jobs:
- image: circleci/python:3.7
environment:
TOXENV: py37
py38:
<<: *common
docker:
- image: circleci/python:3.8
environment:
TOXENV: py38
py36-typing1:
<<: *common
docker:
Expand All @@ -98,8 +110,10 @@ workflows:
- docs
- lint-py36
- lint-py37
- lint-py38
- py35
- py36
- py37
- py38
- py36-typing1
- pypy3
1 change: 1 addition & 0 deletions newsfragments/174.feature.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Add support for python3.8
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
'pytest>=3.4.1,<4.0.0',
],
'test': [
'hypothesis>=3.4.2,<4.0.0',
'hypothesis>=4.43.0,<5.0.0',
'pytest>=3.4.1,<4.0.0',
'pytest-pythonpath>=0.3,<1.0',
],
Expand Down Expand Up @@ -55,7 +55,7 @@
"eth-hash>=0.1.0,<1.0.0",
"eth-typing>=1.0.0,<3.0.0",
"toolz>0.8.2,<1;implementation_name=='pypy'",
"cytoolz>=0.8.2,<1.0.0;implementation_name=='cpython'",
"cytoolz>=0.10.1,<1.0.0;implementation_name=='cpython'",
],
setup_requires=['setuptools-markdown'],
python_requires='>=3.5,!=3.5.2,<4',
Expand All @@ -74,6 +74,7 @@
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: Implementation :: PyPy',
],
)
5 changes: 3 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[tox]
envlist=
py{35,36,37,py3},
py{35,36,37,38,py3},
py36-typing1,
lint-py{36,37},
lint-py{36,37,38},
docs

[isort]
Expand Down Expand Up @@ -36,6 +36,7 @@ basepython=
py35: python3.5
py36: python3.6
py37: python3.7
py38: python3.8
mypy: mypy
pypy3: pypy3
whitelist_externals=make
Expand Down