File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -100,6 +100,13 @@ jobs:
100100 uses : actions/setup-python@v2
101101 with :
102102 python-version : ${{ matrix.python }}
103+ - name : Install Dependencies
104+ run : |
105+ sudo apt-get update
106+ sudo apt-get -y -q install ffmpeg libavcodec-extra
107+ python -m pip install --upgrade pip setuptools wheel
108+ pip3 install -q -r requirements.txt
109+ pip list
103110 - name : Pre-install legacy
104111 if : ${{ matrix.framework == 'legacy' }}
105112 run : |
@@ -118,13 +125,6 @@ jobs:
118125 run : |
119126 pip install scikit-learn==${{ matrix.scikit-learn }}
120127 pip list
121- - name : Install Dependencies
122- run : |
123- sudo apt-get update
124- sudo apt-get -y -q install ffmpeg libavcodec-extra
125- python -m pip install --upgrade pip setuptools wheel
126- pip3 install -q -r requirements.txt
127- pip list
128128 - name : Run ${{ matrix.name }} Tests
129129 run : ./run_tests.sh ${{ matrix.framework }}
130130 style :
You can’t perform that action at this time.
0 commit comments