diff --git a/.github/scripts/build-linux.sh b/.github/scripts/build-linux.sh index 4c9bd18..1a75d33 100755 --- a/.github/scripts/build-linux.sh +++ b/.github/scripts/build-linux.sh @@ -20,6 +20,8 @@ elif [ $PYTHON_VERSION == "3.10" ]; then PYBIN="/opt/python/cp310-cp310/bin" elif [ $PYTHON_VERSION == "3.11" ]; then PYBIN="/opt/python/cp311-cp311/bin" +elif [ $PYTHON_VERSION == "3.12" ]; then + PYBIN="/opt/python/cp312-cp312/bin" else echo "Unsupported Python version $PYTHON_VERSION" exit 1 diff --git a/.github/scripts/build-windows.ps1 b/.github/scripts/build-windows.ps1 index c3ea1df..7a60a4b 100644 --- a/.github/scripts/build-windows.ps1 +++ b/.github/scripts/build-windows.ps1 @@ -119,7 +119,7 @@ Get-ChildItem env: # Install vcpkg and build dependencies if (!(Test-Path ./vcpkg)) { - exec { git clone https://github.com/microsoft/vcpkg -b 2023.04.15 --depth 1} + exec { git clone https://github.com/microsoft/vcpkg -b 2023.11.20 --depth 1} exec { ./vcpkg/bootstrap-vcpkg } } exec { ./vcpkg/vcpkg install zlib libjpeg-turbo[jpeg8] jasper lcms --triplet=x64-windows-static --recurse }