Skip to content

Commit

Permalink
More flexible pinning of Jupyter optional dependencies (#200)
Browse files Browse the repository at this point in the history
See kedro-org/kedro#2276
and kedro-org/kedro#3288

Signed-off-by: Juan Luis Cano Rodríguez <[email protected]>
  • Loading branch information
astrojuanlu authored Dec 20, 2023
1 parent e5da357 commit 030bbed
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 24 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
black~=22.0
ipython~=8.10; python_version >= '3.8'
jupyter~=1.0
jupyterlab~=3.0
ipython>=8.10
jupyterlab>=3.0
notebook
kedro~={{ cookiecutter.kedro_version }}
kedro-datasets[pandas.CSVDataset]>=1.0
kedro-airflow~=0.5
Expand Down
6 changes: 3 additions & 3 deletions databricks-iris/{{ cookiecutter.repo_name }}/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
black~=22.0
ipython~=8.10; python_version >= '3.8'
jupyter~=1.0
jupyterlab~=3.0
ipython>=8.10
jupyterlab>=3.0
notebook
kedro~={{ cookiecutter.kedro_version }}
kedro-datasets[spark.SparkDataset, pandas.ParquetDataset]>=1.0
kedro-telemetry>=0.3.1
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
black~=22.0
ipython>=7.31.1, <8.0; python_version < '3.8'
ipython~=8.10; python_version >= '3.8'
jupyter~=1.0
jupyterlab_server>=2.11.1
jupyterlab~=3.0
ipython>=8.10
jupyterlab>=3.0
notebook
kedro~={{ cookiecutter.kedro_version }}
kedro-datasets[pandas.CSVDataset, pandas.ExcelDataset, pandas.ParquetDataset, plotly.PlotlyDataset, plotly.JSONDataset, matplotlib.MatplotlibWriter]>=1.0
kedro-telemetry>=0.3.1
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
black~=22.0
ipython>=7.31.1, <8.0; python_version < '3.8'
ipython~=8.10; python_version >= '3.8'
jupyter~=1.0
jupyterlab_server>=2.11.1
jupyterlab~=3.0
ipython>=8.10
jupyterlab>=3.0
notebook
kedro~={{ cookiecutter.kedro_version }}
kedro-datasets[pandas.CSVDataset, pandas.ExcelDataset, pandas.ParquetDataset]>=1.0
kedro-telemetry>=0.3.1
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
black~=22.0
ipython~=8.10; python_version >= '3.8'
jupyter~=1.0
jupyterlab_server>=2.11.1
jupyterlab~=3.0
ipython>=8.10
jupyterlab>=3.0
notebook
kedro~={{ cookiecutter.kedro_version }}
kedro-datasets[pandas.CSVDataset, pandas.ExcelDataset, pandas.ParquetDataset, spark.SparkDataset, plotly.PlotlyDataset, plotly.JSONDataset, matplotlib.MatplotlibWriter]>=1.0
kedro-telemetry>=0.3.1
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
black~=22.0
ipython~=8.10; python_version >= '3.8'
jupyter~=1.0
jupyterlab_server>=2.11.1
jupyterlab~=3.0
ipython>=8.10
jupyterlab>=3.0
notebook
kedro~={{ cookiecutter.kedro_version }}
kedro-datasets[pandas.CSVDataset, pandas.ExcelDataset, pandas.ParquetDataset, spark.SparkDataset]>=1.0
kedro-telemetry>=0.3.1
Expand Down

0 comments on commit 030bbed

Please sign in to comment.