mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2025-08-22 22:34:01 -07:00
refactoring
This commit is contained in:
parent
ecce5797ae
commit
6c10dabd3f
2 changed files with 2 additions and 2 deletions
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
@ -56,7 +56,7 @@ jobs:
|
|||
if: ${{ matrix.python-impl != 'jython' }}
|
||||
run: pip install nose
|
||||
- name: Install yourbase
|
||||
if: ${{ matrix.python-version > 3.5 and matrix.python-version < 4.0}}
|
||||
if: ${{ matrix.python-version > 3.5 & matrix.python-version < 4.0}}
|
||||
run: pip install yourbase; pip install --force-reinstall coverage==6.1
|
||||
- name: Install nose (Jython)
|
||||
if: ${{ matrix.python-impl == 'jython' }}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
import sys
|
||||
|
||||
|
||||
if sys.version[0:3] > '3.5':
|
||||
if sys.version[0:3] > '3.5' and sys.version[0:3] < '4.0':
|
||||
import unittest
|
||||
import yourbase
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue