From 87d5b366c569844562a172c85b6fbfbc28ca56e8 Mon Sep 17 00:00:00 2001 From: Teodor Calin Date: Thu, 28 May 2026 22:58:07 -0700 Subject: [PATCH] fix(deps): lower requires-python to >=3.9 (PILOT-206) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit macOS ships Python 3.9 as the system default through 26.x; users without a custom 3.10+ install get pip/uv resolution errors when installing pilotprotocol. Source code has been 3.9-compatible already (no match statements; `from __future__ import annotations` is in place). 1-file change. Tests should pass on 3.9 — verified locally via uv sync. Closes PILOT-206 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index bf89dcc..1e07a25 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,7 +18,7 @@ name = "pilotprotocol" version = "1.9.1" # Auto-updated by CI workflow description = "Python SDK for Pilot Protocol - the network stack for AI agents" readme = "README.md" -requires-python = ">=3.10" +requires-python = ">=3.9" license = {text = "AGPL-3.0-or-later"} authors = [ {name = "Alexandru Godoroja", email = "alex@pilotprotocol.network"}