Skip to content

Commit

Permalink
Merge pull request #69 from FastTrackiverse/dev
Browse files Browse the repository at this point in the history
v0.4.2
  • Loading branch information
JoFrhwld authored Apr 7, 2024
2 parents 77bbec9 + e51b85f commit 5653452
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "fasttrackpy"
version = "0.4.1"
version = "0.4.2"
description = "A python implementation of FastTrack"
authors = [
"JoFrhwld <[email protected]>",
Expand All @@ -22,7 +22,7 @@ python = ">=3.10,<3.12"
praat-parselmouth = "^0.4.3"
scipy = {version = "^1.11.3", python = ">=3.10,<3.12"}
numpy = {version = "^1.26.1", python = ">=3.10,<3.12"}
polars = "^0.19.16"
polars = "^0.20.18"
pytest-cov = "^4.1.0"
pytest = "^7.4.3"
python-magic = {version = "^0.4.27", markers = "sys_platform != 'win32'"}
Expand Down
4 changes: 2 additions & 2 deletions src/fasttrackpy/processors/outputs.py
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ def spectrogram(
.melt(id_vars = "time")\
.with_columns(
pl.col("variable")\
.replace(mapping=ptolmap)\
.replace(ptolmap)\
.alias("color")
)

Expand Down Expand Up @@ -348,7 +348,7 @@ def candidate_spectrograms(
.melt(id_vars = "time")\
.with_columns(
pl.col("variable")\
.replace(mapping=ptolmap)\
.replace(ptolmap)\
.alias("color")
)

Expand Down

0 comments on commit 5653452

Please sign in to comment.