Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pin to conda-build 2.1.17 #97

Merged
merged 1 commit into from
Jul 12, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ environment:
install:
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
- conda update -yq --all
- conda install -yq conda-build jinja2 anaconda-client
- conda install -yq conda-build==2.1.17 jinja2 anaconda-client
- conda config --add channels omnia
- conda config --add channels conda-forge
- powershell .\\devtools\\appveyor\\missing-headers.ps1
Expand Down
2 changes: 1 addition & 1 deletion devtools/docker-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ conda config --add channels omnia
# Move the conda-forge channel to the top
# Cannot just append omnia otherwise default would have higher priority
conda config --add channels conda-forge
conda install -yq conda\>=4.3 conda-build jinja2 anaconda-client
conda install -yq conda\>=4.3 conda-build==2.1.17 jinja2 anaconda-client

/io/conda-build-all -vvv --python $PY_BUILD_VERSION $UPLOAD -- /io/*

Expand Down
2 changes: 1 addition & 1 deletion devtools/osx-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ bash Miniconda3-latest-MacOSX-x86_64.sh -b -p $HOME/anaconda;
export PATH=$HOME/anaconda/bin:$PATH;
conda config --add channels omnia;
conda config --add channels conda-forge;
conda install -yq conda\>=4.3 conda-env conda-build jinja2 anaconda-client;
conda install -yq conda\>=4.3 conda-env conda-build==2.1.17 jinja2 anaconda-client;
conda config --show;

# Do this step last to make sure conda-build, conda-env, and conda updates come from the same channel first
Expand Down