Skip to content

Commit

Permalink
Fix conda build dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ianthomas23 committed Aug 10, 2022
1 parent c9bd656 commit b995d4a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ jobs:
run: |
doit package_upload --token=$CONDA_UPLOAD_TOKEN --label=dev --label=main
pip_build:
if: ${{ false }} # disable for now
name: Build PyPI Packages
runs-on: 'ubuntu-latest'
timeout-minutes: 60
Expand Down
2 changes: 1 addition & 1 deletion conda.recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ requirements:
run:
- python {{ sdata['python_requires'] }}
{% for dep in sdata.get('install_requires',{}) %}
- {{ dep if dep != 'dask' else 'dask-core'}}
- {{ dep if dep != 'dask[complete]' else 'dask-core'}}
{% endfor %}
# adding pyct here is temporary (this conda recipe template will disappear when new pyctdev is released)
- pyct
Expand Down

0 comments on commit b995d4a

Please sign in to comment.