diff options
author | bashonly <88596187+bashonly@users.noreply.github.com> | 2024-10-23 06:33:50 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-23 06:33:50 +0000 |
commit | d784464399b600ba9516bbcec6286f11d68974dd (patch) | |
tree | 4058e9e4d72f6ac1d5b992f6a2fb725ae29183c8 /yt_dlp/__init__.py | |
parent | dd2e24446954246a2ec4d4a7e95531f52a14b351 (diff) |
Remove Python 3.8 support (#11321)
Closes #10086
Authored by: bashonly
Diffstat (limited to 'yt_dlp/__init__.py')
-rw-r--r-- | yt_dlp/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/yt_dlp/__init__.py b/yt_dlp/__init__.py index d976f5bbc..419090b9a 100644 --- a/yt_dlp/__init__.py +++ b/yt_dlp/__init__.py @@ -1,8 +1,8 @@ import sys -if sys.version_info < (3, 8): +if sys.version_info < (3, 9): raise ImportError( - f'You are using an unsupported version of Python. Only Python versions 3.8 and above are supported by yt-dlp') # noqa: F541 + f'You are using an unsupported version of Python. Only Python versions 3.9 and above are supported by yt-dlp') # noqa: F541 __license__ = 'The Unlicense' |