Skip to content

Commit e3c9144

Browse files
authored
CI: fix nightly-deps env so nightlies of all relevant dependencies are used (#529)
Because geopandas-base is being installed via conda-forge, all it's dependencies (numpy, geopandas, shapely) are also already being installed from standard conda-forge. Because they are already installed when pip kicks in, the nightlies from scientific-python-nightly-wheels aren't actually installed... This PR changes the env so geopandas is also installed via pip, which solves above issue.
1 parent 22080e8 commit e3c9144

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ci/envs/nightly-deps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ channels:
55
dependencies:
66
- libgdal-core
77
- pytest
8-
- geopandas-base
98
- pip
109
- pip:
1110
- --pre --prefer-binary --index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple --extra-index-url https://pypi.fury.io/arrow-nightlies/ --extra-index-url https://pypi.org/simple
11+
- geopandas
1212
- numpy>=2.0.0.dev
1313
- shapely
1414
- pandas

0 commit comments

Comments
 (0)