diff --git a/dev-requirements.txt b/dev-requirements.txt index dc3ea69..2e71f20 100644 --- a/dev-requirements.txt +++ b/dev-requirements.txt @@ -1,7 +1,7 @@ git+https://github.com/jupyterhub/the-littlest-jupyterhub git+https://github.com/plasmabio/tljh-repo2docker jupyterhub~=1.5 -notebook +notebook<7 pytest pytest-aiohttp pytest-asyncio diff --git a/tljh-plasma/setup.py b/tljh-plasma/setup.py index bb6b54a..5707509 100644 --- a/tljh-plasma/setup.py +++ b/tljh-plasma/setup.py @@ -6,5 +6,5 @@ entry_points={"tljh": ["tljh_plasma = tljh_plasma"]}, packages=find_packages(), include_package_data=True, - install_requires=["dockerspawner~=12.1", "tljh_repo2docker"], + install_requires=["dockerspawner~=12.1", "tljh_repo2docker", "sqlalchemy<2"], )