Skip to content

Commit c69409d

Browse files
committed
Add Python 3.12
1 parent 1a12281 commit c69409d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/build_arm_wheels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
os: [ ubuntu-20.04 ]
2626
env:
2727
RUNNER_OS: ${{ matrix.os }}
28-
PYTHON_VERSIONS: "3.8 3.9 3.10 3.11"
28+
PYTHON_VERSIONS: "3.8 3.9 3.10 3.11 3.12"
2929
steps:
3030
- name: Install clang++ for Ubuntu
3131
if: matrix.os == 'ubuntu-20.04'

.github/workflows/build_wheels.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
fail-fast: false
2020
matrix:
2121
os: [ ubuntu-20.04 ]
22-
python-version: [ "3.8", "3.9", "3.10", "3.11"]
22+
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ]
2323
# python-version: [ "3.7" ]
2424
env:
2525
RUNNER_OS: ${{ matrix.os }}
@@ -149,7 +149,7 @@ jobs:
149149
matrix:
150150
os: [ macos-12 ]
151151
# python-version: [ "3.8", "3.9", "3.10", "3.11"]
152-
python-version: [ "3.11" ]
152+
python-version: [ "3.11", "3.12" ]
153153
env:
154154
RUNNER_OS: ${{ matrix.os }}
155155
PYTHON_VERSION: ${{ matrix.python-version }}

chdb/build_mac_arm64.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ if [ "${dest}" != "darwin-x86_64" ]; then
5151
fi
5252

5353

54-
for PY_VER in 3.9.13 3.10.11 3.11.3; do
54+
for PY_VER in 3.9.13 3.10.11 3.11.3 3.12.0; do
5555
if [ ! -f ${PROJ_DIR}/python_pkg/python-${PY_VER}-macos11.pkg ]; then
5656
wget https://www.python.org/ftp/python/${PY_VER}/python-${PY_VER}-macos11.pkg -O ${PROJ_DIR}/python_pkg/python-${PY_VER}-macos11.pkg
5757
fi

0 commit comments

Comments
 (0)