Skip to content

Commit 78106ff

Browse files
authored
Merge pull request #13 from domdfcoding/repo-helper-update
[repo-helper] Configuration Update
2 parents f080be1 + a71ae04 commit 78106ff

File tree

3 files changed

+14
-5
lines changed

3 files changed

+14
-5
lines changed

.github/actions_build_conda.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,8 @@ conda install anaconda-client
1616
conda info -a
1717

1818
conda config --add channels domdfcoding || exit 1
19-
2019
conda config --add channels conda-forge || exit 1
2120

22-
conda build conda -c domdfcoding -c conda-forge --output-folder conda/dist --skip-existing
21+
conda build conda -c domdfcoding -c conda-forge --output-folder conda/dist --skip-existing --numpy 1.16
2322

2423
exit 0

.github/dependabot.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# This file is managed by 'repo_helper'. Don't edit it directly.
2+
---
3+
version: 2
4+
updates:
5+
- package-ecosystem: pip
6+
directory: /
7+
schedule:
8+
interval: weekly
9+
reviewers:
10+
- domdfcoding

.github/workflows/conda_ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,16 +29,16 @@ jobs:
2929
python -m pip install --upgrade repo_helper
3030
# $CONDA is an environment variable pointing to the root of the miniconda directory
3131
$CONDA/bin/conda update -q conda
32+
$CONDA/bin/conda install conda-build
3233
3334
$CONDA/bin/conda config --add channels domdfcoding
34-
3535
$CONDA/bin/conda config --add channels conda-forge
3636
37-
3837
- name: "Build and install package"
3938
run: |
4039
# This mess is only necessary because conda won't fix it themselves
4140
# https://github.com/conda/conda/issues/1884
4241
4342
python -m repo_helper build --conda --out-dir conda-bld/noarch
44-
$CONDA/bin/conda install domdf_python_tools -c local -y || exit 1
43+
$CONDA/bin/conda index ./conda-bld || exit 1
44+
$CONDA/bin/conda install -c file://$(pwd)/conda-bld domdf_python_tools -y || exit 1

0 commit comments

Comments
 (0)