chore: drop Python 3.10 and add 3.14 to the Python Support matrix - #1292
Merged
Conversation
l2ysho
approved these changes
Jul 21, 2026
l2ysho
left a comment
Contributor
There was a problem hiding this comment.
👍 legit, some thoughts
- should we drop 3.10 also in actor templates?
- MINIMUM_SUPPORTED_PYTHON_VERSION already has some issue/PR? or can we fix it here right away?
- nit (but as you are already in the file): can you align version of python in title vs real one? (here or with MINIMUM_SUPPORTED_PYTHON_VERSION issue/PR)
- name: Setup Python 3.12 (Windows)
if: ${{ matrix.os == 'windows-2025' }}
uses: actions/setup-python@v6
with:
python-version: 3.14
Contributor
Author
Already happened
Updated.
Removed the version from the title; it shouldn't be there. |
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.
What & why
The
apifyPython SDK4.0.0(pinned by thepython-starttemplate asapify >= 4.0.0, < 5.0.0) requires Python>= 3.11. On Python 3.10 the template'spip installcan't resolveapify, so the[python]run tests fail to produce output - see thePython Support (…, 3.10)failures on recent PRs.Python 3.10 is therefore no longer supported by the SDK the CLI targets.
Changes
3.10from thePython Supporttest matrix.3.14(already used elsewhere incheck.yaml) so the matrix covers the newest Python.Note
The CLI still declares
MINIMUM_SUPPORTED_PYTHON_VERSION = '3.9.0'and prints "Python 3.9 or higher". Aligning that is user-facing and left for a separate change.✍️ Drafted by Claude Code