]> jfr.im git - yt-dlp.git/commitdiff
[build] Build Windows x86 version with py3.7
authorpukkandan <redacted>
Sat, 5 Jun 2021 19:17:18 +0000 (00:47 +0530)
committerpukkandan <redacted>
Wed, 9 Jun 2021 20:11:04 +0000 (01:41 +0530)
and remove redundant tests
Closes #390

:ci skip

Co-authored by: pukkandan, shirt-dev

.github/workflows/build.yml
.github/workflows/core.yml
.github/workflows/download.yml
yt_dlp/YoutubeDL.py
yt_dlp/update.py

index d4321da0dc7f084efb00361e0f40a42aa6fab28d..70c43f208d76051571c98bb22e560c9b27b4ba9f 100644 (file)
@@ -95,7 +95,8 @@ jobs:
 
     steps:
     - uses: actions/checkout@v2
-    - name: Set up Python
+    # 3.8 is used for Win7 support
+    - name: Set up Python 3.8
       uses: actions/setup-python@v2
       with:
           python-version: '3.8'
@@ -137,15 +138,16 @@ jobs:
 
     steps:
     - uses: actions/checkout@v2
-    - name: Set up Python 3.4.4 32-Bit
+    # 3.7 is used for Vista support. See https://github.com/yt-dlp/yt-dlp/issues/390
+    - name: Set up Python 3.7 32-Bit
       uses: actions/setup-python@v2
       with:
-          python-version: '3.4.4'
+          python-version: '3.7'
           architecture: 'x86'
     - name: Upgrade pip and enable wheel support
-      run: python -m pip install pip==19.1.1 setuptools==43.0.0 wheel==0.33.6
-    - name: Install Requirements for 32 Bit
-      run: pip install pyinstaller==3.5 mutagen==1.42.0 pycryptodome==3.9.4 pefile==2019.4.18
+      run: python -m pip install --upgrade pip setuptools wheel
+    - name: Install Requirements
+      run: pip install pyinstaller mutagen pycryptodome
     - name: Bump version
       id: bump_version
       run: python devscripts/update-version.py
index abf7739ebd77f4d706d2148703683bebbce0d934..be932275a2811b83a0bf052d538b95db746b57bc 100644 (file)
@@ -9,11 +9,13 @@ jobs:
       fail-fast: false
       matrix:
         os: [ubuntu-18.04]
-        python-version: [3.6, 3.7, 3.8, 3.9, pypy-3.6, pypy-3.7]
+        # py3.9 is in quick-test
+        python-version: [3.7, 3.8, pypy-3.6, pypy-3.7]
         run-tests-ext: [sh]
         include:
+        # atleast one of the tests must be in windows
         - os: windows-latest
-          python-version: 3.4  # Windows x86 build is still in 3.4
+          python-version: 3.6
           run-tests-ext: bat
     steps:
     - uses: actions/checkout@v2
index 6b24ddd6b874be7cf667ffa0163569d618b9839a..9e650d2dc48ea2408cfa76537267733fbfbc7d82 100644 (file)
@@ -9,11 +9,11 @@ jobs:
       fail-fast: true
       matrix:
         os: [ubuntu-18.04]
-        python-version: [3.6, 3.7, 3.8, 3.9, pypy-3.6, pypy-3.7]
+        python-version: [3.7, 3.8, 3.9, pypy-3.6, pypy-3.7]
         run-tests-ext: [sh]
         include:
         - os: windows-latest
-          python-version: 3.4  # Windows x86 build is still in 3.4
+          python-version: 3.6
           run-tests-ext: bat
     steps:
     - uses: actions/checkout@v2
index 0edbb4119fb393132a7f2b6191d79f9fbfd17261..9ce9f537846ee4da786c98088c70bd92d2890c31 100644 (file)
@@ -472,8 +472,7 @@ def __init__(self, params=None, auto_init=True):
 
         if sys.version_info < (3, 6):
             self.report_warning(
-                'Support for Python version %d.%d have been deprecated and will break in future versions of yt-dlp! '
-                'Update to Python 3.6 or above' % sys.version_info[:2])
+                'Python version %d.%d is not supported! Please update to Python 3.6 or above' % sys.version_info[:2])
 
         def check_deprecated(param, option, suggestion):
             if self.params.get(param) is not None:
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: