Skip to content

Commit

Permalink
Fixed ipywidgets comm error(opengeos#396)
Browse files Browse the repository at this point in the history
  • Loading branch information
giswqs authored Mar 22, 2023
1 parent ad99788 commit 4e2aa66
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions leafmap/deck.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
from .osm import *
from .leafmap import basemaps
from . import examples
import ipykernel.ipkernel

try:
import pydeck as pdk
Expand Down
1 change: 1 addition & 0 deletions leafmap/foliumap.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
import folium
import folium.plugins as plugins
from box import Box
import ipykernel.ipkernel
from .common import *
from .legends import builtin_legends
from .basemaps import xyz_to_folium
Expand Down
1 change: 1 addition & 0 deletions leafmap/heremap.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
import requests
import warnings
import ipywidgets as widgets
import ipykernel.ipkernel
from box import Box
from .basemaps import xyz_to_heremap
from .common import shp_to_geojson, gdf_to_geojson, vector_to_geojson, random_string
Expand Down
1 change: 1 addition & 0 deletions leafmap/kepler.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import sys
import requests
import ipywidgets as widgets
import ipykernel.ipkernel
import pandas as pd
from IPython.display import display, HTML
from .common import *
Expand Down
1 change: 1 addition & 0 deletions leafmap/leafmap.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import os
import ipyleaflet
import ipykernel.ipkernel
from box import Box
from IPython.display import display
from .basemaps import xyz_to_leaflet
Expand Down
1 change: 1 addition & 0 deletions leafmap/plotlymap.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
import numpy as np
import pandas as pd
import ipywidgets as widgets
import ipykernel.ipkernel
from .basemaps import xyz_to_plotly
from .common import *
from .osm import *
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ gdown
geojson
ipyevents
ipyfilechooser>=0.6.0
ipykernel
ipyleaflet>=0.17.0
ipywidgets<8.0.0
matplotlib
Expand Down

0 comments on commit 4e2aa66

Please sign in to comment.