feat: drop Python 3.9 support (EOL)#1329
Merged
Merged
Conversation
- Bump requires-python to >=3.10 in all packages - Remove Python 3.9 CI matrix entries from all workflows - docs.yaml and codeql-analysis.yml updated to Python 3.10 - Pin rpaframework-windows and rpaframework-core to local path in packages/main [tool.uv.sources] so the lock resolves local workspace sources instead of stale PyPI releases - Regenerate packages/main/uv.lock: pyobjc 9.2 → 12.1 (universal2 wheels, no source compilation on macOS), pynput-robocorp-fork removed, 36 other packages updated to latest compatible versions pyobjc 12.0+ dropped Python 3.9; this was the root cause of the macOS build failures when running tests locally on macOS 16. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Wheel artifactBuilt from commit Artifact name: |
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
rpaframework 31.2.0 requires Python >=3.10, so uv cannot resolve the dependency split for the 3.9 range in the root workspace metapackage. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
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
requires-pythonto>=3.10in all 11 packagespy39matrix from all CI workflows (11 yaml files)rpaframework-windowsandrpaframework-coreto local workspace paths inpackages/main [tool.uv.sources]so the lock resolves from local sources instead of stale PyPI releasespackages/main/uv.lock:pyobjc-core9.2 → 12.1 (universal2 wheels — no source compilation on macOS)pynput-robocorp-forkremovedWhy
Python 3.9 reached EOL in October 2025.
pyobjc-core12.0+ dropped Python 3.9 support, which was the root cause of macOS build failures when running tests locally on macOS 16 (Darwin 25) — the resolver was stuck on pyobjc 9.2 (which requires compilation from source and fails on newer Xcode/clang).Test plan
uv run pytest tests/python/test_database.pyruns cleanly on macOS (no pyobjc build error)🤖 Generated with Claude Code