Skip to content

Commit

Permalink
added alias file so imports can either be torch_log_wmse or torch_log…
Browse files Browse the repository at this point in the history
…_wmse_audio_quality. Bumped version.
  • Loading branch information
crlandsc committed Jun 21, 2024
1 parent 4672118 commit 5519e3e
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,4 +76,9 @@ Updated GitHub repo name to appropriate `torch-log-wmse`. `torch-log-wmse-audio-
## 0.2.3 (2024-06-19)

#### Weighted filter reference bug
Corrected file reference to pkl filter file.
Corrected file reference to pkl filter file.

## 0.2.4 (2024-06-21)

#### Added `torch_log_wmse_audio_quality` alias
added alias file so imports can either be `torch_log_wmse` or `torch_log_wmse_audio_quality`
7 changes: 5 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = torch-log-wmse
version = 0.2.3
version = 0.2.4
author = Christopher Landschoot
author_email = crlandschoot@gmail.com
license = Apache License 2.0
Expand Down Expand Up @@ -28,4 +28,7 @@ install_requires =
torch_log_wmse = filter_ir.pkl

[options.packages.find]
where = .
where = .

[options.scripts]
torch_log_wmse_audio_quality = torch_log_wmse_audio_quality.py
2 changes: 1 addition & 1 deletion torch_log_wmse/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from .metric import LogWMSE

__version__ = "0.2.3"
__version__ = "0.2.4"
2 changes: 2 additions & 0 deletions torch_log_wmse_audio_quality.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Alias for torch_log_wmse
from torch_log_wmse import *

0 comments on commit 5519e3e

Please sign in to comment.