diff --git a/.github/workflows/maturin.yaml b/.github/workflows/maturin.yaml index df2f0fa..8ba44b0 100644 --- a/.github/workflows/maturin.yaml +++ b/.github/workflows/maturin.yaml @@ -40,7 +40,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 with: - python-version: "3.11" + python-version: 3.x - name: Fix openssl regression run: cargo update openssl-src --precise 300.3.1+3.3.1 - name: Build wheels @@ -48,7 +48,7 @@ jobs: with: target: ${{ matrix.platform.target }} manylinux: auto - #sccache: 'true' + sccache: 'true' args: --release --out dist --manifest-path pyfuzon/Cargo.toml before-script-linux: | # Source: https://github.com/sfackler/rust-openssl/issues/2036#issuecomment-1724324145 @@ -149,7 +149,7 @@ jobs: name: Release runs-on: ubuntu-latest if: "startsWith(github.ref, 'refs/tags/')" - needs: [musllinux, macos, sdist] + needs: [linux, musllinux, macos, sdist] steps: - uses: actions/download-artifact@v4 - name: Publish to PyPI diff --git a/fuzon/Cargo.toml b/fuzon/Cargo.toml index 3f03b88..a41d890 100644 --- a/fuzon/Cargo.toml +++ b/fuzon/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fuzon" -version = "0.2.0" +version = "0.2.1" edition = "2021" [lib] diff --git a/pyfuzon/Cargo.toml b/pyfuzon/Cargo.toml index 97010ff..620ded0 100644 --- a/pyfuzon/Cargo.toml +++ b/pyfuzon/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pyfuzon" -version = "0.2.0" +version = "0.2.1" edition = "2021" [lib]