Skip to content

Commit 3fd5e2c

Browse files
committed
update stuff
1 parent 75a8d88 commit 3fd5e2c

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

.github/workflows/release.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,6 @@ jobs:
121121
if: ${{ startsWith(github.ref, 'refs/tags/') }}
122122
needs: [
123123
linux,
124-
musllinux,
125124
windows,
126125
macos,
127126
sdist

rust/Cargo.toml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,4 @@ crate-type = ["cdylib"]
1111
chainfile = "0.3.0"
1212
directories = "5.0"
1313
omics = { version = "0.2.0", features = ["coordinate"] }
14-
15-
[dependencies.pyo3]
16-
version = "0.23.1"
17-
features = ["abi3-py310"]
14+
pyo3 = { version = "0.23.3", features = ["abi3-py310"] }

rust/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ impl Converter {
8686
/// agct._core Python module. Collect Python-facing methods.
8787
#[pymodule]
8888
#[pyo3(name = "_core")]
89-
fn agct(_py: Python<'_>, m: &PyModule) -> PyResult<()> {
89+
fn agct(_py: Python<'_>, m: &Bound<'_, PyModule>) -> PyResult<()> {
9090
m.add_class::<Converter>()?;
9191
m.add("NoLiftoverError", _py.get_type::<NoLiftoverError>())?;
9292
m.add("ChainfileError", _py.get_type::<ChainfileError>())?;

0 commit comments

Comments
 (0)