From e3a176a0b1df1862f430d719d17a57afc552531f Mon Sep 17 00:00:00 2001 From: marceloprates Date: Mon, 13 Feb 2023 15:57:13 -0300 Subject: [PATCH] Removed ipykernel dependency from requirements.txt due to dependency conflicts --- prettymaps/draw.py | 5 +++-- requirements.txt | 1 - 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/prettymaps/draw.py b/prettymaps/draw.py index d63a8bb..71d4154 100644 --- a/prettymaps/draw.py +++ b/prettymaps/draw.py @@ -20,7 +20,7 @@ import re import os import json import yaml -import IPython +#import IPython import pathlib import warnings import matplotlib @@ -78,6 +78,7 @@ class Preset: """ params: dict + ''' def _ipython_display_(self): """ Implements the _ipython_display_() function for the Preset class. @@ -104,7 +105,7 @@ class Preset: params.iloc[1:, 2:] = '' IPython.display.display(IPython.display.Markdown(params.to_markdown())) - + ''' def transform_gdfs( gdfs: Dict[str, gp.GeoDataFrame], diff --git a/requirements.txt b/requirements.txt index 60f8357..b7ee372 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,3 @@ osmnx==1.1.2 Shapely>=1.8,<2.0 -ipykernel==5.3.4 pyyaml==6.0.0 \ No newline at end of file