Skip to content

Commit

Permalink
v4.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
xnetcat authored Dec 2, 2023
2 parents c2b322c + 330c185 commit c932e5d
Show file tree
Hide file tree
Showing 36 changed files with 22,403 additions and 76,761 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/standard-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ jobs:
- name: Install poetry
run: pipx install poetry

- name: Set up Python 3.10
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: "3.10"
python-version: "3.11"
cache: 'poetry'

- name: Install dependencies
run: |
poetry env use "3.10"
poetry env use "3.11"
poetry install
- name: Check for docstring's
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
max-parallel: 4
matrix:
platform: [ ubuntu-latest, macos-latest, windows-latest ]
python-version: [ "3.8", "3.10" ]
python-version: [ "3.8", "3.11" ]

steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -55,15 +55,15 @@ jobs:
- name: Install poetry
run: pipx install poetry

- name: Set up Python "3.10"
- name: Set up Python "3.11"
uses: actions/setup-python@v4
with:
python-version: "3.10"
python-version: "3.11"
cache: 'poetry'

- name: Install dependencies
run: |
poetry env use "3.10"
poetry env use "3.11"
poetry install
- uses: FedericoCarboni/setup-ffmpeg@v1
Expand Down
737 changes: 377 additions & 360 deletions poetry.lock

Large diffs are not rendered by default.

26 changes: 14 additions & 12 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "spotdl"
version = "4.2.2"
version = "4.2.3"
description = "Download your Spotify playlists and songs along with album art and metadata"
license = "MIT"
authors = ["spotDL Team <spotdladmins@googlegroups.com>"]
Expand All @@ -19,13 +19,15 @@ classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Multimedia",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Utilities",
]

[tool.poetry.dependencies]
python = ">=3.8,<3.12"
python = ">=3.8,<3.13"

spotipy = "^2.23.0"
ytmusicapi = "^1.3.2"
Expand All @@ -35,42 +37,42 @@ mutagen = "^1.47.0"
rich = "^13.7.0"
beautifulsoup4 = "^4.12.2"
requests = "^2.31.0"
rapidfuzz = "==2.15.1"
rapidfuzz = "^3.5.2"
python-slugify = {extras = ["unidecode"], version = "^8.0.1"}
uvicorn = "^0.23.2"
pydantic = "^2.5.1"
pydantic = "^2.5.2"
fastapi = "^0.103.0"
platformdirs = "^4.0.0"
platformdirs = "^3.9.1"
pykakasi = "^2.2.1"
syncedlyrics = "^0.5.0"
syncedlyrics = "^0.7.0"
soundcloud-v2 = "^1.3.1"

[tool.poetry.group.dev.dependencies]
pytest = "^7.4.3"
pytest-mock = "^3.12.0"
pytest-vcr = "^1.0.2"
pyfakefs = "^5.3.1"
pyfakefs = "^5.3.2"
pytest-cov = "^4.1.0"
pytest-subprocess = "^1.5.0"
pytest-asyncio = "^0.21.1"
mypy = "^1.7.0"
mypy = "^1.7.1"
pylint = "^3.0.2"
black = "^23.11.0"
mdformat-gfm = "^0.3.5"
types-orjson = "^3.6.2"
types-python-slugify = "^8.0.0.3"
types-requests = "==2.31.0.6"
types-setuptools = "^68.2.0.1"
types-setuptools = "^69.0.0.0"
types-toml = "^0.10.8.7"
types-ujson = "^5.8.0.1"
pyinstaller = "^6.2.0"
mkdocs = "^1.5.3"
isort = "^5.12.0"
dill = "^0.3.7"
mkdocs-material = "^9.4.9"
mkdocs-material = "^9.4.14"
mkdocstrings = "^0.22.0"
mkdocstrings-python = "^1.7.4"
pymdown-extensions = "^10.4"
mkdocstrings-python = "^1.7.5"
pymdown-extensions = "^10.5"
mkdocs-gen-files = "^0.5.0"
mkdocs-literate-nav = "^0.6.0"
mkdocs-section-index = "^0.3.5"
Expand Down
1 change: 1 addition & 0 deletions spotdl/utils/logging.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,7 @@ def init_logging(log_level: str, log_format: Optional[str] = None):
logging.getLogger("syncedlyrics").setLevel(logging.WARNING)
logging.getLogger("bandcamp_api").setLevel(logging.WARNING)
logging.getLogger("beautifulsoup4").setLevel(logging.WARNING)
logging.getLogger("pytube").setLevel(logging.ERROR)

# Create console
console = get_console()
Expand Down
58 changes: 0 additions & 58 deletions tests/providers/audio/cassettes/test_sliderkz_get_results.yaml

This file was deleted.

91 changes: 0 additions & 91 deletions tests/providers/audio/cassettes/test_sliderkz_search.yaml

This file was deleted.

Loading

0 comments on commit c932e5d

Please sign in to comment.