CircleCI: directly use install solc script to dodge pipenv api changes

pull/381/head
Kieran Prasch 2018-08-11 14:24:58 -07:00 committed by Kieran R. Prasch
parent 7a645ebdb8
commit f1917560a6
1 changed files with 3 additions and 3 deletions

View File

@ -1,18 +1,16 @@
import contextlib
import os
import tempfile
from os.path import abspath, dirname
import datetime
import maya
import pytest
from constant_sorrow import constants
from eth_tester import EthereumTester
from eth_utils import to_checksum_address
from sqlalchemy.engine import create_engine
from web3 import EthereumTesterProvider
import nucypher
from eth_tester import EthereumTester
from nucypher.blockchain.eth.chains import TesterBlockchain
from nucypher.blockchain.eth.deployers import PolicyManagerDeployer, NucypherTokenDeployer, MinerEscrowDeployer
from nucypher.blockchain.eth.interfaces import DeployerCircumflex
@ -26,6 +24,7 @@ from nucypher.keystore.keypairs import SigningKeypair
from nucypher.utilities.blockchain import make_ursulas, token_airdrop
from nucypher.utilities.network import MockRestMiddleware
#
# Setup
#
@ -222,6 +221,7 @@ def non_ursula_miners(three_agents):
miners=True,
bare=True,
ursula_starting_port=starting_point)
try:
yield _ursulas
finally: