Skip to content

Commit c6bc3af

Browse files
committed
Use interface supporting pyethereum
Use ethereum/pyethereum#737
1 parent e0b0c57 commit c6bc3af

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

requirements.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
11
# temporary (?) until pyelliptic maintainers make it compatible with openssl>=1.1
2-
-e git+https://github.com/LefterisJP/pyelliptic@make_compatible_with_openssl1_1#egg=pyelliptic
2+
git+https://github.com/LefterisJP/pyelliptic@make_compatible_with_openssl1_1#egg=pyelliptic
33
pysha3
44
# temporary until new version of pyethereum is released, that supports solc >= v0.4.9
5-
-e git+https://github.com/LefterisJP/pyethapp@use_new_solc_combinedjson_key#egg=pyethapp
5+
git+https://github.com/LefterisJP/pyethapp@use_new_solc_combinedjson_key#egg=pyethapp
66
# temporary until pystun creates a new release
77
git+https://github.com/konradkonrad/pystun@develop#egg=pystun
8+
# temporary until new version of pyethereum is released, that supports interfaces
9+
git+https://github.com/LefterisJP/pyethereum@take_solidity_interface_into_account#egg=ethereum
810
ipython<5.0.0
911
rlp>=0.4.3
1012
coincurve==4.5.1
1113
pycryptodome>=3.4.3
1214
miniupnpc
1315
networkx
14-
ethereum>=1.6.1
1516
ethereum-serpent
1617
repoze.lru
1718
gevent-websocket==0.9.4

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,9 @@ def run(self):
4848

4949

5050
install_requires_replacements = {
51-
"-e git+https://github.com/LefterisJP/pyethapp@use_new_solc_combinedjson_key#egg=pyethapp": "pyethapp",
52-
"-e git+https://github.com/LefterisJP/pyelliptic@make_compatible_with_openssl1_1#egg=pyelliptic": "pyelliptic",
51+
"git+https://github.com/LefterisJP/pyethereum@take_solidity_interface_into_account#egg=ethereum": "ethereum",
52+
"git+https://github.com/LefterisJP/pyethapp@use_new_solc_combinedjson_key#egg=pyethapp": "pyethapp",
53+
"git+https://github.com/LefterisJP/pyelliptic@make_compatible_with_openssl1_1#egg=pyelliptic": "pyelliptic",
5354
"git+https://github.com/konradkonrad/pystun@develop#egg=pystun": "pystun",
5455
}
5556

0 commit comments

Comments
 (0)