diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5d52256..9eb6f2f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -168,13 +168,13 @@ jobs: - name: build sdist if: ${{ matrix.os == 'ubuntu' && matrix.target == 'x86_64' && matrix.manylinux == 'auto' }} - uses: messense/maturin-action@v1 + uses: PyO3/maturin-action@v1 with: command: sdist args: --out dist - name: build wheels - uses: messense/maturin-action@v1 + uses: PyO3/maturin-action@v1 with: target: ${{ matrix.target }} manylinux: ${{ matrix.manylinux || 'auto' }} diff --git a/Cargo.toml b/Cargo.toml index 3adea1b..77163e8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,9 +16,6 @@ nohash-hasher = "0.2.0" name = "_rtoml" crate-type = ["cdylib", "rlib"] -[package.metadata.maturin] -name = "rtoml._rtoml" - [profile.release] lto = "fat" codegen-units = 1 diff --git a/pyproject.toml b/pyproject.toml index 2f5d29d..b693fca 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -43,6 +43,7 @@ Source = "https://github.com/samuelcolvin/rtoml" [tool.maturin] bindings = "pyo3" +module-name = "rtoml._rtoml" [tool.pytest.ini_options] testpaths = ["tests"]