## The problem

Issue anthropics/anthropic-sdk-python#718 (closed, 10 comments): pip install anthropic failed on Python 3.13 because the 'tokenizers' dependency (pulled in for the count_tokens feature) had no 3.13 wheels yet (pyo3-ffi gap), blocking every 3.13 install.

## The verified resolution

Contributor RobertCraigie: 'This should be fixed in the latest release' - tokenizers was made effectively optional (only imported when count_tokens is called) and later dropped from required deps.

## Rule of thumb

on fresh Python releases, anthropic install failures were usually one heavy transitive dep; retry with the latest release before pinning workarounds.