-
Notifications
You must be signed in to change notification settings - Fork 228
Reinstall optional geopandas dependency on CI tests #1331
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
Changes from all commits
3185f1b
d2885c1
ee59033
35562cd
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -83,7 +83,7 @@ jobs: | |
# Install dependencies from conda-forge | ||
- name: Install dependencies | ||
run: | | ||
conda install ninja cmake libblas libcblas liblapack fftw gdal=3.2 geopandas \ | ||
conda install ninja cmake libblas libcblas liblapack fftw gdal geopandas \ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Unpinning gdal here should fix the failing GMT Dev Tests on Windows (that have been failing for months now, e.g. at https://github.com/GenericMappingTools/pygmt/runs/2811637685?check_suite_focus=true#step:16:18) by installing the GMT 6.3.0 dev version. However, this will need to wait until conda-forge/gmt-feedstock#154 is merged. |
||
ghostscript libnetcdf hdf5 zlib curl pcre make dvc | ||
pip install --pre numpy pandas xarray netCDF4 packaging \ | ||
ipython pytest-cov pytest-mpl pytest>=6.0 sphinx-gallery | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seems like
geopandas
on conda-forge split into two packages in conda-forge/geopandas-feedstock#90. There isgeopandas-base
(light version) andgeopandas
(full version). An option might be to installgeopandas-base
andfiona
(needed for doing I/O, c.f. #1000) instead of the fullgeopandas
package (which brings in stuff likertree
andmapclassify
that we probably don't need). Or we could keep things as is and just installgeopandas
since that's what most users would do.