Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion ci/asv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dependencies:
- healpix
- netcdf4
- numba
- numpy<2.3
- numpy<2.4
- pandas
- pathlib
- pre_commit
Expand Down
2 changes: 1 addition & 1 deletion ci/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ dependencies:
- cmocean
- netcdf4
- numba
- numpy<2.3
- numpy<2.4
- pathlib
- pre_commit
- pytest
Expand Down
2 changes: 1 addition & 1 deletion ci/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ dependencies:
- matplotlib-inline
- netcdf4
- numba
- numpy<2.3
- numpy<2.4
- pandas
- pathlib
- pre_commit
Expand Down
4 changes: 2 additions & 2 deletions ci/install-upstream.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ pip uninstall -y \
conda list

# if available install from scientific-python nightly wheels
# constrain numpy to <=2.3 until numba supports newer versions
# constrain numpy to <2.4 until numba supports newer versions
# use stable pandas (not nightly) due to geopandas incompatibility with pandas nightly internals
# (see: https://github.com/UXARRAY/uxarray/issues/1414)
python -m pip install \
'numpy<=2.3' \
'numpy<2.4' \
'pandas>=2.0.0'

python -m pip install \
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ dependencies = [
"matplotlib-inline",
"netcdf4",
"numba",
"numpy<2.3",
"numpy<2.4",
"pandas",
"pyarrow",
"requests",
Expand Down
Loading