]> jfr.im git - yt-dlp.git/blobdiff - yt_dlp/update.py
[build] Build Windows x86 version with py3.7
[yt-dlp.git] / yt_dlp / update.py
index c49c78d4b28606f1e6c232273fe26f8730a540a8..d3681b8323b5947650b392434e5179272cd2fe67 100644 (file)
@@ -89,13 +89,9 @@ def calc_sha256sum(path):
 
     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: