Skip to content
Merged
Show file tree
Hide file tree
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 @@ -27,7 +27,7 @@ jobs:
- uses: actions/checkout@v5.0.0
- uses: actions/setup-python@v6
with:
python-version: 3.12
python-version: 3.14
Copy link

Choose a reason for hiding this comment

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

Bug: Unreleased Python Version in CI/CD

The CI workflow and tox configurations specify Python 3.14 for linting, but this version is not yet released. This causes the GitHub Actions setup-python action to fail and tox to be unable to create the linters environment, leading to CI failures.

Additional Locations (2)

Fix in Cursor Fix in Web


- run: |
pip install tox
Expand Down
2 changes: 1 addition & 1 deletion scripts/populate_tox/tox.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ basepython =
# Python version is pinned here for consistency across environments.
# Tools like ruff and mypy have options that pin the target Python
# version (configured in pyproject.toml), ensuring consistent behavior.
linters: python3.12
linters: python3.14

commands =
{py3.7,py3.8}-boto3: pip install urllib3<2.0.0
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -812,7 +812,7 @@ basepython =
# Python version is pinned here for consistency across environments.
# Tools like ruff and mypy have options that pin the target Python
# version (configured in pyproject.toml), ensuring consistent behavior.
linters: python3.12
linters: python3.14

commands =
{py3.7,py3.8}-boto3: pip install urllib3<2.0.0
Expand Down