Skip to content

Commit

Permalink
Merge branch 'master' into version-bump
Browse files Browse the repository at this point in the history
  • Loading branch information
hkalodner committed Feb 14, 2020
2 parents 336a192 + d5260ef commit 07cd330
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 205 deletions.
3 changes: 1 addition & 2 deletions packages/arb-provider-ethers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,7 @@
"ethers": "^4.0.44",
"jayson": "^3.2.0",
"node-fetch": "^2.6.0",
"promise-poller": "^1.9.1",
"solidity-bytes-utils": "^0.0.8"
"promise-poller": "^1.9.1"
},
"devDependencies": {
"@types/jest": "^25.1.1",
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
-i https://pypi.org/simple
virtualenv
web3
eth-account
8 changes: 7 additions & 1 deletion scripts/install-deps
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,13 @@ pip3 install -r requirements-dev.txt --user
pre-commit install

# Install conan
virtualenv --no-site-packages vconan
VIRTUALENV_MAJOR_VERSION=$(pip3 show virtualenv | grep Version | sed 's/.*: //' | sed -n 's/\..*//p')
if (($VIRTUALENV_MAJOR_VERSION < 20))
then
virtualenv --no-site-packages vconan
else
virtualenv vconan
fi
. vconan/bin/activate
pip3 install --upgrade conan
# conan nonstd-lite
Expand Down
Loading

0 comments on commit 07cd330

Please sign in to comment.