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:
28
28
- copy /y nul matplotlibrc
29
29
- conda config --set always_yes yes --set changeps1 no
30
30
- conda update -q conda
31
+ - conda install conda-build anaconda-client
31
32
# Useful for debugging any issues with conda
32
33
- conda info -a
33
34
- set ENVKEY=py%PYTHON_VERSION%_qt%QT_VERSION%
Original file line number Diff line number Diff line change 3
3
import re
4
4
import conda_build .api
5
5
import 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' )))
7
8
py_patt = re .compile ('py\d\d' )
8
9
repl = 'py' + os .getenv ('PYTHON_VERSION' ).replace ('.' , '' )
9
10
fnames = [py_patt .sub (repl , f ) for f in fnames ]
You can’t perform that action at this time.
0 commit comments