Skip to content

Commit 66934e0

Browse files
committed
minor bug fixes for deploy
1 parent 08a8b83 commit 66934e0

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

appveyor.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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%

ci/deploy_anaconda.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
import re
44
import conda_build.api
55
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')))
78
py_patt = re.compile('py\d\d')
89
repl = 'py' + os.getenv('PYTHON_VERSION').replace('.', '')
910
fnames = [py_patt.sub(repl, f) for f in fnames]

0 commit comments

Comments
 (0)