diff --git a/dev-requirements.txt b/dev-requirements.txt index a44982f..4a0a7e6 100644 --- a/dev-requirements.txt +++ b/dev-requirements.txt @@ -1,6 +1,6 @@ git+https://github.com/jupyterhub/the-littlest-jupyterhub jupyterhub~=1.5 -notebook +notebook<7 pytest pytest-aiohttp pytest-asyncio diff --git a/setup.py b/setup.py index f2f81d1..f0d62a7 100644 --- a/setup.py +++ b/setup.py @@ -6,5 +6,5 @@ entry_points={"tljh": ["tljh_repo2docker = tljh_repo2docker"]}, packages=find_packages(), include_package_data=True, - install_requires=["dockerspawner~=12.1", "jupyter_client~=6.1", "aiodocker~=0.19"], + install_requires=["dockerspawner~=12.1", "jupyter_client~=6.1", "aiodocker~=0.19", "sqlalchemy<2"], )