Added Python 3.13 and 3.14 support for _memimporter.#235
Open
AraHaan wants to merge 12 commits into
Open
Conversation
This adds support for python3.13+ for the C code so far. The zipextimporter may or may not work as is for these versions of Python though and could be replaced with these 2 files: https://github.com/SeaHOH/memimport/blob/main/zipextimporter.py and https://github.com/SeaHOH/memimport/blob/main/memimport.py.
Since the python core dynamic loading code cannot be made to work for Python 3.12+. The related code for loading the python core from zip file/resource section has been ifdef'd out. As such single file deployments for Python 3.12+ is not possible at all.
Signed-off-by: AraHaan <seandhunt_7@yahoo.com>
Signed-off-by: AraHaan <seandhunt_7@yahoo.com>
This was referenced Dec 30, 2025
Signed-off-by: AraHaan <seandhunt_7@yahoo.com>
Signed-off-by: AraHaan <seandhunt_7@yahoo.com>
Signed-off-by: AraHaan <seandhunt_7@yahoo.com>
Signed-off-by: AraHaan <seandhunt_7@yahoo.com>
… from compile causing _memimporter to not find the symbol. Signed-off-by: AraHaan <seandhunt_7@yahoo.com>
Member
|
@AraHaan I pushed on |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
More changes might be needed to enable Python 3.14 support in the python code itself though.