Merge pull request #3002 from takluyver/jcore-ensure-dir

Switch to jupyter_core implementation of ensure_dir_exists
This commit is contained in:
Steven Silvester 2017-10-31 12:34:03 -05:00 committed by GitHub
commit f3c93cf37e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -24,7 +24,7 @@ from jupyter_core.paths import (
jupyter_data_dir, jupyter_config_path, jupyter_path,
SYSTEM_JUPYTER_PATH, ENV_JUPYTER_PATH,
)
from ipython_genutils.path import ensure_dir_exists
from jupyter_core.utils import ensure_dir_exists
from ipython_genutils.py3compat import string_types, cast_unicode_py2
from ipython_genutils.tempdir import TemporaryDirectory
from ._version import __version__

View File

@ -12,7 +12,7 @@ from .checkpoints import (
)
from .fileio import FileManagerMixin
from ipython_genutils.path import ensure_dir_exists
from jupyter_core.utils import ensure_dir_exists
from ipython_genutils.py3compat import getcwd
from traitlets import Unicode

View File

@ -147,7 +147,7 @@ install_requires = [
'tornado>=4',
'ipython_genutils',
'traitlets>=4.2.1',
'jupyter_core',
'jupyter_core>=4.4.0',
'jupyter_client',
'nbformat',
'nbconvert',