-
Notifications
You must be signed in to change notification settings - Fork 179
New issue
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
ValueError when running hello world example on Python 3.12 #3517
Comments
@LiliDeng can you help check this, and check whether 3.12 tests enabled? |
sure |
@squirrelsc I have fixed it here #3518 |
Thank you, Lili! Do you know if why isn't caught on PR checks? |
fixed by #3518 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
After installing Lisa according to the instructions, I run the hello world example and got the following error:
GuestVmType
is unhashable, so Python is complaining because it detects an unhashable default parameter inNodeContext
(see dataclasses doc). This seems to come from a change since Python version 3.11. A solution would be to remove the@dataclass
decorator fromGuestVmType
definition, or usedefault_factory
as suggested in the error message.The text was updated successfully, but these errors were encountered: