-
Notifications
You must be signed in to change notification settings - Fork 922
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* More flexible pinning of Jupyter optional dependencies See #2276. Signed-off-by: Juan Luis Cano Rodríguez <[email protected]> * Add Jupyter changes to release notes Signed-off-by: Juan Luis Cano Rodríguez <[email protected]> * Add future note about problematic test code Signed-off-by: Juan Luis Cano Rodríguez <[email protected]> * Restore notebook dependency Signed-off-by: Juan Luis Cano Rodríguez <[email protected]> * Restore ipython lower bound Signed-off-by: Juan Luis Cano Rodríguez <[email protected]> * Update Jupyter liveness test Signed-off-by: Juan Luis Cano Rodríguez <[email protected]> * Add small pause after server aliveness check Signed-off-by: Juan Luis Cano Rodríguez <[email protected]> --------- Signed-off-by: Juan Luis Cano Rodríguez <[email protected]>
- Loading branch information
1 parent
c30b94b
commit 543fa8b
Showing
4 changed files
with
12 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 3 additions & 5 deletions
8
features/steps/test_starter/{{ cookiecutter.repo_name }}/requirements.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 3 additions & 6 deletions
9
kedro/templates/project/{{ cookiecutter.repo_name }}/requirements.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,10 @@ | ||
black~=22.0 | ||
ipython~=8.10; python_version >= '3.8' | ||
jupyter~=1.0 | ||
jupyterlab_server>=2.11.1, <2.16.0 | ||
jupyterlab~=3.0, <3.6.0 | ||
ipython>=8.10 | ||
jupyterlab>=3.0 | ||
notebook | ||
kedro~={{ cookiecutter.kedro_version }} | ||
kedro-telemetry>=0.3.1 | ||
pytest-cov~=3.0 | ||
pytest-mock>=1.7.1, <2.0 | ||
pytest~=7.2 | ||
ruff~=0.0.290 | ||
# Pin problematic traitlets release - https://github.com/jupyter/notebook/issues/7048 | ||
traitlets<5.10.0 |