From ab6753226fca6e549a3452dfb214394a2857481e Mon Sep 17 00:00:00 2001 From: nichind Date: Sat, 16 Nov 2024 13:34:37 +0300 Subject: [PATCH] 11.15 --- pybalt/cobalt.py | 4 ---- setup.py | 7 +++---- 2 files changed, 3 insertions(+), 8 deletions(-) diff --git a/pybalt/cobalt.py b/pybalt/cobalt.py index 19a3cee..e4a87bc 100644 --- a/pybalt/cobalt.py +++ b/pybalt/cobalt.py @@ -516,10 +516,6 @@ def shorten(s: str, additional_len: int = 0) -> str: ] ) return path.join(path_folder, filename) - # except client_exceptions.ClientConnectorError: - # raise exceptions.ConnectionError( - # "Client connector error. Are you connected to the internet?" - # ) except KeyboardInterrupt: return diff --git a/setup.py b/setup.py index 5b81e1b..8aced3b 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ def readme(): setup( name="pybalt", - version="2024.11.14", + version="2024.11.15", author="nichind", author_email="nichinddev@gmail.com", description="Download mediafiles from YouTube, Twitter (X), Instagram, Reddit & more. CLI wrapper and python module for @imputnet's cobalt processing instance api.", @@ -20,14 +20,14 @@ def readme(): "aiohttp", "aiofiles", "pytube", - 'python-dotenv', + "python-dotenv", ], classifiers=[ "Programming Language :: Python :: 3.11", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", ], - python_requires=">=3.9", + python_requires=">=3.8", entry_points={ "console_scripts": [ "pybalt=pybalt.__main__:main", @@ -35,4 +35,3 @@ def readme(): ], }, ) -