Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
with:
python-version: "3.9"
python-version: "3.14"
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P2 Badge Keep CI aligned with declared Python support

setup.py still declares python_requires=">=3.9", but this workflow now tests only Python 3.14, so CI no longer verifies the versions the package claims to support; a change using 3.10+ syntax or behavior could pass CI and ship a release that breaks for 3.9 users. Either include 3.9 in the CI matrix or update the declared supported floor in setup.py in the same PR.

Useful? React with πŸ‘Β / πŸ‘Ž.

cache: pip

- name: Install dependencies
Expand Down
Loading