diff --git a/.github/workflows/publish-python.yml b/.github/workflows/publish-python.yml index 448529062c..d00b3f141b 100644 --- a/.github/workflows/publish-python.yml +++ b/.github/workflows/publish-python.yml @@ -35,14 +35,14 @@ jobs: python-version: '3.12' - name: Install cibuildwheel - run: python3 -m pip install cibuildwheel==2.16.5 + run: python3 -m pip install cibuildwheel==2.22.0 - name: Build wheels run: python3 -m cibuildwheel --output-dir wheelhouse wrappers/python env: # TODO: setup a "BEFORE" cmake build and link the python module to the prebuild libZXing.a # see https://github.com/YannickJadoul/Parselmouth/blob/523c117aa780184345121f6ff8315670bc7d4d94/.github/workflows/wheels.yml#L120 - CIBW_BUILD: cp39-* cp310-* cp311-* cp312-* + CIBW_BUILD: cp39-* cp310-* cp311-* cp312-* cp313-* CIBW_SKIP: "*musllinux*" # the default maylinux2014 image does not contain a c++20 compiler, see https://github.com/pypa/manylinux CIBW_MANYLINUX_X86_64_IMAGE: quay.io/pypa/manylinux_2_28_x86_64 @@ -70,7 +70,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v5 with: - python-version: '3.12' + python-version: '3.13' - name: Install dependencies working-directory: wrappers/python