From 547327c8d53059131bd0b06d7fb4cadec581115f Mon Sep 17 00:00:00 2001 From: Kiersten Stokes Date: Tue, 1 Feb 2022 22:24:42 -0600 Subject: [PATCH] Fix inconsistent dependency version caps (#2431) --- setup.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index dcfc15443..054a183f7 100644 --- a/setup.py +++ b/setup.py @@ -77,14 +77,14 @@ 'entrypoints>=0.3', 'jinja2>=2.11', 'jsonschema>=3.2.0', - 'jupyter_core>=4.0,<5.0', + 'jupyter_core>=4.0', 'jupyter_client>=6.1.7', 'jupyter_server>=1.7.0', 'jupyterlab>=3.0.17', 'jupyterlab-git~=0.32', 'jupyterlab-lsp>=3.8.0', 'jupyter-resource-usage>=0.5.1', - 'minio>=7.0.0,<8.0.0', + 'minio>=7.0.0', 'nbclient>=0.5.1', 'nbconvert>=5.6.1', 'nbdime~=3.1', @@ -92,8 +92,8 @@ 'networkx>=2.5.1', 'papermill>=2.1.3', 'python-lsp-server[all]>=1.1.0', - 'pyyaml>=5.3.1,<6.0', - 'requests>=2.25.1,<3.0', + 'pyyaml>=5.3.1', + 'requests>=2.25.1', 'rfc3986-validator>=0.1.1', 'tornado>=6.1.0', 'traitlets>=4.3.2',