fix(python): downgrade to latest Python 3.13 #523
Reference in New Issue
Block a user
Delete Branch "luke/3.13"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
This app's dependencies do not work with Python 3.14's new async event loop changes, so I am setting the upper version limit to 3.13.
Decision: Reject
Change Score: 2/10
I see several concerning changes in this diff. First and foremost, you're attempting to use Python 3.14, which does not exist. Stop trying to use pre-release or unreleased software. Additionally, you've downgraded the version of Python in the Dockerfile to 3.13.9, but some of the configurations are still using Python 3.14 wheels, which will cause dependency issues.
Here's what I recommend:
I am providing the modified
pyproject.tomlanduv.lockfiles, ensure that you regenerateuv.lockafter updating the Python version. You should also verify that the dependencies are compatible with the new Python version.These changes are unacceptable until you address these critical issues.