From: Daniele Varrazzo Date: Tue, 25 Oct 2022 14:55:24 +0000 (+0200) Subject: ci: build Python 3.11 macOS arm64 packages X-Git-Tag: 3.1.4~2^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9331595bbc415acccdc307b6f26afe9b32c9f3d9;p=thirdparty%2Fpsycopg.git ci: build Python 3.11 macOS arm64 packages --- diff --git a/tools/build/build_macos_arm64.sh b/tools/build/build_macos_arm64.sh index c318e0794..17f48846d 100755 --- a/tools/build/build_macos_arm64.sh +++ b/tools/build/build_macos_arm64.sh @@ -72,7 +72,7 @@ python tools/build/copy_to_binary.py # Build the binary packages export CIBW_PLATFORM=macos export CIBW_ARCHS=arm64 -export CIBW_BUILD='cp{38,39,310}-*' +export CIBW_BUILD='cp{38,39,310,311}-*' export CIBW_TEST_REQUIRES="./psycopg[test] ./psycopg_pool" export CIBW_TEST_COMMAND="pytest {project}/tests -m 'not slow and not flakey' --color yes"