oyente icon indicating copy to clipboard operation
oyente copied to clipboard

Specify exact version of `web3` in Dockerfile

Open alex-murashkin opened this issue 6 years ago • 1 comments

Seems like Web3.py recently got updated and no longer supports Python 2.7 (compare https://pypi.org/project/web3/4.2.1/ to https://pypi.org/project/web3/3.16.5/ , the supports list)

However, the present Dockerfile seems to use Python 2.7

To work around that, could replace RUN pip install requests web3 with RUN pip install requests web3==3.16.5 to use the exact web3 version that is still compatible with Python 2.7

alex-murashkin avatar May 31 '18 21:05 alex-murashkin

#336 should fix this, using the Ubuntu update-alternatives system. Waiting on review and merge.

lazzarello avatar Jun 18 '18 22:06 lazzarello