From 0545cca977cbb1d89cecbdc988ac21d0f6a4b0e0 Mon Sep 17 00:00:00 2001 From: Octopus Date: Fri, 3 Apr 2026 10:52:54 +0800 Subject: [PATCH] fix: restrict Python version to <3.13 to avoid tiktoken build failure (fixes #311) --- backend/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/pyproject.toml b/backend/pyproject.toml index 4f5361d5..8c65b729 100644 --- a/backend/pyproject.toml +++ b/backend/pyproject.toml @@ -2,7 +2,7 @@ name = "mirofish-backend" version = "0.1.0" description = "MiroFish - 简洁通用的群体智能引擎,预测万物" -requires-python = ">=3.11" +requires-python = ">=3.11,<3.13" license = { text = "AGPL-3.0" } authors = [ { name = "MiroFish Team" }