Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Install numba & numbagg in upstream install #9171

Closed
wants to merge 3 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 20 additions & 17 deletions ci/install-upstream-wheels.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,25 +8,26 @@ else
conda=conda
fi

# temporarily (?) remove numbagg and numba
$conda remove -y numba numbagg sparse
# temporarily (?) remove sparse
$conda remove -y sparse
# temporarily remove numexpr
$conda remove -y numexpr
# temporarily remove backends
$conda remove -y cf_units hdf5 h5py netcdf4 pydap
# forcibly remove packages to avoid artifacts
$conda remove -y --force \
numpy \
scipy \
pandas \
bottleneck \
cftime \
distributed \
flox \
fsspec \
zarr \
cftime \
numbagg \
numpy \
packaging \
bottleneck \
flox
# pint
pandas \
scipy \
zarr
# pint

# to limit the runtime of Upstream CI
python -m pip install \
Expand All @@ -50,20 +51,22 @@ python -m pip install \
pyarrow
# manually install `pint` to pull in new dependencies
python -m pip install --upgrade pint

python -m pip install \
--no-deps \
--upgrade \
git+https://github.com/dask/dask \
git+https://github.com/dask/dask-expr \
git+https://github.com/dask/distributed \
git+https://github.com/zarr-developers/zarr.git@main \
git+https://github.com/Unidata/cftime \
git+https://github.com/pypa/packaging \
git+https://github.com/dgasmith/opt_einsum \
git+https://github.com/h5netcdf/h5netcdf \
git+https://github.com/hgrecco/pint \
git+https://github.com/pydata/bottleneck \
git+https://github.com/intake/filesystem_spec \
git+https://github.com/numbagg/numbagg \
git+https://github.com/pydata/bottleneck \
git+https://github.com/pypa/packaging \
git+https://github.com/SciTools/nc-time-axis \
git+https://github.com/Unidata/cftime \
git+https://github.com/xarray-contrib/flox \
git+https://github.com/h5netcdf/h5netcdf \
git+https://github.com/dgasmith/opt_einsum
# git+https://github.com/pydata/sparse
git+https://github.com/zarr-developers/zarr.git@main
# git+https://github.com/pydata/sparse
Loading