From 5c9a9f55d5b235a719c532b614d98d05d97dda03 Mon Sep 17 00:00:00 2001 From: BobTheBuidler <70677534+BobTheBuidler@users.noreply.github.com> Date: Thu, 11 Jul 2024 15:36:15 -0400 Subject: [PATCH] Update vyper.py --- brownie/project/compiler/vyper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/brownie/project/compiler/vyper.py b/brownie/project/compiler/vyper.py index ddc34ffb9..346ad162a 100644 --- a/brownie/project/compiler/vyper.py +++ b/brownie/project/compiler/vyper.py @@ -98,7 +98,7 @@ def _get_vyper_version_list() -> Tuple[List, List]: print(v) print(type(v)) print(v.__dict__) - return AVAILABLE_VYPER_VERSIONS, [v if isinstance(v, Version) else Version(v) for v in installed_versions] + return AVAILABLE_VYPER_VERSIONS, [v if isinstance(v, Version) else Version(str(v)) for v in installed_versions] def install_vyper(*versions: str) -> None: