File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change 88 strategy :
99 fail-fast : false
1010 matrix :
11- os : ["ubuntu-latest"] # , "macos-latest", "windows-latest"]
12- python-version : ["3.9"]
11+ os : ["ubuntu-latest", "macos-latest", "windows-latest"]
12+ python-version : ["3.9", "3.10", "3.11" ]
1313 steps :
1414 - uses : actions/checkout@v3
1515 - uses : conda-incubator/setup-miniconda@v2
2424 run : |
2525 conda install --file requirements.txt -y
2626
27- - name : Define a variable for site-packages location based on OS
27+ - name : Prepare extlibs
2828 shell : bash -el {0}
2929 run : |
3030 if [ ${{ matrix.os }} == 'windows-latest' ]; then
3333 SITE_PACKAGES_PATH=$CONDA_PREFIX/lib/python${{ matrix.python-version }}/site-packages
3434 fi
3535 mv $SITE_PACKAGES_PATH ./extlibs
36+ rm -rf ./extlibs/plotly* ./extlibs/pip* ./extlibs/setuptools* ./extlibs/plotly*
3637
37- # create a zip file with all the libraries
38+ # create a zip file with the extlibs
3839 - uses : vimtor/action-zip@v1
3940 with :
4041 files : extlibs
You can’t perform that action at this time.
0 commit comments