diff --git a/docs/source/data/kedro_io.md b/docs/source/data/kedro_io.md index 90afeaa132..6fdfefdd66 100644 --- a/docs/source/data/kedro_io.md +++ b/docs/source/data/kedro_io.md @@ -230,7 +230,7 @@ Currently, the following datasets support versioning: - `kedro_datasets.spark.SparkDataSet` - `kedro_datasets.yaml.YAMLDataSet` - `kedro_datasets.api.APIDataSet` -- `kedro_datasets.tensorflow.TensorFlowModelDataset` +- `kedro_datasets.tensorflow.TensorFlowModelDataSet` - `kedro_datasets.json.JSONDataSet` ```{note} diff --git a/docs/source/kedro_datasets.rst b/docs/source/kedro_datasets.rst index 999e726bb3..b8e9f5d442 100644 --- a/docs/source/kedro_datasets.rst +++ b/docs/source/kedro_datasets.rst @@ -38,13 +38,15 @@ kedro_datasets kedro_datasets.pillow.ImageDataSet kedro_datasets.plotly.JSONDataSet kedro_datasets.plotly.PlotlyDataSet + kedro_datasets.polars.CSVDataSet kedro_datasets.redis.PickleDataSet + kedro_datasets.snowflake.SnowparkTableDataSet kedro_datasets.spark.DeltaTableDataSet kedro_datasets.spark.SparkDataSet kedro_datasets.spark.SparkHiveDataSet kedro_datasets.spark.SparkJDBCDataSet kedro_datasets.svmlight.SVMLightDataSet - kedro_datasets.tensorflow.TensorFlowModelDataset + kedro_datasets.tensorflow.TensorFlowModelDataSet kedro_datasets.text.TextDataSet kedro_datasets.tracking.JSONDataSet kedro_datasets.tracking.MetricsDataSet diff --git a/setup.py b/setup.py index 274ffa2a3a..1d63d779cf 100644 --- a/setup.py +++ b/setup.py @@ -104,11 +104,7 @@ def _collect_requirements(requires): "sphinxcontrib-mermaid~=0.7.1", "myst-parser~=1.0.0", "Jinja2<3.1.0", - # https://github.com/kedro-org/kedro-plugins/issues/141 - # https://github.com/kedro-org/kedro-plugins/issues/143 - "kedro-datasets[api,biosequence,dask,geopandas,matplotlib,holoviews,networkx,pandas,pillow,polars,video,plotly,redis,spark,svmlight,yaml]==1.1.1", - "kedro-datasets[tensorflow]==1.1.1; platform_system != 'Darwin' or platform_machine != 'arm64'", - "tensorflow-macos~=2.0; platform_system == 'Darwin' and platform_machine == 'arm64'", + "kedro-datasets[all]~=1.4.0", ], "geopandas": _collect_requirements(geopandas_require), "matplotlib": _collect_requirements(matplotlib_require),