From a0cffd7a370062de518d672bffe4f25cc5e4b447 Mon Sep 17 00:00:00 2001 From: 7x11x13 Date: Tue, 19 Mar 2024 18:05:45 -0400 Subject: [PATCH] Fix client_id validation --- .github/workflows/pypi.yml | 2 +- scdl/__init__.py | 2 +- setup.py | 8 +++++--- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml index 81ece983..6514d806 100644 --- a/.github/workflows/pypi.yml +++ b/.github/workflows/pypi.yml @@ -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 . diff --git a/scdl/__init__.py b/scdl/__init__.py index 67eedb31..f3c7d05a 100644 --- a/scdl/__init__.py +++ b/scdl/__init__.py @@ -1,3 +1,3 @@ # -*- encoding: utf-8 -*- """Python Soundcloud Music Downloader.""" -__version__ = "v2.7.3" +__version__ = "v2.7.4" diff --git a/setup.py b/setup.py index c218b823..f5d65ea3 100755 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ "requests", "clint", "pathvalidate", - "soundcloud-v2>=1.3.0" + "soundcloud-v2>=1.3.6" ], url="https://github.com/flyingrub/scdl", classifiers=[ @@ -36,14 +36,16 @@ "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",