Remove Python 3.6 support

Closes #3764
This commit is contained in:
pukkandan 2022-07-18 05:50:54 +05:30
parent 0b5583b112
commit 6929b41a21
No known key found for this signature in database
GPG key ID: 7EEE9E1E817D0A39
14 changed files with 24 additions and 58 deletions

View file

@ -584,7 +584,8 @@ class YoutubeDL:
for type_, stream in self._out_files.items_ if type_ != 'console'
})
MIN_SUPPORTED, MIN_RECOMMENDED = (3, 6), (3, 7)
# The code is left like this to be reused for future deprecations
MIN_SUPPORTED, MIN_RECOMMENDED = (3, 7), (3, 7)
current_version = sys.version_info[:2]
if current_version < MIN_RECOMMENDED:
msg = ('Support for Python version %d.%d has been deprecated. '