Skip to content

Commit

Permalink
Add Python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
auxten committed Nov 17, 2023
1 parent 1a12281 commit c69409d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_arm_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion chdb/build_mac_arm64.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c69409d

Please sign in to comment.