Skip to content

Commit

Permalink
pydf: Bump MSRV to 1.70
Browse files Browse the repository at this point in the history
  • Loading branch information
Hendrik Schroeter committed May 6, 2024
1 parent 4b9b927 commit f1d19bf
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion clippy.toml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
msrv = "1.60"
msrv = "1.70"
2 changes: 1 addition & 1 deletion pyDF-data/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "DeepFilterDataLoader"
version = "0.5.7-pre"
authors = ["Hendrik Schröter"]
edition = "2021"
rust-version = "1.60"
rust-version = "1.70"

[lib]
name = "libdfdata"
Expand Down
34 changes: 17 additions & 17 deletions pyDF/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
[package]
name = "DeepFilterLib"
version = "0.5.7-pre"
authors = ["Hendrik Schröter"]
edition = "2021"
rust-version = "1.60"

[lib]
name = "libdf"
crate-type = ["cdylib"]
path = "src/lib.rs"

[dependencies]
deep_filter = { features = ["transforms", "logging"], path = "../libDF" }
pyo3 = { version = "0.20", features = ["extension-module"]}
numpy = "0.20"
ndarray = "^0.15"
[package]
name = "DeepFilterLib"
version = "0.5.7-pre"
authors = ["Hendrik Schröter"]
edition = "2021"
rust-version = "1.70"

[lib]
name = "libdf"
crate-type = ["cdylib"]
path = "src/lib.rs"

[dependencies]
deep_filter = { features = ["transforms", "logging"], path = "../libDF" }
pyo3 = { version = "0.20", features = ["extension-module"]}
numpy = "0.20"
ndarray = "^0.15"

0 comments on commit f1d19bf

Please sign in to comment.