diff --git a/.github/workflows/build_arm_wheels.yml b/.github/workflows/build_arm_wheels.yml index 7bd8073dc5e..5c14b0aaa5f 100644 --- a/.github/workflows/build_arm_wheels.yml +++ b/.github/workflows/build_arm_wheels.yml @@ -25,7 +25,7 @@ jobs: os: [ ubuntu-20.04 ] env: RUNNER_OS: ${{ matrix.os }} - PYTHON_VERSIONS: "3.8 3.9 3.10 3.11" + PYTHON_VERSIONS: "3.8 3.9 3.10 3.11 3.12" steps: - name: Install clang++ for Ubuntu if: matrix.os == 'ubuntu-20.04' diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index cb7b2ee49f4..e46d03aba0a 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -19,7 +19,7 @@ jobs: fail-fast: false matrix: os: [ ubuntu-20.04 ] - python-version: [ "3.8", "3.9", "3.10", "3.11"] + python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ] # python-version: [ "3.7" ] env: RUNNER_OS: ${{ matrix.os }} @@ -149,7 +149,7 @@ jobs: matrix: os: [ macos-12 ] # python-version: [ "3.8", "3.9", "3.10", "3.11"] - python-version: [ "3.11" ] + python-version: [ "3.11", "3.12" ] env: RUNNER_OS: ${{ matrix.os }} PYTHON_VERSION: ${{ matrix.python-version }} diff --git a/chdb/build_mac_arm64.sh b/chdb/build_mac_arm64.sh index 9d00a100fd5..d48aa3765ef 100755 --- a/chdb/build_mac_arm64.sh +++ b/chdb/build_mac_arm64.sh @@ -51,7 +51,7 @@ if [ "${dest}" != "darwin-x86_64" ]; then fi -for PY_VER in 3.9.13 3.10.11 3.11.3; do +for PY_VER in 3.9.13 3.10.11 3.11.3 3.12.0; do if [ ! -f ${PROJ_DIR}/python_pkg/python-${PY_VER}-macos11.pkg ]; then wget https://www.python.org/ftp/python/${PY_VER}/python-${PY_VER}-macos11.pkg -O ${PROJ_DIR}/python_pkg/python-${PY_VER}-macos11.pkg fi