Skip to content

Commit

Permalink
v0.1.11
Browse files Browse the repository at this point in the history
  • Loading branch information
Rikorose committed May 11, 2022
1 parent afe6bfb commit 314c774
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 12 deletions.
8 changes: 3 additions & 5 deletions DeepFilterNet/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "DeepFilterNet"
version = "0.1.11-pre"
version = "0.1.11"
description = "Noise supression using deep filtering"
authors = ["Hendrik Schröter"]
repository = "https://github.com/Rikorose/DeepFilterNet"
Expand All @@ -21,8 +21,8 @@ include = [
]

[tool.poetry.dependencies]
deepfilterlib = { path = "../pyDF/" }
deepfilterdataloader = { path = "../pyDF-data/", optional = true }
deepfilterlib = "0.1.11"
deepfilterdataloader = { version = "0.1.11", optional = true }
python = ">=3.7,<4.0"
typing_extensions = "^4.0"
numpy = ">=1.20,<2.0"
Expand All @@ -32,12 +32,10 @@ icecream = { version = ">=2,<3", optional = true }
pystoi = { version = "^0.3", optional = true }
pesq = { version = "^0.0.3", optional = true }
scipy = { version = "^1", optional = true }
semetrics = {git = "https://github.com/usimarit/semetrics.git", optional = true}

[tool.poetry.extras]
train = ["deepfilterdataloader", "icecream"]
eval = ["pystoi", "pesq", "scipy"]
semetrics = ["semetrics"]
soundfile = ["soundfile"]

[tool.poetry.scripts]
Expand Down
2 changes: 1 addition & 1 deletion libDF/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "deep_filter"
version = "0.1.11-pre"
version = "0.1.11"
authors = ["Hendrik Schröter <[email protected]>"]
edition = "2021"
description = "Noise supression using deep filtering"
Expand Down
4 changes: 2 additions & 2 deletions pyDF-data/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "DeepFilterDataLoader"
version = "0.1.11-pre"
version = "0.1.11"
authors = ["Hendrik Schröter <[email protected]>"]
edition = "2021"

Expand All @@ -10,7 +10,7 @@ crate-type = ["cdylib"]
path = "src/lib.rs"

[dependencies]
deep_filter = { features = ["dataset", "vorbis", "flac"], path = "../libDF" }
deep_filter = { features = ["dataset"], version = "0.1.11" }
pyo3 = { version = "^0.16", default_features = true, features = ["extension-module"]}
crossbeam-channel = "^0.5"
numpy = "^0.16"
Expand Down
2 changes: 1 addition & 1 deletion pyDF-data/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "DeepFilterDataLoader"
version = "0.1.11-pre"
version = "0.1.11"
classifiers = [
"Programming Language :: Rust"
]
Expand Down
4 changes: 2 additions & 2 deletions pyDF/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "DeepFilterLib"
version = "0.1.11-pre"
version = "0.1.11"
authors = ["Hendrik Schröter <[email protected]>"]
edition = "2021"

Expand All @@ -10,7 +10,7 @@ crate-type = ["cdylib"]
path = "src/lib.rs"

[dependencies]
deep_filter = { features = ["transforms"], path = "../libDF" }
deep_filter = { features = ["transforms"], version = "0.1.11" }
pyo3 = { version = "^0.16", features = ["extension-module"]}
numpy = "^0.16"
ndarray = "^0.15"
2 changes: 1 addition & 1 deletion pyDF/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "DeepFilterLib"
version = "0.1.11-pre"
version = "0.1.11"
classifiers = [
"Programming Language :: Rust"
]
Expand Down

0 comments on commit 314c774

Please sign in to comment.