Force using Spotipy with a version higher than 2.11.0
This fixes the "No module named spotipy.exceptions" error
This commit is contained in:
parent
309ac9bd13
commit
d8fdc8344f
|
@ -1,3 +1,3 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
__version__ = "1.1.4"
|
||||
__version__ = "1.1.5"
|
||||
|
|
|
@ -2,4 +2,4 @@ click
|
|||
pycryptodomex
|
||||
mutagen
|
||||
requests
|
||||
spotipy
|
||||
spotipy>=2.11.0
|
||||
|
|
4
setup.py
4
setup.py
|
@ -7,7 +7,7 @@ README = (HERE / "README.md").read_text()
|
|||
|
||||
setup(
|
||||
name="deemix",
|
||||
version="1.1.4",
|
||||
version="1.1.5",
|
||||
description="A barebone deezer downloader library",
|
||||
long_description=README,
|
||||
long_description_content_type="text/markdown",
|
||||
|
@ -25,7 +25,7 @@ setup(
|
|||
python_requires='>=3.6',
|
||||
packages=find_packages(exclude=("tests",)),
|
||||
include_package_data=True,
|
||||
install_requires=["click", "pycryptodomex", "mutagen", "requests", "spotipy"],
|
||||
install_requires=["click", "pycryptodomex", "mutagen", "requests", "spotipy>=2.11.0"],
|
||||
entry_points={
|
||||
"console_scripts": [
|
||||
"deemix=deemix.__main__:main",
|
||||
|
|
Loading…
Reference in New Issue