Add Python 3.14 support by forcing parallelism to use fork#434
Open
Add Python 3.14 support by forcing parallelism to use fork#434
Conversation
Co-authored-by: forsyth2 <30700190+forsyth2@users.noreply.github.com>
Co-authored-by: forsyth2 <30700190+forsyth2@users.noreply.github.com>
Collaborator
Author
|
Created this PR from #429 via the following steps Steps to cherry-pick relevant commitscd ~/ez/zstash
# On branch copilot/force-fork-parallelism
# nothing to commit, working tree clean
git log --oneline | head -n 8
# 1496e42 Trigger GitHub Actions
# cb558ab Fix pre-commit checks
# c70679a Fix tar.extract filter for Python 3.12+ to allow absolute symlinks
# 0baaa86 Force fork start method for multiprocessing (Python 3.14+)
# 877660d Initial plan
# 9bdbda4 Address review comments
# 282def2 Add Python 3.14 support
# c14b8ee Add AGENTS.md (#423)
git fetch upstream main
git checkout -b force-fork-parallel upstream/main
git fetch upstream copilot/force-fork-parallelism
git cherry-pick 282def2 # Add Python 3.14 support
git cherry-pick 9bdbda4 # Address review comments
# Skip 877660d Initial plan
git cherry-pick 0baaa86 # Force fork start method for multiprocessing (Python 3.14+)
git cherry-pick c70679a # Fix tar.extract filter for Python 3.12+ to allow absolute symlinks
git cherry-pick cb558ab # Fix pre-commit checks
# Skip 1496e42 Trigger GitHub Actions
git log --oneline | head -n 6
# f5a8e4c Fix pre-commit checks
# 2703bf6 Fix tar.extract filter for Python 3.12+ to allow absolute symlinks
# d37c78f Force fork start method for multiprocessing (Python 3.14+)
# 60b435d Address review comments
# 7d048f2 Add Python 3.14 support
# c14b8ee Add AGENTS.md (#423)
git push upstream force-fork-parallel |
Collaborator
Author
|
I've confirmed the CI/CD tests pass now. Importantly, that means they're passing for Python 3.11, 3.12, 3.13, and 3.14. (I couldn't get them to run on #429 for some reason. In any case, that PR merged into a different branch, so I've opened this PR to merge into |
4 tasks
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.
Summary
Objectives:
Issue resolution:
forkstart method and fixtar.extractfilter #429Select one: This pull request is...
Small Change