-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
24 changed files
with
1,375 additions
and
797 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -145,3 +145,6 @@ temp/ | |
# VS Code | ||
.vscode | ||
*.txt | ||
|
||
# Output Folder | ||
output/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "spotdl" | ||
version = "4.2.8" | ||
version = "4.2.9" | ||
description = "Download your Spotify playlists and songs along with album art and metadata" | ||
license = "MIT" | ||
authors = ["spotDL Team <[email protected]>"] | ||
|
@@ -27,7 +27,7 @@ classifiers = [ | |
] | ||
|
||
[tool.poetry.dependencies] | ||
python = ">=3.8,<3.13" | ||
python = ">=3.8,<3.14" | ||
|
||
spotipy = [ | ||
{version = "^2.23.0", python = "<=3.8"}, | ||
|
@@ -38,50 +38,68 @@ ytmusicapi = [ | |
{version = "^1.4.1", python = ">=3.10"}, | ||
] | ||
pytube = "^15.0.0" | ||
yt-dlp = "^2024.8.6" | ||
yt-dlp = [ | ||
{version = "^2024.10.7", python = "<3.9"}, | ||
{version = "^2024.11.4", python = ">=3.9"}, | ||
] | ||
mutagen = "^1.47.0" | ||
rich = "^13.8.0" | ||
rich = "^13.9.4" | ||
beautifulsoup4 = "^4.12.3" | ||
requests = "^2.32.3" | ||
rapidfuzz = "^3.9.7" | ||
rapidfuzz = [ | ||
{version = "^3.9.7", python = "<3.9"}, | ||
{version = "^3.10.0", python = ">=3.9"}, | ||
] | ||
python-slugify = {extras = ["unidecode"], version = "^8.0.4"} | ||
uvicorn = "^0.23.2" | ||
pydantic = "^2.9.0" | ||
pydantic = "^2.9.2" | ||
fastapi = "^0.103.0" | ||
platformdirs = "^4.2.2" | ||
platformdirs = "^4.3.6" | ||
pykakasi = "^2.3.0" | ||
syncedlyrics = "^1.0.1" | ||
soundcloud-v2 = "^1.6.0" | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
pytest = "^8.3.2" | ||
pytest = "^8.3.3" | ||
pytest-mock = "^3.14.0" | ||
pyfakefs = "^5.6.0" | ||
pytest-cov = "^5.0.0" | ||
pyfakefs = "^5.7.1" | ||
pytest-cov = [ | ||
{version = "^5.0.0", python = "<3.9"}, | ||
{version = "^6.0.0", python = ">=3.9"}, | ||
] | ||
pytest-subprocess = "^1.5.2" | ||
pytest-asyncio = "^0.21.1" | ||
mypy = "^1.11.2" | ||
pylint = "^3.2.7" | ||
black = "^24.8.0" | ||
mypy = "^1.13.0" | ||
pylint = [ | ||
{version = "^3.2.7", python = "<3.9"}, | ||
{version = "^3.3.1", python = ">=3.9"}, | ||
] | ||
black = [ | ||
{version = "^24.8.0", python = "<3.9"}, | ||
{version = "^24.10.0", python = ">=3.9"}, | ||
] | ||
mdformat-gfm = "^0.3.5" | ||
types-orjson = "^3.6.2" | ||
types-python-slugify = "^8.0.2.20240310" | ||
types-requests = "==2.31.0.6" | ||
types-setuptools = "^74.1.0.20240906" | ||
types-setuptools = "^75.3.0.20241112" | ||
types-toml = "^0.10.8.7" | ||
types-ujson = "^5.10.0.20240515" | ||
pyinstaller = "^6.10.0" | ||
pyinstaller = "^6.11.1" | ||
mkdocs = "^1.6.1" | ||
isort = "^5.13.2" | ||
dill = "^0.3.7" | ||
mkdocs-material = "^9.5.34" | ||
mkdocs-material = "^9.5.44" | ||
mkdocstrings = "^0.26.0" | ||
mkdocstrings-python = "^1.11.1" | ||
pymdown-extensions = "^10.9" | ||
mkdocstrings-python = [ | ||
{version = "^1.11.1", python = "<3.9"}, | ||
{version = "^1.12.0", python = ">=3.9"}, | ||
] | ||
pymdown-extensions = "^10.12" | ||
mkdocs-gen-files = "^0.5.0" | ||
mkdocs-literate-nav = "^0.6.0" | ||
mkdocs-section-index = "^0.3.5" | ||
vcrpy = "^6.0.1" | ||
vcrpy = "^6.0.2" | ||
pytest-recording = "^0.13.1" | ||
|
||
[tool.poetry.scripts] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
Version module for spotdl. | ||
""" | ||
|
||
__version__ = "4.2.8" | ||
__version__ = "4.2.9" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.