1.7.0 Release

This commit is contained in:
Piper Merriam 2016-08-13 07:51:00 -06:00
parent a873c2bd3c
commit baa2dfb9b5
3 changed files with 12 additions and 5 deletions

View File

@ -1,3 +1,10 @@
1.7.0
--------
* Add `eth.admin` interface.
* Bugfix: Format the return value of `web3.eth.syncing`
* Bugfix: IPCProvider socket interactions are now more robust.
1.6.0
--------

View File

@ -6,6 +6,6 @@ ethereum-tester-client>=0.9.0
py-geth>=1.1.0
ethereum>=1.5.2
secp256k1>=0.13.1
rlp==0.4.6
hypothesis==3.4.2
flaky==3.3.0
rlp>=0.4.6
hypothesis>=3.4.2
flaky>=3.3.0

View File

@ -16,7 +16,7 @@ readme = open(os.path.join(DIR, 'README.md')).read()
setup(
name='web3',
version='1.6.0',
version='1.7.0',
description="""Web3.py""",
long_description=readme,
author='Piper Merriam',
@ -30,7 +30,7 @@ setup(
"rlp>=0.4.6",
"gevent>=1.1.1",
"ethereum-abi-utils>=0.2.1",
"pysha3==0.3",
"pysha3>=0.3",
],
py_modules=['web3'],
license="MIT",