Skip to content

Commit

Permalink
Relax the upper bound on jupyter_client(#1322)
Browse files Browse the repository at this point in the history
  • Loading branch information
deepyaman committed Mar 8, 2022
1 parent 0a3317c commit 74fbd75
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/source/03_tutorial/02_tutorial_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ flake8>=3.7.9, <4.0 # Used for linting code with `kedro lint`
ipython==7.0 # Used for an IPython session with `kedro ipython`
isort~=5.0 # Used for linting code with `kedro lint`
jupyter~=1.0 # Used to open a Kedro-session in Jupyter Notebook & Lab
jupyter_client>=5.1.0, <7.0 # Used to open a Kedro-session in Jupyter Notebook & Lab
jupyter_client>=5.1.0, <8.0 # Used to open a Kedro-session in Jupyter Notebook & Lab
jupyterlab~=3.0 # Used to open a Kedro-session in Jupyter Lab
kedro==0.17.7
nbstripout~=0.4 # Strips the output of a Jupyter Notebook and writes the outputless version to the original file
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ipython~=7.16.3; python_version == '3.6'
ipython>=7.31.1, <8.0; python_version > '3.6'
isort~=5.0
jupyter~=1.0
jupyter_client>=5.1, <7.0
jupyter_client>=5.1, <8.0
jupyterlab~=3.0
kedro[pandas.CSVDataSet]=={{ cookiecutter.kedro_version }}
kedro-telemetry~=0.1.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ipython~=7.16.3; python_version == '3.6'
ipython>=7.31.1, <8.0; python_version > '3.6'
isort~=5.0
jupyter~=1.0
jupyter_client>=5.1, <7.0
jupyter_client>=5.1, <8.0
jupyterlab~=3.0
kedro=={{ cookiecutter.kedro_version }}
kedro-telemetry~=0.1.0
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ dynaconf>=3.1.2,<4.0.0
fsspec>=2021.4, <=2022.1
gitpython~=3.0
jmespath>=0.9.5, <1.0
jupyter_client>=5.1, <7.0
jupyter_client>=5.1, <8.0
pip-tools~=6.4.0; python_version == '3.6'
pip-tools~=6.5; python_version > '3.6'
pluggy~=0.13.0
Expand Down

0 comments on commit 74fbd75

Please sign in to comment.