Skip to content

Commit

Permalink
Remove Python 3.5 support
Browse files Browse the repository at this point in the history
  • Loading branch information
medvedev1088 committed Dec 23, 2021
1 parent 0667b68 commit 1b9c078
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,12 @@ def read(fname):
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8'
],
keywords='ethereum',
# web3.py doesn't work on 3.5.2 and less (https://github.com/ethereum/web3.py/issues/1012)
python_requires='>=3.5.3,<4',
python_requires='>=3.6,<4',
install_requires=[
'web3==4.7.2',
'eth-utils==1.10.0',
Expand Down
3 changes: 1 addition & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist=
py{35,36,37,38}
py{36,37,38}

[testenv]
usedevelop=True
Expand All @@ -11,7 +11,6 @@ commands=
deps=
.[dev,streaming]
basepython=
py35: python3.5
py36: python3.6
py37: python3.7
py38: python3.8

0 comments on commit 1b9c078

Please sign in to comment.