From d52a7f32ab9bb4f55fe259c97d2d3d6f01f1fb03 Mon Sep 17 00:00:00 2001 From: Merel Theisen <49397448+merelcht@users.noreply.github.com> Date: Thu, 18 May 2023 14:52:32 +0100 Subject: [PATCH] build: Relax Kedro bound for `kedro-datasets` (#140) * Less strict pin on Kedro for datasets Signed-off-by: Merel Theisen --- kedro-datasets/RELEASE.md | 2 ++ kedro-datasets/pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/kedro-datasets/RELEASE.md b/kedro-datasets/RELEASE.md index bd1d1e73c..2dbee5adc 100644 --- a/kedro-datasets/RELEASE.md +++ b/kedro-datasets/RELEASE.md @@ -4,6 +4,8 @@ * Added pandas 2.0 support. * Added SQLAlchemy 2.0 support (and dropped support for versions below 1.4). * Reduced constructor arguments for `APIDataSet` by replacing most arguments with a single constructor argument `load_args`. This makes it more consistent with other Kedro DataSets and the underlying `requests` API, and automatically enables the full configuration domain: stream, certificates, proxies, and more. +* Relaxed Kedro version pin to `>=0.16` + ## Bug fixes and other changes * Relaxed `delta-spark` upper bound to allow compatibility with Spark 3.1.x and 3.2.x. diff --git a/kedro-datasets/pyproject.toml b/kedro-datasets/pyproject.toml index 11cf1a157..457c18bc6 100644 --- a/kedro-datasets/pyproject.toml +++ b/kedro-datasets/pyproject.toml @@ -11,7 +11,7 @@ description = "Kedro-Datasets is where you can find all of Kedro's data connecto requires-python = ">=3.7, <3.11" license = {text = "Apache Software License (Apache 2.0)"} dependencies = [ - "kedro~=0.18.4", + "kedro>=0.16", ] dynamic = ["readme", "version", "optional-dependencies"]