-
Notifications
You must be signed in to change notification settings - Fork 274
Fix bytecode for Python 3.12 #327
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
base: master
Are you sure you want to change the base?
Conversation
|
@felixonmars you can enable github ci in your source repository and see how is tests going |
It seems all failing tests are because of unsupported old Python versions. |
|
yes look like tests passed |
`LOAD_ATTR` has been changed in Python 3.12 and it seems reusing the `LOAD_GLOBAL` logic makes the simple tests passing. I am not sure if this is correct since I'm pretty new to the code, but maybe it's still helpful.
|
I've tested it in my project, and it works as expected. @PiotrDabkowski, is there anything we can do to release it? |
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
|
man man man let's just fork it |
|
Also works in my project and fixed #317. Can this be approved? |
|
Hello, can this issue be fixed? I'd appreciate it if we can get this PR merged! |
|
now need fix also for python 3.13 |
|
@PiotrDabkowski any chance at keeping this project alive? |
LOAD_ATTRhas been changed in Python 3.12 and it seems reusing theLOAD_GLOBALlogic makes the simple tests passing.I am not sure if this is correct since I'm pretty new to the code, but maybe it's still helpful.
Fixes #317