From dd5145a58f029add4425afc2a38c8d21a2478a02 Mon Sep 17 00:00:00 2001 From: Qiusheng Wu Date: Wed, 14 Jun 2023 22:29:12 -0400 Subject: [PATCH 1/3] Remove gemgis --- docs/index.ipynb | 7 ------- requirements.txt | 2 +- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/docs/index.ipynb b/docs/index.ipynb index 0d2a4c4..ed98798 100644 --- a/docs/index.ipynb +++ b/docs/index.ipynb @@ -2,7 +2,6 @@ "cells": [ { "cell_type": "markdown", - "id": "c84f12fa-0c16-4932-b54b-d9e49f2d3fcc", "metadata": {}, "source": [ "# Welcome to geospatial\n", @@ -41,9 +40,7 @@ ] }, { - "attachments": {}, "cell_type": "markdown", - "id": "ba39b6e5-cc41-420f-8bbb-58a3bd87bc12", "metadata": {}, "source": [ "## Conda-forge recipe\n", @@ -63,7 +60,6 @@ " - eomaps\n", " - folium >=0.12.1\n", " - geemap >=0.13.7\n", - " - gemgis\n", " - geoalchemy2\n", " - geocube\n", " - geopandas >=0.10.2\n", @@ -120,7 +116,6 @@ }, { "cell_type": "markdown", - "id": "e8dfc9aa-d549-4efe-bb12-2b5daf2d5a2b", "metadata": {}, "source": [ "## Suggestions for adding packages to geospatial\n", @@ -136,7 +131,6 @@ }, { "cell_type": "markdown", - "id": "0bd5c125-8f27-4089-9b17-6ee2453885b8", "metadata": {}, "source": [ "## Installed packages\n", @@ -147,7 +141,6 @@ { "cell_type": "code", "execution_count": 1, - "id": "6f4d1018-f112-4b73-9242-ba2610a1b8bf", "metadata": {}, "outputs": [ { diff --git a/requirements.txt b/requirements.txt index 209f91e..3fd997c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -15,7 +15,7 @@ eoreader folium>=0.12.1 fiona geemap>=0.13.7 -gemgis +# gemgis geoalchemy2 geocube geopandas From 8e9ffaeb9bfa06af68871d0803461da4a1068bfb Mon Sep 17 00:00:00 2001 From: Qiusheng Wu Date: Wed, 14 Jun 2023 23:17:00 -0400 Subject: [PATCH 2/3] Fix win error --- .github/workflows/windows.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index dbcac27..2f45bba 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -27,5 +27,6 @@ jobs: run: | python -m pip install --upgrade pip pip install --no-cache-dir Cython + pip install matplotlib==3.2.1 pip install -r requirements.txt - pip install . \ No newline at end of file + pip install . From 5b462f0857e980ee56f368ec0d662b2d502862ff Mon Sep 17 00:00:00 2001 From: Qiusheng Wu Date: Wed, 14 Jun 2023 23:32:55 -0400 Subject: [PATCH 3/3] Removed cython --- .github/workflows/windows.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 2f45bba..a573b01 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -26,7 +26,5 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install --no-cache-dir Cython - pip install matplotlib==3.2.1 pip install -r requirements.txt pip install .