Deps: fastjsonschema 2.21.1 + cattrs 25.1.1

As requested by #141945 , This includes:

Attrs 25.3.0
Cattrs 25.1.1
Fastjsonschema 2.21.1
Typing_extensions 4.14.1

Pull Request: https://projects.blender.org/blender/blender/pulls/141950
This commit is contained in:
Ray Molenkamp
2025-07-25 15:11:40 +02:00
committed by Ray molenkamp
parent ae5152866e
commit 25ad7ccf27
2 changed files with 9 additions and 0 deletions

View File

@@ -35,6 +35,10 @@ ExternalProject_Add(external_python_site_packages
autopep8==${AUTOPEP8_VERSION}
pycodestyle==${PYCODESTYLE_VERSION}
meson==${MESON_VERSION}
attrs==${ATTRS_VERSION}
cattrs==${CATTRS_VERSION}
fastjsonschema==${FASTJSONSCHEMA_VERSION}
typing-extensions==${TYPING_EXTENSIONS_VERSION}
--no-binary :all:
)

View File

@@ -398,6 +398,11 @@ set(OPENVDB_COPYRIGHT "Copyright Contributors to the OpenVDB Project")
# ------------------------------------------------------------------------------
# Python Modules
# cattrs + fastjson schema + deps as requested by #141945
set(ATTRS_VERSION 25.3.0)
set(CATTRS_VERSION 25.1.1)
set(FASTJSONSCHEMA_VERSION 2.21.1)
set(TYPING_EXTENSIONS_VERSION 4.14.1)
# Needed by: `requests` module (so the version doesn't change on rebuild).
set(IDNA_VERSION 3.10)