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
49 lines
1.7 KiB
CMake
49 lines
1.7 KiB
CMake
# SPDX-FileCopyrightText: 2017-2023 Blender Authors
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
if(WIN32 AND BUILD_MODE STREQUAL Debug)
|
|
set(SITE_PACKAGES_EXTRA --global-option build --global-option --debug)
|
|
# zstandard is determined to build and link release mode libs in a debug
|
|
# configuration, the only way to make it happy is to bend to its will
|
|
# and give it a library to link with.
|
|
set(
|
|
PIP_CONFIGURE_COMMAND ${CMAKE_COMMAND} -E copy
|
|
${LIBDIR}/python/libs/python${PYTHON_SHORT_VERSION_NO_DOTS}_d.lib
|
|
${LIBDIR}/python/libs/python${PYTHON_SHORT_VERSION_NO_DOTS}.lib
|
|
)
|
|
else()
|
|
set(PIP_CONFIGURE_COMMAND echo ".")
|
|
endif()
|
|
|
|
ExternalProject_Add(external_python_site_packages
|
|
DOWNLOAD_COMMAND ""
|
|
CONFIGURE_COMMAND ${PIP_CONFIGURE_COMMAND}
|
|
BUILD_COMMAND ""
|
|
PREFIX ${BUILD_DIR}/site_packages
|
|
|
|
# setuptools is downgraded to 63.2.0 (same as python 3.10.8) since numpy 1.23.x seemingly has
|
|
# issues building on windows with the newer versions that ships with python 3.10.9+.
|
|
# We do not build numpy, cython, or zstandard here as the pip builds are not reproducible.
|
|
INSTALL_COMMAND ${PYTHON_BINARY} -m pip install --no-cache-dir ${SITE_PACKAGES_EXTRA}
|
|
setuptools==63.2.0
|
|
idna==${IDNA_VERSION}
|
|
charset-normalizer==${CHARSET_NORMALIZER_VERSION}
|
|
urllib3==${URLLIB3_VERSION}
|
|
certifi==${CERTIFI_VERSION}
|
|
requests==${REQUESTS_VERSION}
|
|
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:
|
|
)
|
|
|
|
add_dependencies(
|
|
external_python_site_packages
|
|
external_python
|
|
)
|