Skip to content

Commit 5fb59cd

Browse files
committed
Merge branch 'macos-arm64-py312'
2 parents e0d1daf + 941ac9a commit 5fb59cd

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

scripts/build/appveyor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -657,7 +657,7 @@ def py_ver(self):
657657
For large values of 2, occasionally.
658658
"""
659659
rv = os.environ['PY_VER']
660-
assert rv in ('37', '38', '39', '310', '311', "312"), rv
660+
assert rv in ('37', '38', '39', '310', '311', '312'), rv
661661
return rv
662662

663663
@property

scripts/build/build_macos_arm64.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
set -euo pipefail
1111
# set -x
1212

13-
python_versions="3.8.10 3.9.13 3.10.5 3.11.0 3.12.0"
13+
python_versions="3.8.18 3.9.18 3.10.13 3.11.6 3.12.0"
1414
pg_version=16
1515

1616
function log {
@@ -89,7 +89,7 @@ log "building wheels"
8989
# Build the binary packages
9090
export CIBW_PLATFORM=macos
9191
export CIBW_ARCHS=arm64
92-
export CIBW_BUILD='cp{38,39,310,311}-*'
92+
export CIBW_BUILD='cp{38,39,310,311,312}-*'
9393
export CIBW_TEST_COMMAND='python -c "import tests; tests.unittest.main(defaultTest=\"tests.test_suite\")"'
9494

9595
export PSYCOPG2_TESTDB=postgres

0 commit comments

Comments
 (0)