mirror of
https://github.com/astral-sh/uv.git
synced 2025-07-07 13:25:00 +00:00
Don't install pydantic_core
on Python 3.13 (#2595)
See:2294712845

This commit is contained in:
parent
0f96386032
commit
9654da418e
1 changed files with 3 additions and 2 deletions
|
@ -174,6 +174,7 @@ if __name__ == "__main__":
|
|||
# This ensures that we can successfully install and recognize a package that may
|
||||
# be installed into `platlib`.
|
||||
#
|
||||
# `pydantic_core` doesn't distribute wheels for non-CPython interpreters.
|
||||
if sys.implementation.name == "cpython":
|
||||
# `pydantic_core` doesn't distribute wheels for non-CPython interpreters, nor
|
||||
# for Python 3.13 (at time of writing).
|
||||
if sys.version_info < (3, 13) and sys.implementation.name == "cpython":
|
||||
install_package(uv=uv, package="pydantic_core")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue