Skip to content

Commit

Permalink
bring back python 3.8 support
Browse files Browse the repository at this point in the history
  • Loading branch information
xnetcat committed Aug 26, 2024
1 parent 1cd4693 commit c91efb9
Show file tree
Hide file tree
Showing 2 changed files with 115 additions and 4 deletions.
111 changes: 109 additions & 2 deletions poetry.lock

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

8 changes: 6 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand All @@ -26,9 +27,12 @@ classifiers = [
]

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

spotipy = "^2.24.0"
spotipy = [
{version = "^2.23.0", python = "<=3.8"},
{version = "^2.24.0", python = ">3.8"},
]
ytmusicapi = [
{version = "^1.3.2", python = "<3.10"},
{version = "^1.4.1", python = ">=3.10"},
Expand Down

0 comments on commit c91efb9

Please sign in to comment.