From 47137c61d6947e2f34df5df056274698f023f8d7 Mon Sep 17 00:00:00 2001 From: Nick Gheorghita Date: Sat, 15 Dec 2018 17:17:47 +0100 Subject: [PATCH 1/2] Update to web3 v5 --- setup.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 28284b9..2a32753 100644 --- a/setup.py +++ b/setup.py @@ -54,16 +54,17 @@ include_package_data=True, install_requires=[ 'bumpversion>=0.5.3,<1', - 'eth-abi>=1.2.2,<1.3.0', 'eth-keys>=0.2.0b3,<1', 'eth-utils>=1.3.0,<2', + 'eth-tester>=0.1.0b34,<1', 'ipfsapi>=0.4.3,<1', 'jsonschema>=2.6.0,<3', 'protobuf>=3.0.0,<4', - 'pytest-ethereum>=0.1.3a.5,<1', + 'pytest-ethereum>=0.1.3a.6,<1', + 'py-evm>=0.2.0a38,<1', 'py-solc>=3.2.0,<4', 'rlp>=1.0.1,<2', - 'web3[tester]>=4.7,<5', + 'web3[tester]>=5.0.0a2,<6.0.0', ], setup_requires=['setuptools-markdown'], python_requires='>=3.6, <4', From 3910365422c5eb99a22de3e2305f545fc45ee4e0 Mon Sep 17 00:00:00 2001 From: Nick Gheorghita Date: Thu, 3 Jan 2019 17:01:27 +0100 Subject: [PATCH 2/2] Remove pyevmbackend from w3 fixture --- setup.py | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/setup.py b/setup.py index 2a32753..b8cd7cb 100644 --- a/setup.py +++ b/setup.py @@ -16,6 +16,7 @@ extras_require={ 'test': [ 'pytest>=3.2.1,<4', + 'pytest-ethereum>=0.1.3a.6,<1', 'tox>=1.8.0,<2', ], 'lint': [ @@ -29,6 +30,8 @@ 'sphinx_rtd_theme>=0.1.9,<2', ], 'dev': [ + 'bumpversion>=0.5.3,<1', + 'ipython>=7.2.0,<8', 'pytest-watch>=4.1.0,<5', 'twine', 'wheel', @@ -53,18 +56,13 @@ url='https://github.com/ethpm/py-ethpm', include_package_data=True, install_requires=[ - 'bumpversion>=0.5.3,<1', - 'eth-keys>=0.2.0b3,<1', - 'eth-utils>=1.3.0,<2', - 'eth-tester>=0.1.0b34,<1', + 'eth-utils>=1.4.1,<2', 'ipfsapi>=0.4.3,<1', 'jsonschema>=2.6.0,<3', 'protobuf>=3.0.0,<4', - 'pytest-ethereum>=0.1.3a.6,<1', - 'py-evm>=0.2.0a38,<1', 'py-solc>=3.2.0,<4', 'rlp>=1.0.1,<2', - 'web3[tester]>=5.0.0a2,<6.0.0', + 'web3[tester]>=5.0.0a3,<6', ], setup_requires=['setuptools-markdown'], python_requires='>=3.6, <4',