Skip to content

Commit af40b55

Browse files
fix: minimum version for vyper istanbul compilation
1 parent b3ca45a commit af40b55

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

brownie/project/compiler/vyper.py

+1-4
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
("shanghai", Version("0.3.9")),
3333
("paris", Version("0.3.7")),
3434
("berlin", Version("0.2.12")),
35-
("istanbul", Version("0.1.0")),
35+
("istanbul", Version("0.1.0-beta.16")),
3636
]
3737

3838

@@ -108,7 +108,6 @@ def find_vyper_versions(
108108
install_latest: bool = False,
109109
silent: bool = True,
110110
) -> Dict:
111-
112111
"""
113112
Analyzes contract pragmas and determines which vyper version(s) to use.
114113
@@ -176,7 +175,6 @@ def find_best_vyper_version(
176175
install_latest: bool = False,
177176
silent: bool = True,
178177
) -> str:
179-
180178
"""
181179
Analyze contract pragma and find the best compatible version across multiple sources.
182180
@@ -218,7 +216,6 @@ def find_best_vyper_version(
218216
def compile_from_input_json(
219217
input_json: Dict, silent: bool = True, allow_paths: Optional[str] = None
220218
) -> Dict:
221-
222219
"""
223220
Compiles contracts from a standard input json.
224221

0 commit comments

Comments
 (0)