You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be great if it was possible to prevent brownie from downloading solc. I am using solc-select, and I suspect brownie doesn't like that and redownloads solc, even though all my contracts have pragma solidity 0.7.3 and solc --version gives 0.7.3. Hope that helps!
The text was updated successfully, but these errors were encountered:
Brownie is using py-solc-x under the hood to deal with Solidity version management. Normally py-solc-x will detect an installed verion of solc and use it rather than downloading, but I guess it's incompatible with solc-select. Probably it would be possible to make them play nicely together.
It would be great if it was possible to prevent
brownie
from downloading solc. I am using solc-select, and I suspect brownie doesn't like that and redownloads solc, even though all my contracts havepragma solidity 0.7.3
andsolc --version
gives 0.7.3. Hope that helps!The text was updated successfully, but these errors were encountered: