From c0f65f6c4304f687b9a6863ce39bb291ac3ef699 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florentin=20D=C3=B6rre?= Date: Fri, 12 Jun 2026 15:44:53 +0200 Subject: [PATCH] Add support for python 3.14 --- .github/workflows/unit-tests.yml | 2 +- changelog.md | 1 + python-wrapper/pyproject.toml | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index 8d7cc821..99e324f1 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -23,7 +23,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest] - python-version: ["3.10", "3.11", "3.12", "3.13"] + python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"] defaults: run: diff --git a/changelog.md b/changelog.md index cdec7e85..c0902b35 100644 --- a/changelog.md +++ b/changelog.md @@ -11,6 +11,7 @@ ## Improvements +* Support Python 3.14 * Support Aura Graph Analytics * Support `gds.v2` endpoints * Use typed options field in `GraphWidget` diff --git a/python-wrapper/pyproject.toml b/python-wrapper/pyproject.toml index 2f550e39..b67bbcc9 100644 --- a/python-wrapper/pyproject.toml +++ b/python-wrapper/pyproject.toml @@ -22,6 +22,7 @@ classifiers = [ "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", "Topic :: Database :: Front-Ends", "Topic :: Scientific/Engineering", "Topic :: Scientific/Engineering :: Visualization",