File tree Expand file tree Collapse file tree 3 files changed +2
-6
lines changed
Expand file tree Collapse file tree 3 files changed +2
-6
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -11,7 +11,4 @@ crate-type = ["cdylib"]
1111chainfile = " 0.3.0"
1212directories = " 5.0"
1313omics = { 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" ] }
Original file line number Diff line number Diff 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 > ( ) ) ?;
You can’t perform that action at this time.
0 commit comments