certifi : 2020.12.5 → 2021.10.8 chardet : 4.0.0 → charset-normalizer 2.0.6 cython : 0.29.21 → 0.29.24 idna : 2.10 → 3.2 numpy : 1.19.5 → 1.21.2 (which makes it possible to remove our patch) requests: 2.25.1 → 2.26.0 urllib3 : 1.26.3 → 1.26.7 Nowadays `requests` no longer depends on `chardet` but on `charset-normalizer`. That project describes itself as: > A library that helps you read text from an unknown charset encoding. > Motivated by chardet, I'm trying to resolve the issue by taking a new > approach. All IANA character set names for which the Python core library > provides codecs are supported. Reviewed By: LazyDodo, mont29, brecht Differential Revision: https://developer.blender.org/D12777
51 lines
1.6 KiB
CMake
51 lines
1.6 KiB
CMake
# ***** BEGIN GPL LICENSE BLOCK *****
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License
|
|
# as published by the Free Software Foundation; either version 2
|
|
# of the License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software Foundation,
|
|
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
#
|
|
# ***** END GPL LICENSE BLOCK *****
|
|
|
|
if(MSVC)
|
|
message("BIN >${PYTHON_BINARY}<")
|
|
if(BUILD_MODE STREQUAL Debug)
|
|
set(NUMPY_DIR_POSTFIX -pydebug)
|
|
set(NUMPY_ARCHIVE_POSTFIX d)
|
|
set(NUMPY_BUILD_OPTION --debug)
|
|
else()
|
|
set(NUMPY_DIR_POSTFIX)
|
|
set(NUMPY_ARCHIVE_POSTFIX)
|
|
set(NUMPY_BUILD_OPTION)
|
|
endif()
|
|
endif()
|
|
|
|
set(NUMPY_POSTFIX)
|
|
|
|
ExternalProject_Add(external_numpy
|
|
URL file://${PACKAGE_DIR}/${NUMPY_FILE}
|
|
DOWNLOAD_DIR ${DOWNLOAD_DIR}
|
|
URL_HASH ${NUMPY_HASH_TYPE}=${NUMPY_HASH}
|
|
PREFIX ${BUILD_DIR}/numpy
|
|
PATCH_COMMAND ${NUMPY_PATCH}
|
|
CONFIGURE_COMMAND ""
|
|
LOG_BUILD 1
|
|
BUILD_COMMAND ${PYTHON_BINARY} ${BUILD_DIR}/numpy/src/external_numpy/setup.py build ${NUMPY_BUILD_OPTION} install --old-and-unmanageable
|
|
INSTALL_COMMAND ""
|
|
)
|
|
|
|
add_dependencies(
|
|
external_numpy
|
|
external_python
|
|
external_python_site_packages
|
|
)
|