Skip to content
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

Handle mismatched cffi version during cryptography import #235

Merged

Conversation

rtibbles
Copy link
Member

@rtibbles rtibbles commented Feb 28, 2025

Summary

Reviewer guidance

This can be tested by checking out Kolibri code from learningequality/kolibri#12746, then using a Python 3.6 virtualenv, running make staticdeps-cext

Then making a Python 3.13 virtualenv and installing the regular requirements.txt into it.

Then pip install -e ../morango (or whatever path to morango folder) into the venv with the code from this PR.

Run kolibri shell and see it start!

Issues addressed

Fixes #234

@rtibbles rtibbles added this to the Morango v0.8.x milestone Feb 28, 2025

except BaseException as e:
# Still catch PanicExceptions just in case.
if "Python API call failed" in str(e):
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this text specific to this exact error in this particular case? Did you run into some weird errors despite the above check not raising the ImportError that inspired adding this or are is this preemptive?

Not a blocker just got me thinking

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It will happen if any attempt to call a CPython API fails, I think - I could technically have not included this because of the pre-emptive checking I did above, but, if nothing else, this seemed useful to document the error we are trying to prevent.

@bjester bjester self-assigned this Mar 5, 2025
@rtibbles rtibbles force-pushed the python3.13_in_kolibri branch from ca793f2 to 1bd2b94 Compare March 6, 2025 22:15
@bjester bjester merged commit 8271884 into learningequality:release-v0.8.x Mar 10, 2025
22 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Handle incompatible cffi versions when trying to load C extensions in cryptography
3 participants