2020 strategy :
2121 matrix :
2222 operatingSystem : [ubuntu-latest]
23- pythonVersion : [3.8, 3. 9, "3.10"]
23+ pythonVersion : [3.9, "3.10"]
2424
2525 runs-on : ${{ matrix.operatingSystem }}
2626
7575 pip install .
7676 working-directory : raiwidgets
7777
78+ - name : Install fastai and latest spacy individually to fix conflicts
79+ shell : bash -l {0}
80+ run : |
81+ pip install fastai
82+ pip install --upgrade "spacy<4"
83+
7884 - name : Install vision dependencies
7985 shell : bash -l {0}
8086 run : |
96102 cat installed-requirements-dev.txt
97103 working-directory : raiwidgets
98104
99- - name : Upload requirements
105+ - if : ${{ (matrix.operatingSystem == 'windows-latest') && (matrix.pythonVersion == '3.9') }}
106+ name : Upload requirements
100107 uses : actions/upload-artifact@v4
101108 with :
102109 name : requirements-dev.txt
@@ -110,12 +117,12 @@ jobs:
110117 if : always()
111118 uses : actions/upload-artifact@v4
112119 with :
113- name : notebook-test-${{ matrix.operatingSystem }}-${{ matrix.pythonVersion }}
120+ name : ci- notebook-vision -test-${{ matrix.operatingSystem }}-${{ matrix.pythonVersion }}
114121 path : notebooks
115122
116123 - name : Upload e2e test screen shot
117124 if : always()
118125 uses : actions/upload-artifact@v4
119126 with :
120- name : raiwidgets-e2e- screen-shot
127+ name : raiwidgets-ci-notebook-vision- screen-shot-${{ matrix.operatingSystem }}-${{ matrix.pythonVersion }}
121128 path : dist/cypress
0 commit comments