Skip to content

Commit

Permalink
v4.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
xnetcat authored Dec 3, 2023
2 parents c932e5d + ce15467 commit f90cfb3
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 11 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,21 +93,22 @@ jobs:
with:
arch: aarch64
distro: ubuntu_latest
githubToken: ${{ github.token }}

# Mount the artifacts directory as /artifacts in the container
dockerRunArgs: |
--volume "${PWD}/:/spotdl"
# The shell to run commands with in the container
shell: /bin/sh
install: |

run: |
cd /spotdl
apt update
apt install python3 python3-pip -y
pip install poetry
cd /spotdl
poetry install
run: |
cd /spotdl
rm -rf dist/
mkdir dist/
poetry run python ./scripts/build.py
for file in dist/spotdl*; do cp "$file" "${file}-aarch64"; done
Expand Down
2 changes: 1 addition & 1 deletion poetry.lock

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

5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "spotdl"
version = "4.2.3"
version = "4.2.4"
description = "Download your Spotify playlists and songs along with album art and metadata"
license = "MIT"
authors = ["spotDL Team <[email protected]>"]
Expand Down Expand Up @@ -42,10 +42,11 @@ python-slugify = {extras = ["unidecode"], version = "^8.0.1"}
uvicorn = "^0.23.2"
pydantic = "^2.5.2"
fastapi = "^0.103.0"
platformdirs = "^3.9.1"
platformdirs = "^3.11.0"
pykakasi = "^2.2.1"
syncedlyrics = "^0.7.0"
soundcloud-v2 = "^1.3.1"
setuptools = "^69.0.2"

[tool.poetry.group.dev.dependencies]
pytest = "^7.4.3"
Expand Down
2 changes: 1 addition & 1 deletion spotdl/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
Version module for spotdl.
"""

__version__ = "4.2.2"
__version__ = "4.2.4"
5 changes: 4 additions & 1 deletion tests/test_matching.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,10 @@
(
# Quebonafide - GAZPROM
"https://open.spotify.com/track/46RBT9mCXUZEZa0CyA0thr",
["https://music.youtube.com/watch?v=3edPRi_CDmc"],
[
"https://music.youtube.com/watch?v=3edPRi_CDmc",
"https://www.youtube.com/watch?v=vxSdBWdCLl4",
],
),
(
# 2115 - ROTTWEILER
Expand Down

0 comments on commit f90cfb3

Please sign in to comment.