Skip to content

Commit

Permalink
Add more packages (#40)
Browse files Browse the repository at this point in the history
* Add more packages

* Add xee

* Update python version
  • Loading branch information
giswqs committed Jan 18, 2024
1 parent 972f3aa commit 63ac59b
Show file tree
Hide file tree
Showing 6 changed files with 49 additions and 46 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docs-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.9
python-version: "3.11"
- name: Install GDAL
run: |
python -m pip install --upgrade pip
Expand Down Expand Up @@ -46,4 +46,4 @@ jobs:
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
timeout-minutes: 10
timeout-minutes: 10
4 changes: 2 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.9
python-version: "3.11"
- name: Install GDAL
run: |
python -m pip install --upgrade pip
Expand All @@ -30,4 +30,4 @@ jobs:
run: |
python -m unittest discover tests/
- run: pip install -r requirements_docs.txt
- run: mkdocs gh-deploy --force
- run: mkdocs gh-deploy --force
68 changes: 34 additions & 34 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
@@ -1,38 +1,38 @@
on:
push:
branches:
- master
pull_request:
branches:
- master
push:
branches:
- master
pull_request:
branches:
- master

name: macOS build
jobs:
test-macOS:
runs-on: ${{ matrix.os }}
name: ${{ matrix.os }} (${{ matrix.python-version}})
strategy:
fail-fast: false
matrix:
os: ["macOS-latest"]
python-version: ["3.10"]
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version}}
- name: Install GDAL
run: |
brew install gdal
- name: Test GDAL installation
run: |
gdalinfo --version
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install --no-cache-dir Cython
pip install -r requirements.txt
pip install .
test-macOS:
runs-on: ${{ matrix.os }}
name: ${{ matrix.os }} (${{ matrix.python-version}})
strategy:
fail-fast: false
matrix:
os: ["macOS-latest"]
python-version: ["3.11"]
steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version}}
- name: Install GDAL
run: |
brew install gdal
- name: Test GDAL installation
run: |
gdalinfo --version
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install --no-cache-dir Cython
pip install -r requirements.txt
pip install .
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
uses: conda-incubator/setup-miniconda@v2
with:
auto-activate-base: true
python-version: 3.9
python-version: "3.11"
- name: Install GDAL
run: |
conda install -c conda-forge gdal --yes
Expand Down
15 changes: 9 additions & 6 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,20 +1,22 @@
# --find-links https://girder.github.io/large_image_wheels GDAL
# cartopy; platform_platform != "Windows"
apache-sedona
bokeh
cenpy
contextily
cubo
dask-geopandas
datashader
duckdb
earthengine-api
earthpy
easystac
eemont
# eomaps
eoreader
fiona
folium>=0.12.1
geemap>=0.24.0
folium
geemap>=0.30.4
# gemgis
geoalchemy2
geocube
Expand All @@ -29,9 +31,10 @@ ipyleaflet
ipyvtklink
keplergl
laspy
leafmap>=0.22.0
leafmap>=0.30.1
# lidar
localtileserver>=0.6.1
localtileserver
lonboard
mapboxgl
mapclassify
mapwidget
Expand All @@ -49,7 +52,7 @@ plotly
proplot
psycopg2
pydeck
pygis>=0.6.0
pygis
pyntcloud
pyproj
pysal
Expand Down Expand Up @@ -77,8 +80,8 @@ whitebox
whiteboxgui
wxee
xarray
xarray_leaflet
xarray-spatial
xee
# xcube; python_version >= '3.9'
# xmovie
xyzservices

0 comments on commit 63ac59b

Please sign in to comment.