Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: missing pip package
Browse files Browse the repository at this point in the history
cstaelen committed Jan 17, 2025

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent a9a6d63 commit e0efa39
Showing 6 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -3,6 +3,10 @@ Tidarr notable changes.

[Keep a Changelog](http://keepachangelog.com/en/1.0.0/) format.

## 📦 0.1.13
### 🐛 Fixed
* [API] Fix missing `ffmpeg-python` pip package (#57)

## 📦 0.1.12
### 🚀 Added
* [Front] Show unavailable tracks (if exists) in albums and playlists
2 changes: 1 addition & 1 deletion api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tidarr-api",
"version": "0.1.12",
"version": "0.1.13",
"private": true,
"devDependencies": {
"@eslint/js": "^9.15.0",
2 changes: 1 addition & 1 deletion docker/Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -14,7 +14,7 @@ RUN python3 -m venv $HOME/.venvs
RUN source $HOME/.venvs/bin/activate
ENV PATH="$HOME/.venvs/bin:$PATH"

RUN python -m pip install "tiddl==1.9.4" requests ffmpeg mutagen
RUN python -m pip install "tiddl==1.9.4" requests ffmpeg-python mutagen

RUN mkdir -p /home/app/standalone/shared/beets
RUN touch /home/app/standalone/shared/beets/beets-library.blb
2 changes: 1 addition & 1 deletion docker/stages/Dockerfile.python
Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@ RUN python3 -m venv $HOME/.venvs
RUN source $HOME/.venvs/bin/activate
ENV PATH="$HOME/.venvs/bin:$PATH"

RUN python -m pip install "tiddl==1.9.4" requests ffmpeg mutagen
RUN python -m pip install "tiddl==1.9.4" requests ffmpeg-python mutagen

RUN mkdir -p /home/app/standalone/shared/beets
RUN touch /home/app/standalone/shared/beets/beets-library.blb
2 changes: 1 addition & 1 deletion e2e/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tidarr-testing",
"version": "0.1.12",
"version": "0.1.13",
"description": "",
"main": "index.js",
"keywords": [],
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tidarr-main",
"version": "0.1.12",
"version": "0.1.13",
"private": true,
"devDependencies": {
"concurrently": "^8.2.2"

0 comments on commit e0efa39

Please sign in to comment.