Skip to content

Commit

Permalink
Fix windows build error (#34)
Browse files Browse the repository at this point in the history
* Fix windows build error

* Fix win build issue

* Change matplotlib

* Add Cython
  • Loading branch information
giswqs authored Jul 9, 2023
1 parent 4e9673e commit d085c01
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 8 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,18 @@ jobs:
uses: conda-incubator/setup-miniconda@v2
with:
auto-activate-base: true
python-version: "3.10"
python-version: 3.9
- name: Install GDAL
run: conda install -c conda-forge gdal --yes
run: |
conda install -c conda-forge gdal --yes
- name: Test GDAL installation
run: |
python -c "from osgeo import gdal"
gdalinfo --version
- name: Install dependencies
run: |
pip install --upgrade setuptools
python -m pip install --upgrade pip
pip install --no-cache-dir Cython
pip install -r requirements.txt
pip install .
12 changes: 6 additions & 6 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ easystac
eemont
# eomaps
eoreader
folium>=0.12.1
fiona
geemap>=0.13.7
folium>=0.12.1
geemap>=0.24.0
# gemgis
geoalchemy2
geocube
Expand All @@ -29,9 +29,9 @@ ipyleaflet
ipyvtklink
keplergl
laspy
leafmap>=0.9.3
leafmap>=0.22.0
# lidar
localtileserver>=0.5.8
localtileserver>=0.6.1
mapboxgl
mapclassify
mapwidget
Expand All @@ -49,10 +49,10 @@ plotly
proplot
psycopg2
pydeck
pygis>=0.3.1
pygis>=0.6.0
pyntcloud
pyproj
# pysal
pysal
pyshp
pystac-client
# pyvista
Expand Down

0 comments on commit d085c01

Please sign in to comment.