From 4bfc04c22517d1938983fb680396d64407098102 Mon Sep 17 00:00:00 2001 From: yuvipanda Date: Wed, 27 Jun 2018 00:29:42 -0700 Subject: [PATCH] Add escapism as a package dependency --- setup.py | 5 ++++- tljh/installer.py | 1 - 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 4def64b..07c630b 100644 --- a/setup.py +++ b/setup.py @@ -9,5 +9,8 @@ setup( author_email='yuvipanda@gmail.com', license='3 Clause BSD', packages=find_packages(), - include_package_data=True + include_package_data=True, + install_requires=[ + 'escapism==1.*' + ] ) diff --git a/tljh/installer.py b/tljh/installer.py index 4029ba1..02980f1 100644 --- a/tljh/installer.py +++ b/tljh/installer.py @@ -35,7 +35,6 @@ def ensure_jupyterhub_package(prefix): conda.ensure_pip_packages(prefix, [ 'jupyterhub-dummyauthenticator==0.3.1', 'jupyterhub-systemdspawner==0.9.12', - 'escapism' ])