mirror of
https://github.com/LucBerge/yt-dlp.git
synced 2025-03-17 19:57:52 +03:00
[build] Build Windows x86 version with py3.7
and remove redundant tests Closes #390 :ci skip Co-authored by: pukkandan, shirt-dev
This commit is contained in:
parent
fd3c633d26
commit
0181adefc6
5 changed files with 17 additions and 18 deletions
|
@ -89,13 +89,9 @@ def run_update(ydl):
|
|||
|
||||
err = None
|
||||
if isinstance(globals().get('__loader__'), zipimporter):
|
||||
# We only support python 3.6 or above
|
||||
if sys.version_info < (3, 6):
|
||||
err = 'This is the last release of yt-dlp for Python version %d.%d! Please update to Python 3.6 or above' % sys.version_info[:2]
|
||||
pass
|
||||
elif hasattr(sys, 'frozen'):
|
||||
# Python 3.6 supports only vista and above
|
||||
if sys.getwindowsversion()[0] < 6:
|
||||
err = 'This is the last release of yt-dlp for your version of Windows. Please update to Windows Vista or above'
|
||||
pass
|
||||
else:
|
||||
err = 'It looks like you installed yt-dlp with a package manager, pip, setup.py or a tarball. Please use that to update'
|
||||
if err:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue