Skip to content
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

Fix ipywidgets error #396

Merged
merged 1 commit into from
Mar 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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