Skip to content

Commit b10f1ed

Browse files
authored
Merge pull request ethereum#1538 from javimaravillas/fix/pytest-pluggy-dev
eth-abi 1.2.2 has requirement eth-typing<2, but you'll have eth-typing 2.0.0 which is incompatible.but you'll ha…
2 parents 6a504d5 + ac8ea9a commit b10f1ed

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

setup.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
# Installing these libraries may make the evm perform better than
2424
# using the default fallbacks though.
2525
'eth-extra': [
26-
"coincurve>=8.0.0,<9.0.0",
26+
"coincurve>=10.0.0,<11.0.0",
2727
"eth-hash[pysha3];implementation_name=='cpython'",
2828
"eth-hash[pycryptodome];implementation_name=='pypy'",
2929
"plyvel==1.0.5",
@@ -40,7 +40,7 @@
4040
"async-generator==1.10",
4141
"bloom-filter==1.3",
4242
"cachetools>=2.1.0,<3.0.0",
43-
"coincurve>=8.0.0,<9.0.0",
43+
"coincurve>=10.0.0,<11.0.0",
4444
"ipython>=6.2.1,<7.0.0",
4545
"plyvel==1.0.5",
4646
"web3==4.4.1",
@@ -83,6 +83,10 @@
8383
"bumpversion>=0.5.3,<1",
8484
"wheel",
8585
"setuptools>=36.2.0",
86+
#Fixing this dependency due to: pytest 3.6.4 has requirement pluggy<0.8,>=0.5, but you'll have pluggy 0.8.0 which is incompatible.
87+
"pluggy==0.7.1",
88+
#Fixing this dependency due to: requests 2.20.1 has requirement idna<2.8,>=2.5, but you'll have idna 2.8 which is incompatible.
89+
"idna==2.7",
8690
"tox==2.7.0",
8791
"twine",
8892
],

0 commit comments

Comments
 (0)