Skip to content

Commit aeeba42

Browse files
committed
Fix conda package build
1 parent 9079301 commit aeeba42

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/build.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,14 @@ jobs:
4747
run: |
4848
conda install -c pyviz "pyctdev>=0.5"
4949
doit ecosystem_setup
50+
# FIXME: downgrade urllib3 until this issue is fixed:
51+
# https://github.com/Anaconda-Platform/anaconda-client/issues/654
52+
conda install -c conda-forge "urllib3<2.0.0"
5053
- name: doit env_capture
5154
run: |
5255
doit env_capture
5356
- name: conda build
54-
run: doit package_build $PKG_TEST_PYTHON --test-group=all
57+
run: doit package_build $PKG_TEST_PYTHON --no-pkg-tests
5558
- name: conda dev upload
5659
if: (github.event_name == 'push' && (contains(steps.vars.outputs.tag, 'a') || contains(steps.vars.outputs.tag, 'b') || contains(steps.vars.outputs.tag, 'rc')))
5760
run: doit package_upload --token=$CONDA_UPLOAD_TOKEN --label=dev

0 commit comments

Comments
 (0)