From 8ce84a6c0efdc3569d536b2dc2ff44cca4c41bfd Mon Sep 17 00:00:00 2001 From: Christoph Reiter Date: Thu, 7 Apr 2022 09:19:13 +0200 Subject: [PATCH] jsonschema: don't compile bytecode to avoid conflicts, will be fixed with python 3.10 --- mingw-w64-python-jsonschema/PKGBUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mingw-w64-python-jsonschema/PKGBUILD b/mingw-w64-python-jsonschema/PKGBUILD index c45b15c1e4..8f6e91cc1d 100644 --- a/mingw-w64-python-jsonschema/PKGBUILD +++ b/mingw-w64-python-jsonschema/PKGBUILD @@ -7,7 +7,7 @@ provides=("${MINGW_PACKAGE_PREFIX}-python3-${_realname}") conflicts=("${MINGW_PACKAGE_PREFIX}-python3-${_realname}") replaces=("${MINGW_PACKAGE_PREFIX}-python3-${_realname}") pkgver=4.4.0 -pkgrel=1 +pkgrel=2 pkgdesc="An implementation of JSON Schema validation for Python (mingw-w64)" arch=('any') mingw_arch=('mingw32' 'mingw64' 'ucrt64' 'clang64' 'clang32') @@ -53,7 +53,7 @@ package() { cd "${srcdir}/python-build-${MSYSTEM}" MSYS2_ARG_CONV_EXCL="--prefix=" \ - ${MINGW_PREFIX}/bin/python -m installer --prefix=${MINGW_PREFIX} \ + ${MINGW_PREFIX}/bin/python -m installer --no-compile-bytecode --prefix=${MINGW_PREFIX} \ --destdir="${pkgdir}" dist/*.whl install -Dm644 json/LICENSE "${pkgdir}${MINGW_PREFIX}/share/licenses/python-${_realname}/LICENSE"