diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 12c2331..aa44aae 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -120,7 +120,6 @@ jobs: release: name: Release runs-on: ubuntu-latest - if: ${{ startsWith(github.ref, 'refs/tags/') || github.event_name == 'workflow_dispatch' }} needs: [wheels] permissions: # Use to sign the release artifacts @@ -136,7 +135,6 @@ jobs: with: subject-path: 'wheels-*/*' - name: Publish to PyPI - if: ${{ startsWith(github.ref, 'refs/tags/') }} uses: PyO3/maturin-action@v1 env: MATURIN_PYPI_TOKEN: ${{ secrets.PYPI_API_TOKEN }} diff --git a/Cargo.toml b/Cargo.toml index 4661528..0159c9c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,6 @@ name = "kmeans_rs" version = "0.1.0" edition = "2024" -rust-version = "1.94.0" authors = ["Wim Pomp "] license = "MIT OR Apache-2.0" description = "Python wrapper for Rust kmeans library."