We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 73f5c19 commit b7f07e9Copy full SHA for b7f07e9
2 files changed
.github/conda-env/build-env.yml
@@ -1,4 +1,6 @@
1
name: build-env
2
dependencies:
3
- - boa
4
- - numpy!=1.23.0
+ - conda-build
+ - conda-verify
5
+ # - boa # re-enable when boa is compatible with mamba 1.0 and Python 3.11
6
+ - numpy !=1.23.0
.github/workflows/slycot-build-and-test.yml
@@ -168,7 +168,7 @@ jobs:
168
run: |
169
set -e
170
numpyversion=$(python -c 'import numpy; print(numpy.version.version)')
171
- conda mambabuild --python "${{ matrix.python }}" --numpy $numpyversion conda-recipe
+ conda build --python "${{ matrix.python }}" --numpy $numpyversion conda-recipe
172
# preserve directory structure for custom conda channel
173
find "${CONDA_PREFIX}/conda-bld" -maxdepth 2 -name 'slycot*.tar.bz2' | while read -r conda_pkg; do
174
conda_platform=$(basename $(dirname "${conda_pkg}"))
0 commit comments