Skip to content

Commit

Permalink
fix: upgrade vmd-rs to v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jiafuei committed Aug 9, 2023
1 parent bf47a9e commit 95cf83f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
[package]
name = "vmdrs-py"
version = "0.1.1"
version = "0.2.0"
edition = "2021"

authors = ["jiafuei"]
repository = "https://github.com/jiafuei/vmdrs-py"
description = "Example Python project to use the Rust vmd-rs crate"
license-file = "LICENSE.md"
keywords = ["signal-processing", "vmd", "signal-analysis", "python"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
Expand Down Expand Up @@ -38,4 +39,4 @@ openblas-src = { git = "https://github.com/jiafuei/openblas-src.git", branch = "
[dependencies]
numpy = "0.19.0"
pyo3 = "0.19.0"
vmd-rs = { version = "0.1.1", features = ["blas"] }
vmd-rs = { version = "0.2.0", features = ["blas"] }
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ use vmd_rs::vmd;
fn VMD(
py: Python<'_>,
input: PyReadonlyArray1<f64>,
alpha: i32,
tau: i32,
alpha: f64,
tau: f64,
K: usize,
DC: i32,
init: i32,
Expand Down

0 comments on commit 95cf83f

Please sign in to comment.