File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ install:
2828 - copy /y nul matplotlibrc
2929 - conda config --set always_yes yes --set changeps1 no
3030 - conda update -q conda
31+ - conda install conda-build anaconda-client
3132 # Useful for debugging any issues with conda
3233 - conda info -a
3334 - set ENVKEY=py%PYTHON_VERSION%_qt%QT_VERSION%
Original file line number Diff line number Diff line change 33import re
44import conda_build .api
55import subprocess as spr
6- fnames = list (conda_build .api .get_output_file_paths ('conda-recipe' ))
6+ fnames = list (conda_build .api .get_output_file_paths (
7+ os .path .join ('ci' , 'conda-recipe' )))
78py_patt = re .compile ('py\d\d' )
89repl = 'py' + os .getenv ('PYTHON_VERSION' ).replace ('.' , '' )
910fnames = [py_patt .sub (repl , f ) for f in fnames ]
You can’t perform that action at this time.
0 commit comments