diff --git a/.github/workflows/wheel-upload.yml b/.github/workflows/wheel-upload.yml index 41929d1f..87285854 100644 --- a/.github/workflows/wheel-upload.yml +++ b/.github/workflows/wheel-upload.yml @@ -46,7 +46,7 @@ jobs: restore-keys: ${{ runner.os }}-${{ env.PYTHON_VERSION }}-${{ env.HOST }}-ccache # Pip install dependencies - name: Install Python dependencies - run: python${{ env.PYTHON_VERSION }} -m pip install -U pip build pybind11-stubgen py-build-cmake~=0.2.0a5 + run: python${{ env.PYTHON_VERSION }} -m pip install -U pip build pybind11-stubgen~=0.16.2 py-build-cmake~=0.2.0a7 # Build - name: Native build run: | @@ -128,7 +128,7 @@ jobs: restore-keys: ${{ runner.os }}-${{ matrix.pypy }}${{ matrix.python-version }}-${{ matrix.host }}-ccache # Pip install dependencies - name: Install Python dependencies - run: python${{ matrix.python-version }} -m pip install -U pip build pybind11-stubgen py-build-cmake~=0.2.0a5 + run: python${{ matrix.python-version }} -m pip install -U pip build pybind11-stubgen~=0.16.2 py-build-cmake~=0.2.0a7 # Download stubs - name: Download stubs uses: actions/download-artifact@v3 diff --git a/QPALM/interfaces/python/qpalm-debug/pyproject.toml b/QPALM/interfaces/python/qpalm-debug/pyproject.toml index 76ce3a37..ee124713 100644 --- a/QPALM/interfaces/python/qpalm-debug/pyproject.toml +++ b/QPALM/interfaces/python/qpalm-debug/pyproject.toml @@ -17,9 +17,9 @@ description = "Debug symbols for the qpalm package." [build-system] requires = [ - "py-build-cmake~=0.2.0a5", + "py-build-cmake~=0.2.0a7", "pybind11>=2.10.1,!=2.10.2,!=2.10.3,!=2.10.4,!=2.11.*", - "pybind11-stubgen", + "pybind11-stubgen~=0.16.2", ] build-backend = "py_build_cmake.build_component"