Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
- Replace nbs-audio with nbswave from PyPI
- Bump numpy to 1.22.2
  • Loading branch information
Bentroen committed Mar 6, 2022
1 parent 0c92d6e commit 5bcb2d4
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 30 deletions.
4 changes: 2 additions & 2 deletions datafiles/Data/Python/audio_export.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ def main(*args, **kwargs):
# Monkey-patch to avoid ffmpeg/ffprobe calls opening console window
subprocess.Popen = patch_arguments(subprocess.Popen, creationflags=subprocess.CREATE_NO_WINDOW)

import nbsaudio
nbsaudio.main.render_audio(*args, **kwargs)
import nbswave
nbswave.render_audio(*args, **kwargs)


if __name__ == "__main__":
Expand Down
53 changes: 26 additions & 27 deletions datafiles/Data/Python/poetry.lock

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

2 changes: 1 addition & 1 deletion datafiles/Data/Python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ description = "Python extensions for Open Note Block Studio"
authors = ["OpenNBS"]

[tool.poetry.dependencies]
nbs-audio = {git = "https://github.com/Bentroen/nbs-audio.git", rev = "main"}
python = "3.9.5"
nbswave = "^0.1.1"

[tool.poetry.dev-dependencies]

Expand Down

0 comments on commit 5bcb2d4

Please sign in to comment.