From 4ffc6ee70910b4e2c61e70b0c0b2d54767c4980c Mon Sep 17 00:00:00 2001 From: pragyan69 Date: Tue, 25 Nov 2025 11:31:06 +0530 Subject: [PATCH] fix: restrict python version <3.12 due to dependency incompatibility (#76) --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 4c9a1a28..7ef22d95 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,7 +14,7 @@ homepage = "https://github.com/drift-labs/driftpy" documentation = "https://drift-labs.github.io/driftpy/" [tool.poetry.dependencies] -python = "^3.10" +python = ">=3.10,<3.12" anchorpy = "0.21.0" solana = "^0.36" requests = "^2.28.1"