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

Added python 3 support and updated dependencies #17

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
1 change: 1 addition & 0 deletions ethjsonrpc/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

import requests
from requests.exceptions import ConnectionError as RequestsConnectionError
from past.builtins import basestring
from ethereum import utils
from ethereum.abi import encode_abi, decode_abi

Expand Down
1 change: 1 addition & 0 deletions ethjsonrpc/utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from ethjsonrpc.constants import BLOCK_TAGS
from past.builtins import basestring


def hex_to_dec(x):
Expand Down
5 changes: 3 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
ethereum==1.0.8
requests==2.9.1
ethereum==1.5.2
requests==2.11.1
future==0.15.2
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,11 @@
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
install_requires=[
'ethereum==1.0.8',
'requests==2.9.1',
'ethereum==1.5.2',
'requests==2.11.1',
'future==0.15.2',
],
)