Skip to content

Commit

Permalink
deps: bump pyo3
Browse files Browse the repository at this point in the history
  • Loading branch information
gadomski committed Dec 6, 2024
1 parent c4a4706 commit 35b9738
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ openssl = { version = "0.10.68", features = ["vendored"] }
openssl-src = "=300.4.1" # joinked from https://github.com/iopsystems/rpc-perf/commit/705b290d2105af6f33150da04b217422c6d68701#diff-2e9d962a08321605940b5a657135052fbcef87b5e360662bb527c96d9a615542R41 to cross-compile Python
parquet = { version = "52.2", default-features = false }
pgstac = { version = "0.2.2", path = "crates/pgstac" }
pyo3 = "0.22.3"
pythonize = "0.22.0"
pyo3 = "0.23.3"
pythonize = "0.23.0"
quote = "1.0"
reqwest = "0.12.8"
rstest = "0.23.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/cli/src/python.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use pyo3::{

#[pyfunction]
fn main(py: Python<'_>) -> PyResult<i64> {
let signal = py.import_bound("signal")?;
let signal = py.import("signal")?;
let _ = signal
.getattr("signal")?
.call1((signal.getattr("SIGINT")?, signal.getattr("SIG_DFL")?))?;
Expand Down

0 comments on commit 35b9738

Please sign in to comment.