From 907116b4a4ffec153812c1e529ce2ba39b4f334f Mon Sep 17 00:00:00 2001 From: Tobias Raabe Date: Sat, 31 Jan 2026 21:27:43 +0100 Subject: [PATCH] Skip coiled on Python 3.14 tests --- pyproject.toml | 2 +- uv.lock | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 70aa5f19..d3855f5d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -75,7 +75,7 @@ test = [ "pytest-xdist>=3.6.1", "syrupy>=4.5.0", "aiohttp>=3.11.0", # For HTTPPath tests. - "coiled>=1.42.0", + "coiled>=1.42.0; python_version < '3.14'", "pygraphviz>=1.12;platform_system=='Linux'", ] typing = ["ty>=0.0.8"] diff --git a/uv.lock b/uv.lock index da73057c..5d1e5e72 100644 --- a/uv.lock +++ b/uv.lock @@ -2697,7 +2697,7 @@ plugin-list = [ test = [ { name = "aiohttp" }, { name = "cloudpickle" }, - { name = "coiled" }, + { name = "coiled", marker = "python_full_version < '3.14'" }, { name = "deepdiff" }, { name = "nbmake", marker = "python_full_version < '3.14' or sys_platform != 'win32'" }, { name = "pexpect" }, @@ -2752,7 +2752,7 @@ plugin-list = [ test = [ { name = "aiohttp", specifier = ">=3.11.0" }, { name = "cloudpickle", specifier = ">=3.0.0" }, - { name = "coiled", specifier = ">=1.42.0" }, + { name = "coiled", marker = "python_full_version < '3.14'", specifier = ">=1.42.0" }, { name = "deepdiff", specifier = ">=7.0.0" }, { name = "nbmake", marker = "python_full_version < '3.14' or sys_platform != 'win32'", specifier = ">=1.5.5" }, { name = "pexpect", specifier = ">=4.9.0" },