diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index f56ea13..3f47ff8 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -103,7 +103,7 @@ jobs: runs-on: ubuntu-latest environment: name: pypi - url: https://pypi.org/p/chainlifter + url: https://pypi.org/p/agct permissions: id-token: write # IMPORTANT: mandatory for trusted publishing if: "startsWith(github.ref, 'refs/tags/')" diff --git a/rust/src/lib.rs b/rust/src/lib.rs index 273ddbe..ddb9eed 100644 --- a/rust/src/lib.rs +++ b/rust/src/lib.rs @@ -86,7 +86,7 @@ impl Converter { /// agct._core Python module. Collect Python-facing methods. #[pymodule] #[pyo3(name = "_core")] -fn chainlifter(_py: Python<'_>, m: &PyModule) -> PyResult<()> { +fn agct(_py: Python<'_>, m: &PyModule) -> PyResult<()> { m.add_class::()?; m.add("NoLiftoverError", _py.get_type::())?; m.add("ChainfileError", _py.get_type::())?;