Skip to content

Commit

Permalink
Update vyper.py
Browse files Browse the repository at this point in the history
  • Loading branch information
BobTheBuidler authored Aug 16, 2024
1 parent 5c9a9f5 commit 97060d8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions brownie/project/compiler/vyper.py
Original file line number Diff line number Diff line change
Expand Up @@ -240,8 +240,8 @@ def compile_from_input_json(
outputs = input_json["settings"]["outputSelection"]["*"]["*"]
outputs.remove("userdoc")
outputs.remove("devdoc")
#if version == Version(vyper.__version__):
if False:
if version == Version(vyper.__version__):
#if False:
if allow_paths is not None:
raise NotImplementedError(allow_paths)
try:
Expand All @@ -252,6 +252,7 @@ def compile_from_input_json(
try:
return vvm.compile_standard(input_json, base_path=allow_paths, vyper_version=version)
except vvm.exceptions.VyperError as exc:
print(version)
raise
raise CompilerError(exc, "vyper")

Expand Down

0 comments on commit 97060d8

Please sign in to comment.