Skip to content

Commit 1b2f4a3

Browse files
authored
chore(datasets): Add support to Python 3.13 to kedro-datasets (#1263)
* Run CI tests on Python 3.13 Signed-off-by: Laura Couto <[email protected]> * Change airflow version on pyproject.toml Signed-off-by: Laura Couto <[email protected]> * Typo Signed-off-by: Laura Couto <[email protected]> * Invalid syntax Signed-off-by: Laura Couto <[email protected]> * Bump airflow version Signed-off-by: Laura Couto <[email protected]> * Remove Airflow changes, keep this PR just for Datasets Signed-off-by: Laura Couto <[email protected]> * Update readme/release notes Signed-off-by: Laura Couto <[email protected]> * Bump lxml version to 5 Signed-off-by: Laura Couto <[email protected]> --------- Signed-off-by: Laura Couto <[email protected]>
1 parent d9bd3a7 commit 1b2f4a3

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

.github/workflows/kedro-datasets.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
strategy:
2626
matrix:
2727
os: [ ubuntu-latest, windows-latest ]
28-
python-version: [ "3.10", "3.11", "3.12" ]
28+
python-version: [ "3.10", "3.11", "3.12", "3.13" ]
2929
uses: ./.github/workflows/unit-tests.yml
3030
with:
3131
plugin: kedro-datasets

kedro-datasets/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<!-- Note that the contents of this file are also used in the documentation, see docs/source/index.md -->
44

55
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/kedro-org/kedro-plugins/blob/main/LICENSE.md)
6-
[![Python Version](https://img.shields.io/badge/python-3.10%20%7C%203.11%20%7C%203.12-blue.svg)](https://pypi.org/project/kedro-datasets/)
6+
[![Python Version](https://img.shields.io/badge/python-3.10%20%7C%203.11%20%7C%203.12%20%7C%203.13-blue.svg)](https://pypi.org/project/kedro-datasets/)
77
[![PyPI Version](https://badge.fury.io/py/kedro-datasets.svg)](https://pypi.org/project/kedro-datasets/)
88
[![Code Style: Black](https://img.shields.io/badge/code%20style-black-black.svg)](https://github.com/ambv/black)
99

kedro-datasets/RELEASE.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Upcoming Release
22

33
## Major features and improvements
4+
- Added support for Python 3.13.
45

56
- Added the following new datasets:
67

kedro-datasets/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ test = [
283283
"langchain-cohere>=0.1.5",
284284
"langchain-anthropic>=0.1.13",
285285
"langchain-community>=0.2.0",
286-
"lxml~=4.6",
286+
"lxml~=5.0",
287287
"matplotlib>=3.5, <4.0",
288288
"memory_profiler>=0.50.0, <1.0",
289289
"moto==5.0.0",

0 commit comments

Comments
 (0)