Skip to content

Commit 0fa6e95

Browse files
committed
try this again
1 parent b5416cc commit 0fa6e95

File tree

5 files changed

+7
-11
lines changed

5 files changed

+7
-11
lines changed

.appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ install:
3939
- cmd: appveyor-retry conda.exe update --yes --quiet conda
4040

4141

42-
- cmd: appveyor-retry conda.exe install --yes --quiet conda-forge-pinning conda-forge-ci-setup=1.* networkx conda-build
42+
- cmd: appveyor-retry conda.exe install --yes --quiet conda-forge-pinning conda-forge-ci-setup=1.* networkx conda-build>=3.16
4343

4444
- cmd: appveyor-retry run_conda_forge_build_setup
4545

.circleci/build_steps.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ conda clean --lock
4040
# Ensure that `noarch` exists otherwise `conda` won't think this channel is valid.
4141
conda index /home/conda/staged-recipes/build_artifacts/noarch
4242

43-
conda install --yes --quiet conda-forge-ci-setup=1.* conda-forge-pinning networkx conda-build
43+
conda install --yes --quiet conda-forge-ci-setup=1.* conda-forge-pinning networkx conda-build>=3.16
4444
source run_conda_forge_build_setup
4545

4646
# yum installs anything from a "yum_requirements.txt" file that isn't a blank line or comment.

.travis_scripts/build_all

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ echo ""
2929
echo "Configuring conda."
3030
conda config --add channels conda-forge
3131
conda config --set show_channel_urls true
32-
conda install --yes --quiet conda-forge-ci-setup=1.* conda-forge-pinning networkx conda-build
32+
conda install --yes --quiet conda-forge-ci-setup=1.* conda-forge-pinning networkx conda-build>=3.16
3333
source run_conda_forge_build_setup
3434

3535
# Find the recipes from master in this PR and remove them.

recipes/camb/install-camb.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ SHAREDIR=${PREFIX}/share/camb
55

66
mkdir -p ${BINDIR} ${SHAREDIR} || true
77
cp ${SRC_DIR}/camb ${BINDIR}/
8-
cp ${SRC_DIR}/HighLExtrapTemplate_lenspotentialCls.dat ${SHAREDIR}/
8+
# cp ${SRC_DIR}/HighLExtrapTemplate_lenspotentialCls.dat ${SHAREDIR}/

recipes/camb/meta.yaml

+3-7
Original file line numberDiff line numberDiff line change
@@ -28,16 +28,12 @@ requirements:
2828
outputs:
2929
- name: libcamb
3030
script: install-libcamb.sh
31-
requirements:
32-
build:
33-
- {{ compiler('c') }}
34-
- {{ compiler('cxx') }}
35-
- {{ compiler('fortran') }}
36-
- git
37-
- make
3831

3932
- name: camb
4033
script: install-camb.sh
34+
requirements:
35+
run:
36+
- {{ pin_subpackage('libxgboost', exact=True) }}
4137
test:
4238
files:
4339
- params.ini

0 commit comments

Comments
 (0)