-
-
Notifications
You must be signed in to change notification settings - Fork 390
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add support for Python 3.13 #3850
Conversation
tests/examples/test_contrib/test_sqlalchemy/test_sqlalchemy_examples.py
Outdated
Show resolved
Hide resolved
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #3850 +/- ##
=======================================
Coverage 98.34% 98.34%
=======================================
Files 347 347
Lines 15727 15727
Branches 1738 1738
=======================================
Hits 15467 15467
Misses 124 124
Partials 136 136 ☔ View full report in Codecov by Sentry. |
For reference on the |
Quality Gate passedIssues Measures |
Documentation preview will be available shortly at https://litestar-org.github.io/litestar-docs-preview/3850 |
Description
This PR implements support for Python 3.13.
Note
msgspec
implementation, while all other versions prefer the pre-built litestar wheels.psycopg[binary]
. If you rely on this for development, you'll need to have the postgres development libraries installedpicologging
does not currently support Python 3.13. These tests are skipped automatically.pytest-asyncio
. Once the branch has been merged upstream, we can remove this test dependency.make install
will still install using Python 3.12. This is done to ensure we don't get additional bug reports due to build dependencies missing. If you want to use python 3.13, runuv sync --all-extras --dev --python 3.13
Closes