Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update
numpy
version specifier (#480)
This PR updates the `numpy` version specifier for `cucim`. It was previously updated in [this commit](043810a) to enable publishing Python `3.10` packages. However, since there was no maximum version in that specifier, `conda` was picking up the latest version of `numpy` (`1.24.1`) which is incompatible with `cudf`'s version of `numba` ([`numba>=0.56.2`](https://github.com/rapidsai/cudf/blob/36b07f13480d8f7ba18274cb3a63f06855d848ff/conda/recipes/cudf/meta.yaml#L52)). For instance, if you try to run this: `mamba create -n test 'numba>=0.56.2' 'numpy>=1.24.1'`, it will fail to solve. Running with the new version specifier in this PR does solve: `mamba create -n test 'numba>=0.56.2' 'numpy>=1.21.3,<1.24'`. Therefore, this maximum version limit seems necessary for `cucim` to be compatible with the rest of RAPIDS. Authors: - AJ Schmidt (https://github.com/ajschmidt8) Approvers: - Ray Douglass (https://github.com/raydouglass) URL: #480
- Loading branch information