Skip to content

Commit

Permalink
Fix client_id validation
Browse files Browse the repository at this point in the history
  • Loading branch information
7x11x13 committed Mar 19, 2024
1 parent 4276511 commit a0cffd7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 .
Expand Down
2 changes: 1 addition & 1 deletion scdl/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# -*- encoding: utf-8 -*-
"""Python Soundcloud Music Downloader."""
__version__ = "v2.7.3"
__version__ = "v2.7.4"
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,22 +28,24 @@
"requests",
"clint",
"pathvalidate",
"soundcloud-v2>=1.3.0"
"soundcloud-v2>=1.3.6"
],
url="https://github.com/flyingrub/scdl",
classifiers=[
"Programming Language :: Python",
"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",
Expand Down

0 comments on commit a0cffd7

Please sign in to comment.