diff --git a/.scripts/build_steps.sh b/.scripts/build_steps.sh index 84431a6..a6b09f6 100755 --- a/.scripts/build_steps.sh +++ b/.scripts/build_steps.sh @@ -33,9 +33,9 @@ CONDARC mamba install --update-specs --yes --quiet --channel conda-forge \ - conda-build pip boa conda-forge-ci-setup=3 "py-lief<0.12" + conda-build pip boa conda-forge-ci-setup=3 mamba update --update-specs --yes --quiet --channel conda-forge \ - conda-build pip boa conda-forge-ci-setup=3 "py-lief<0.12" + conda-build pip boa conda-forge-ci-setup=3 # set up the condarc setup_conda_rc "${FEEDSTOCK_ROOT}" "${RECIPE_ROOT}" "${CONFIG_FILE}" diff --git a/README.md b/README.md index a220dba..432bcb4 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,12 @@ -About distributed -================= +About distributed-feedstock +=========================== + +Feedstock license: [BSD-3-Clause](https://github.com/conda-forge/distributed-feedstock/blob/main/LICENSE.txt) Home: https://distributed.dask.org Package license: BSD-3-Clause -Feedstock license: [BSD-3-Clause](https://github.com/conda-forge/distributed-feedstock/blob/main/LICENSE.txt) - Summary: Distributed scheduler for Dask Development: https://github.com/dask/distributed diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 835bb4c..d27993c 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -1,4 +1,6 @@ -{% set version = "2023.3.2" %} +{% set version = "2023.3.2.1" %} +{% set version_split = version.split('.') %} +{% set dask_core_version = version_split[:3] | join('.') if version_split | length == 4 else version %} package: @@ -7,7 +9,7 @@ package: source: url: https://pypi.io/packages/source/d/distributed/distributed-{{ version }}.tar.gz - sha256: 3f0b4ce73289583a27376672f67895e041c71d9a6e901b4f4cc4a95dd81ec349 + sha256: f40c4578622a15261bb59676ca8d7024f7d108aecc58406a5482bdfb7e69ce99 build: number: 0 @@ -23,7 +25,7 @@ requirements: host: - python >=3.8 - pip - - dask-core {{ version }} + - dask-core {{ dask_core_version }} run: - python >=3.8 - click >=8.0