From 4c072dcf51cede70ca41721b811ad9b3581bdd84 Mon Sep 17 00:00:00 2001 From: Jason Grout Date: Fri, 30 Oct 2020 10:50:10 -0700 Subject: [PATCH] Remove unused ipython_genutils imports. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Turns out we did not require the package, so we don’t need to eliminate the dependency. --- jupyter_core/paths.py | 1 - jupyter_core/tests/test_paths.py | 1 - 2 files changed, 2 deletions(-) diff --git a/jupyter_core/paths.py b/jupyter_core/paths.py index 56ad7c0..5a654ae 100644 --- a/jupyter_core/paths.py +++ b/jupyter_core/paths.py @@ -16,7 +16,6 @@ import warnings from contextlib import contextmanager -from ipython_genutils import py3compat pjoin = os.path.join diff --git a/jupyter_core/tests/test_paths.py b/jupyter_core/tests/test_paths.py index 3e15fee..cc86011 100644 --- a/jupyter_core/tests/test_paths.py +++ b/jupyter_core/tests/test_paths.py @@ -19,7 +19,6 @@ secure_write, is_hidden, is_file_hidden ) from tempfile import TemporaryDirectory -from ipython_genutils.testing.decorators import skip_if_not_win32, skip_win32 from .mocking import darwin, windows, linux pjoin = os.path.join