From 10b3a2c4d9c4bd0bccba0bba5a503b76da82f5d9 Mon Sep 17 00:00:00 2001 From: Aidan Feldman Date: Wed, 14 Jan 2026 21:11:11 -0500 Subject: [PATCH] chore: add support for Python 3.14 --- .github/workflows/tests.yml | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index fc5a5c670..374c68f0d 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -16,7 +16,7 @@ jobs: strategy: matrix: os: [ ubuntu-22.04 ] - python-version: ["3.10", "3.11", "3.12", "3.13" ] + python-version: [ "3.10", "3.11", "3.12", "3.13", "3.14" ] pandas: [ "pandas>1.1" ] numpy: [ "numpy>=1.21" ] runs-on: ${{ matrix.os }} diff --git a/pyproject.toml b/pyproject.toml index e46cb237c..a85e702fa 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ package_name = "ydata-profiling" [project] name = "ydata-profiling" -requires-python = ">=3.10,<3.14" +requires-python = ">=3.10,<3.15" authors = [ {name = "YData Labs Inc", email = "opensource@ydata.ai"} ]