Skip to content

Commit

Permalink
Upgrade PyO3 from '0.18.3' to '0.23.1' (#1648)
Browse files Browse the repository at this point in the history
  • Loading branch information
AdilZouitine authored Nov 23, 2024
1 parent 5d55c18 commit f2f4367
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 25 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ path = "rust_src/lib.rs"
crate-type = ["cdylib"]

[dependencies]
pyo3 = { version = "0.18.3", features = ["extension-module"] }
pyo3 = { version = "0.23.1", features = ["extension-module"] }
watermill = "0.1.1"
bincode = "1.3.3"
serde = { version = "1.0", features = ["derive"] }
47 changes: 23 additions & 24 deletions rust_src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,12 @@ pub struct RsQuantile {
#[pymethods]
impl RsQuantile {
#[new]
#[pyo3(signature = (q=None))]
pub fn new(q: Option<f64>) -> RsQuantile {
match q {
Some(q) => {
return RsQuantile {
quantile: Quantile::new(q).expect("q should between 0 and 1"),
}
}
Some(q) => RsQuantile {
quantile: Quantile::new(q).expect("q should be between 0 and 1"),
},
None => RsQuantile {
quantile: Quantile::default(),
},
Expand All @@ -36,11 +35,11 @@ impl RsQuantile {
self.quantile.get()
}

pub fn __setstate__(&mut self, state: &PyBytes) -> PyResult<()> {
pub fn __setstate__(&mut self, state: Bound<'_, PyBytes>) -> PyResult<()> {
*self = deserialize(state.as_bytes()).unwrap();
Ok(())
}
pub fn __getstate__<'py>(&self, py: Python<'py>) -> PyResult<&'py PyBytes> {
pub fn __getstate__<'py>(&self, py: Python<'py>) -> PyResult<Bound<'py, PyBytes>> {
Ok(PyBytes::new(py, &serialize(&self).unwrap()))
}
}
Expand All @@ -67,11 +66,11 @@ impl RsEWMean {
self.ewmean.get()
}

pub fn __setstate__(&mut self, state: &PyBytes) -> PyResult<()> {
pub fn __setstate__(&mut self, state: Bound<'_, PyBytes>) -> PyResult<()> {
*self = deserialize(state.as_bytes()).unwrap();
Ok(())
}
pub fn __getstate__<'py>(&self, py: Python<'py>) -> PyResult<&'py PyBytes> {
pub fn __getstate__<'py>(&self, py: Python<'py>) -> PyResult<Bound<'py, PyBytes>> {
Ok(PyBytes::new(py, &serialize(&self).unwrap()))
}
pub fn __getnewargs__(&self) -> PyResult<(f64,)> {
Expand Down Expand Up @@ -101,11 +100,11 @@ impl RsEWVar {
self.ewvar.get()
}

pub fn __setstate__(&mut self, state: &PyBytes) -> PyResult<()> {
pub fn __setstate__(&mut self, state: Bound<'_, PyBytes>) -> PyResult<()> {
*self = deserialize(state.as_bytes()).unwrap();
Ok(())
}
pub fn __getstate__<'py>(&self, py: Python<'py>) -> PyResult<&'py PyBytes> {
pub fn __getstate__<'py>(&self, py: Python<'py>) -> PyResult<Bound<'py, PyBytes>> {
Ok(PyBytes::new(py, &serialize(&self).unwrap()))
}
pub fn __getnewargs__(&self) -> PyResult<(f64,)> {
Expand Down Expand Up @@ -138,11 +137,11 @@ impl RsIQR {
self.iqr.get()
}

pub fn __setstate__(&mut self, state: &PyBytes) -> PyResult<()> {
pub fn __setstate__(&mut self, state: Bound<'_, PyBytes>) -> PyResult<()> {
*self = deserialize(state.as_bytes()).unwrap();
Ok(())
}
pub fn __getstate__<'py>(&self, py: Python<'py>) -> PyResult<&'py PyBytes> {
pub fn __getstate__<'py>(&self, py: Python<'py>) -> PyResult<Bound<'py, PyBytes>> {
Ok(PyBytes::new(py, &serialize(&self).unwrap()))
}
pub fn __getnewargs__(&self) -> PyResult<(f64, f64)> {
Expand Down Expand Up @@ -171,11 +170,11 @@ impl RsKurtosis {
pub fn get(&self) -> f64 {
self.kurtosis.get()
}
pub fn __setstate__(&mut self, state: &PyBytes) -> PyResult<()> {
pub fn __setstate__(&mut self, state: Bound<'_, PyBytes>) -> PyResult<()> {
*self = deserialize(state.as_bytes()).unwrap();
Ok(())
}
pub fn __getstate__<'py>(&self, py: Python<'py>) -> PyResult<&'py PyBytes> {
pub fn __getstate__<'py>(&self, py: Python<'py>) -> PyResult<Bound<'py, PyBytes>> {
Ok(PyBytes::new(py, &serialize(&self).unwrap()))
}
pub fn __getnewargs__(&self) -> PyResult<(bool,)> {
Expand Down Expand Up @@ -205,11 +204,11 @@ impl RsPeakToPeak {
self.ptp.get()
}

pub fn __setstate__(&mut self, state: &PyBytes) -> PyResult<()> {
pub fn __setstate__(&mut self, state: Bound<'_, PyBytes>) -> PyResult<()> {
*self = deserialize(state.as_bytes()).unwrap();
Ok(())
}
pub fn __getstate__<'py>(&self, py: Python<'py>) -> PyResult<&'py PyBytes> {
pub fn __getstate__<'py>(&self, py: Python<'py>) -> PyResult<Bound<'py, PyBytes>> {
Ok(PyBytes::new(py, &serialize(&self).unwrap()))
}
}
Expand All @@ -236,11 +235,11 @@ impl RsSkew {
self.skew.get()
}

pub fn __setstate__(&mut self, state: &PyBytes) -> PyResult<()> {
pub fn __setstate__(&mut self, state: Bound<'_, PyBytes>) -> PyResult<()> {
*self = deserialize(state.as_bytes()).unwrap();
Ok(())
}
pub fn __getstate__<'py>(&self, py: Python<'py>) -> PyResult<&'py PyBytes> {
pub fn __getstate__<'py>(&self, py: Python<'py>) -> PyResult<Bound<'py, PyBytes>> {
Ok(PyBytes::new(py, &serialize(&self).unwrap()))
}
pub fn __getnewargs__(&self) -> PyResult<(bool,)> {
Expand Down Expand Up @@ -271,11 +270,11 @@ impl RsRollingQuantile {
pub fn get(&self) -> f64 {
self.stat.get()
}
pub fn __setstate__(&mut self, state: &PyBytes) -> PyResult<()> {
pub fn __setstate__(&mut self, state: Bound<'_, PyBytes>) -> PyResult<()> {
*self = deserialize(state.as_bytes()).unwrap();
Ok(())
}
pub fn __getstate__<'py>(&self, py: Python<'py>) -> PyResult<&'py PyBytes> {
pub fn __getstate__<'py>(&self, py: Python<'py>) -> PyResult<Bound<'py, PyBytes>> {
Ok(PyBytes::new(py, &serialize(&self).unwrap()))
}
pub fn __getnewargs__(&self) -> PyResult<(f64, usize)> {
Expand Down Expand Up @@ -309,11 +308,11 @@ impl RsRollingIQR {
pub fn get(&self) -> f64 {
self.stat.get()
}
pub fn __setstate__(&mut self, state: &PyBytes) -> PyResult<()> {
pub fn __setstate__(&mut self, state: Bound<'_, PyBytes>) -> PyResult<()> {
*self = deserialize(state.as_bytes()).unwrap();
Ok(())
}
pub fn __getstate__<'py>(&self, py: Python<'py>) -> PyResult<&'py PyBytes> {
pub fn __getstate__<'py>(&self, py: Python<'py>) -> PyResult<Bound<'py, PyBytes>> {
Ok(PyBytes::new(py, &serialize(&self).unwrap()))
}
pub fn __getnewargs__(&self) -> PyResult<(f64, f64, usize)> {
Expand All @@ -323,7 +322,7 @@ impl RsRollingIQR {

/// A Python module implemented in Rust.
#[pymodule]
fn _rust_stats(_py: Python, m: &PyModule) -> PyResult<()> {
fn _rust_stats(_py: Python, m: &Bound<PyModule>) -> PyResult<()> {
m.add_class::<RsQuantile>()?;
m.add_class::<RsEWMean>()?;
m.add_class::<RsEWVar>()?;
Expand Down

0 comments on commit f2f4367

Please sign in to comment.