From 450cc3bf63747c4deacf76c25f8bddb7e5a80b4d Mon Sep 17 00:00:00 2001 From: sigma67 Date: Sat, 8 Apr 2023 20:32:03 +0200 Subject: [PATCH] set minimum dependency versions --- pyproject.toml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index ee4b7b3..f0c7bb1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,11 +6,15 @@ authors=[{name = "sigma67", email= "ytmusicapi@gmail.com"}] license={file="LICENSE"} classifiers = [ "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", "License :: OSI Approved :: MIT License", ] dependencies = [ - "ytmusicapi", - "spotipy" + "ytmusicapi>=1.0", + "spotipy>=2.23.0" ] dynamic = ["version", "readme"]