From fd5cb337593f1edac66f09e70eb3d80604284cad Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Sat, 18 Oct 2025 12:34:29 -0400 Subject: [PATCH] chore: bump tiktoken to 0.12.0 to fix py3.14 build and pin httpx to 0.27.0 Signed-off-by: Rui Chen --- requirements.txt | 3 ++- setup.cfg | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 9ca4fdf..6341cda 100644 --- a/requirements.txt +++ b/requirements.txt @@ -3,4 +3,5 @@ platformdirs==4.2.2 pylatexenc==2.10 PyYAML==6.0.1 rich==13.7.1 -tiktoken==0.8.0 +tiktoken==0.12.0 +httpx=0.27.0 diff --git a/setup.cfg b/setup.cfg index b00b06f..191a687 100644 --- a/setup.cfg +++ b/setup.cfg @@ -15,7 +15,8 @@ packages = chatblade python_requires = >=3.8 install_requires = openai~=1.35.15 - tiktoken~=0.8.0 + tiktoken~=0.12.0 + httpx~=0.27.0 rich~=13.7.1 PyYAML~=6.0.1 platformdirs~=4.2.2