We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08a8b83 commit 66934e0Copy full SHA for 66934e0
2 files changed
appveyor.yml
@@ -28,6 +28,7 @@ install:
28
- copy /y nul matplotlibrc
29
- conda config --set always_yes yes --set changeps1 no
30
- conda update -q conda
31
+ - conda install conda-build anaconda-client
32
# Useful for debugging any issues with conda
33
- conda info -a
34
- set ENVKEY=py%PYTHON_VERSION%_qt%QT_VERSION%
ci/deploy_anaconda.py
@@ -3,7 +3,8 @@
3
import re
4
import conda_build.api
5
import subprocess as spr
6
-fnames = list(conda_build.api.get_output_file_paths('conda-recipe'))
+fnames = list(conda_build.api.get_output_file_paths(
7
+ os.path.join('ci', 'conda-recipe')))
8
py_patt = re.compile('py\d\d')
9
repl = 'py' + os.getenv('PYTHON_VERSION').replace('.', '')
10
fnames = [py_patt.sub(repl, f) for f in fnames]
0 commit comments