We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ape and plugin versions: vyper 0.2.0 ape 0.2.7 vyper 0.3.3+commit.48e326f
ape
Python Version: 3.9.5
OS: osx
Please include information like:
I have a contract that looks like this:
a: uint80
When I run ape compile I get:
ape compile
INFO: Compiling 'MyContract.vy'. ERROR: (VyperCompileError) vyper.exceptions.UnknownType: No builtin or user-defined type named 'uint80' contract "/DIR/vyper-wcbpnrwq.vy", line 26:3 25 # return price ---> 26 a: uint80 -----------^ 27 [19956] Failed to execute script vyper_compile
How can I tell it to use 0.3.3 of vyper?
0.3.3
The text was updated successfully, but these errors were encountered:
Running vyper and the contract name compiles fine
vyper
Sorry, something went wrong.
Got it. Went through the code and found it grabs it from the comments:
# @version ^0.3.3
It looks like we should create docs for each plugin
We should also support config driven versioning
No branches or pull requests
Environment information
ape
and plugin versions:vyper 0.2.0
ape 0.2.7
vyper 0.3.3+commit.48e326f
Python Version: 3.9.5
OS: osx
What went wrong?
Please include information like:
I have a contract that looks like this:
When I run
ape compile
I get:How can I tell it to use
0.3.3
of vyper?The text was updated successfully, but these errors were encountered: