summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-pydantic-core
Commit message (Collapse)AuthorAgeFilesLines
* python3-pydantic-core: Upgrade to 2.34.1Khem Raj2025-04-192-0/+599
| | | | | | Fix RISCV-32 builds while here Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pydantic-core: update recipe to use the ptest-python-pytest classDerek Straka2025-01-171-3/+0
| | | | | Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pydantic-core: Upgrade to 2.25.0Khem Raj2024-10-281-58/+0
| | | | | | Needed for py 3.13 support in pydantic 2.9 recipe Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pydantic-core: backport patchTim Orling2024-08-091-0/+58
| | | | | | | | | | | | | | We've seen TMPDIR [build-paths] contamination in the built pydantic_core/_pydantic_core.cpython-*-*-linux-gnu.so See discussion upstream in: https://github.com/pydantic/pydantic-core/issues/1365 Backport fix from: https://github.com/pydantic/pydantic-core/commit/e07c41b3bad75948201a2201387225694c2fb501 Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pydantic-core: upgrade 2.18.4 -> 2.21.0Tim Orling2024-08-091-29/+0
| | | | | | | | | | | | | | | | | | | * Refresh -crates.inc * Drop rust 1.76 to 1.75 patch, upstream reverted [1] * Add ptest RDEPENDS [2]: - python3-dateutil - python3-tzdata - python3-zoneinfo * Add python3-misc to ptest RDEPENDS as we need Lib/timeit.py Full commit log: https://github.com/pydantic/pydantic-core/compare/v2.18.4...v2.21.0 [1] https://github.com/pydantic/pydantic-core/commit/ebef5bdf92707f5e1739931150893ae6c7ccc531 [2] https://github.com/pydantic/pydantic-core/blob/v2.21.0/tests/requirements.txt Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pydantic-core: fix incompatible versionFrank de Brabander2024-07-263-155/+29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The recipe for pydantic currently is at version 2.7.2. This project specifies in its pyproject.toml that it depends on pydantic-core version 2.18.4. Because an older 2.16.3 version of pydantic-core was used now, a simple bit of code will break. from enum import Enum from pydantic import BaseModel class Color(str, Enum): RED = "RED" BLUE = "BLUE" class Car(BaseModel): color: Color print(Car(color=Color.RED)) This will upgrade the python3-pydantic-core recipe to make it compatible with python3-pydantic, so that the above snippet of code will no longer fail. Two patches are removed, these backports are now included in the upstream code. A new patch is added to set the required rust compiler from 1.76 to 1.75. Version 1.76 is not actually needed. File python3-pydantic-core-crates.inc is regenerated by running 'bitbake -c update_crates python3-pydantic-core'. The recipes RDEPENDS now includes python3-compression. The pydantic schema validator imports 'importlib.metadata' which wants to import 'zipfile'. The buildpaths QA check is skipped. This should be fixed at some point, but it was already failing before this change. Signed-off-by: Frank de Brabander <debrabander@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pydantic-core: Fix build with python 3.12.4Khem Raj2024-06-121-0/+29
| | | | | | | | This needs to be upgraded to 2.19+ but until then backport a fix to keep it building. Signed-off-by: Khem Raj <raj.khem@gmail.com> Cc: Tim Orling <ticotimo@gmail.com>
* python3-pydantic-core: Fix build for arches without 64bit atomicsKhem Raj2024-02-271-0/+126
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pydantic-core: enable ptestTim Orling2023-12-211-0/+3
* Add to ptest-packagelists-meta-python.inc "FAST" under 30 seconds Signed-off-by: Tim Orling <ticotimo@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>