From d56c349926b0f3978b194847aede7883491384bb Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Tue, 29 Oct 2024 07:04:14 -0700 Subject: [PATCH] Make tokenizers compatible for Python 3.13 compatibility Refs https://github.com/anthropics/anthropic-sdk-python/issues/718 --- pyproject.toml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 1ccb9a45..e2442588 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,11 +14,9 @@ dependencies = [ "anyio>=3.5.0, <5", "distro>=1.7.0, <2", "sniffio", - "cached-property; python_version < '3.8'", - "tokenizers >= 0.13.0", "jiter>=0.4.0, <1", ] -requires-python = ">= 3.7" +requires-python = ">= 3.8" classifiers = [ "Typing :: Typed", "Intended Audience :: Developers",