Fix client_id validation

This commit is contained in:
7x11x13 2024-03-19 18:05:45 -04:00
parent 4276511e39
commit a0cffd7a37
3 changed files with 7 additions and 5 deletions

View File

@ -11,7 +11,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.6
python-version: 3.7
- name: Install dependencies
run: |
pip install -e .

View File

@ -1,3 +1,3 @@
# -*- encoding: utf-8 -*-
"""Python Soundcloud Music Downloader."""
__version__ = "v2.7.3"
__version__ = "v2.7.4"

View File

@ -28,7 +28,7 @@ setup(
"requests",
"clint",
"pathvalidate",
"soundcloud-v2>=1.3.0"
"soundcloud-v2>=1.3.6"
],
url="https://github.com/flyingrub/scdl",
classifiers=[
@ -36,14 +36,16 @@ setup(
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"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 :: Internet",
"Topic :: Multimedia :: Sound/Audio",
],
python_requires = ">=3.6",
python_requires = ">=3.7",
entry_points={
"console_scripts": [
"scdl = scdl.scdl:main",