Merge pull request #157 from pipermerriam/piper/update-eth-abi-utils

update eth-abi-utils to latest version
This commit is contained in:
Piper Merriam 2017-02-13 17:27:48 -07:00 committed by GitHub
commit 79da322218
3 changed files with 11 additions and 24 deletions

View File

@ -9,18 +9,20 @@ before_install:
- travis_retry sudo apt-get update
env:
matrix:
- TOX_ENV=py27-all-stdlib
- TOX_ENV=py34-all-stdlib
- TOX_ENV=py35-all-stdlib
- TOX_ENV=py27-all-gevent
- TOX_ENV=py34-all-gevent
- TOX_ENV=py35-all-gevent
- TOX_ENV=py27-stdlib
- TOX_ENV=py34-stdlib
- TOX_ENV=py35-stdlib
- TOX_ENV=py27-gevent
- TOX_ENV=py34-gevent
- TOX_ENV=py35-gevent
- TOX_ENV=flake8
cache:
pip: true
install:
- "travis_retry pip install pip setuptools --upgrade"
- "travis_retry pip install tox"
before_script:
- pip freeze
script:
- tox -e $TOX_ENV --recreate
after_script:

View File

@ -24,7 +24,7 @@ setup(
url='https://github.com/pipermerriam/web3.py',
include_package_data=True,
install_requires=[
"ethereum-abi-utils>=0.2.1",
"ethereum-abi-utils>=0.3.1",
"pylru>=1.0.9",
"pysha3>=0.3",
"requests>=2.12.4",

19
tox.ini
View File

@ -1,6 +1,6 @@
[tox]
envlist=
py{27,34,35}-{all,admin,eth,mining,providers,version,contracts,filtering,net,txpool,db,managers,personal,utilities}-{gevent-stdlib}
py{27,34,35}-{gevent-stdlib}
flake8
[flake8]
@ -10,22 +10,7 @@ exclude= tests/*
[testenv]
usedevelop=True
commands=
all: py.test {posargs:tests}
admin: py.test {posargs:tests/admin-module}
eth: py.test {posargs:tests/eth-module}
mining: py.test {posargs:tests/mining-module}
providers: py.test {posargs:tests/providers}
version: py.test {posargs:tests/version-module}
contracts: py.test {posargs:tests/contracts}
filtering: py.test {posargs:tests/filtering}
net: py.test {posargs:tests/net-module}
shh: py.test {posargs:tests/shh-module}
txpool: py.test {posargs:tests/txpool-module}
db: py.test {posargs:tests/db-module}
managers: py.test {posargs:tests/managers}
personal: py.test {posargs:tests/personal-module}
testing: py.test {posargs:tests/testing-module}
utilities: py.test {posargs:tests/utilities}
py.test {posargs:tests}
deps =
stdlib: -r{toxinidir}/requirements-dev.txt
gevent: -r{toxinidir}/requirements-gevent.txt