Skip to content

chore(deps): update dependency python to 3.14 - #8

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/python-3.x
Open

chore(deps): update dependency python to 3.14#8
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/python-3.x

Conversation

@renovate

@renovate renovate Bot commented Mar 29, 2025

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Type Update Change
python uses-with minor 3.113.14

Release Notes

actions/python-versions (python)

v3.14.7: 3.14.7

Compare Source

Python 3.14.7

v3.14.6: 3.14.6

Compare Source

Python 3.14.6

v3.14.5: 3.14.5

Compare Source

Python 3.14.5

v3.14.4: 3.14.4

Compare Source

Python 3.14.4

v3.14.3: 3.14.3

Compare Source

Python 3.14.3

v3.14.2: 3.14.2

Compare Source

Python 3.14.2

v3.14.1: 3.14.1

Compare Source

Python 3.14.1

v3.14.0: 3.14.0

Compare Source

Python 3.14.0

v3.13.15: 3.13.15

Compare Source

Python 3.13.15

v3.13.14: 3.13.14

Compare Source

Python 3.13.14

v3.13.13: 3.13.13

Compare Source

Python 3.13.13

v3.13.12: 3.13.12

Compare Source

Python 3.13.12

v3.13.11: 3.13.11

Compare Source

Python 3.13.11

v3.13.10: 3.13.10

Compare Source

Python 3.13.10

v3.13.9: 3.13.9

Compare Source

Python 3.13.9

v3.13.8: 3.13.8

Compare Source

Python 3.13.8

v3.13.7: 3.13.7

Compare Source

Python 3.13.7

v3.13.6: 3.13.6

Compare Source

Python 3.13.6

v3.13.5: 3.13.5

Compare Source

Python 3.13.5

v3.13.4: 3.13.4

Compare Source

Python 3.13.4

v3.13.3: 3.13.3

Compare Source

Python 3.13.3

v3.13.2: 3.13.2

Compare Source

Python 3.13.2

v3.13.1: 3.13.1

Compare Source

Python 3.13.1

v3.13.0: 3.13.0

Compare Source

Python 3.13.0

v3.12.13: 3.12.13

Compare Source

Python 3.12.13

v3.12.12: 3.12.12

Compare Source

Python 3.12.12

v3.12.11: 3.12.11

Compare Source

Python 3.12.11

v3.12.10: 3.12.10

Compare Source

Python 3.12.10

v3.12.9: 3.12.9

Compare Source

Python 3.12.9

v3.12.8: 3.12.8

Compare Source

Python 3.12.8

v3.12.7: 3.12.7

Compare Source

Python 3.12.7

v3.12.6: 3.12.6

Compare Source

Python 3.12.6

v3.12.5: 3.12.5

Compare Source

Python 3.12.5

v3.12.4: 3.12.4

Compare Source

Python 3.12.4

v3.12.3: 3.12.3

Compare Source

Python 3.12.3

v3.12.2: 3.12.2

Compare Source

Python 3.12.2

v3.12.1: 3.12.1

Compare Source

Python 3.12.1

v3.12.0: 3.12.0

Compare Source

Python 3.12.0


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate
renovate Bot force-pushed the renovate/python-3.x branch from 367adbf to 28bcca4 Compare June 22, 2025 19:40
@renovate
renovate Bot force-pushed the renovate/python-3.x branch from 28bcca4 to b021f5d Compare July 28, 2025 12:15
@renovate
renovate Bot force-pushed the renovate/python-3.x branch from b021f5d to b57013d Compare September 25, 2025 16:11
@renovate renovate Bot changed the title chore(deps): update dependency python to 3.13 chore(deps): update dependency python to 3.14 Oct 7, 2025
@renovate
renovate Bot force-pushed the renovate/python-3.x branch from b57013d to 5d07656 Compare October 7, 2025 16:43
@claude

claude Bot commented Dec 3, 2025

Copy link
Copy Markdown

PR Review: Update Python to 3.14

Thank you for this automated dependency update from Renovate. I've reviewed the changes and have several important concerns and recommendations.

Summary of Changes

This PR updates the Python version used in the lint and docs CI jobs from 3.11 to 3.14.


🚨 Critical Issues

1. Python 3.14 Maturity and Availability

Python 3.14 is a very recent release (first stable version appears to be 3.14.0 from the release notes). While it's technically available, there are important considerations:

  • Ecosystem compatibility: Many Python packages may not yet have tested/verified compatibility with 3.14
  • GitHub Actions availability: The actions/setup-python@v5 action may have limited or newly-added support for 3.14
  • Production readiness: Early adoption of a brand new Python version in CI can lead to unexpected issues

2. Inconsistency with Test Matrix

The test matrix (lines 12-15 in .github/workflows/ci.yml) tests against Python versions 3.9, 3.10, 3.11, 3.12, 3.13.

But the lint and docs jobs now use Python 3.14. This creates an inconsistency where:

  • Tests don't validate the code against Python 3.14
  • Linting and docs use a version not covered by tests
  • If Python 3.14 introduces breaking changes, they won't be caught by tests

3. Missing pyproject.toml Updates

The pyproject.toml file needs updates to reflect Python 3.14 support. The classifiers only list up to Python 3.11. Missing classifiers for 3.12, 3.13, and 3.14 should be added if these versions are supported.


✅ Recommendations

Option 1: Conservative Approach (Recommended)

Update to Python 3.13 instead of 3.14 for better ecosystem support and stability.

Option 2: Full Python 3.14 Support

If adopting Python 3.14:

  1. Add 3.14 to the test matrix to ensure comprehensive testing
  2. Update pyproject.toml classifiers to include 3.12, 3.13, and 3.14
  3. Verify all dependencies work with Python 3.14
  4. Run the full CI pipeline to ensure no breaking changes

📝 Suggested Action Plan

I recommend not merging this PR as-is. Instead, either:

  1. Modify this PR to use Python 3.13 instead of 3.14, OR
  2. Add Python 3.14 to the test matrix first, monitor results, then update lint/docs jobs

Best Practice: For production libraries, it's often wise to wait 1-3 months after a new Python version is released before adopting it in CI.


🤖 This review was generated by Claude Code

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants