[workflows/ci.yml] Fix install nose for Jython
authorSergey M․ <dstftw@gmail.com>
Sat, 24 Apr 2021 16:52:16 +0000 (23:52 +0700)
committerSergey M․ <dstftw@gmail.com>
Sat, 24 Apr 2021 16:52:16 +0000 (23:52 +0700)
.github/workflows/ci.yml

index a9dc47a71606b3b47653c4e4866ec2bfdc8ff0de..97b50aedcac8213306fa24c911f6da2bd9855fc9 100644 (file)
@@ -53,7 +53,14 @@ jobs:
         java -jar jython-installer.jar -s -d "$HOME/jython"
         echo "$HOME/jython/bin" >> $GITHUB_PATH
     - name: Install nose
+      if: ${{ matrix.python-impl != 'jython' }}
       run: pip install nose
+    - name: Install nose (Jython)
+      if: ${{ matrix.python-impl == 'jython' }}
+      # Working around deprecation of support for non-SNI clients at PyPI CDN (see https://status.python.org/incidents/hzmjhqsdjqgb)
+      run: |
+        wget https://files.pythonhosted.org/packages/99/4f/13fb671119e65c4dce97c60e67d3fd9e6f7f809f2b307e2611f4701205cb/nose-1.3.7-py2-none-any.whl
+        pip install nose-1.3.7-py2-none-any.whl
     - name: Run tests
       continue-on-error: ${{ matrix.ytdl-test-set == 'download' || matrix.python-impl == 'jython' }}
       env: