Fix client_id validation
This commit is contained in:
parent
4276511e39
commit
a0cffd7a37
2
.github/workflows/pypi.yml
vendored
2
.github/workflows/pypi.yml
vendored
|
|
@ -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 .
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
# -*- encoding: utf-8 -*-
|
||||
"""Python Soundcloud Music Downloader."""
|
||||
__version__ = "v2.7.3"
|
||||
__version__ = "v2.7.4"
|
||||
|
|
|
|||
8
setup.py
8
setup.py
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user