Skip to content

Commit

Permalink
chore: remove now unused cached-property dep (#762)
Browse files Browse the repository at this point in the history
  • Loading branch information
Stainless Bot committed Nov 25, 2024
1 parent 5966b85 commit b9ffefe
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ dependencies = [
"anyio>=3.5.0, <5",
"distro>=1.7.0, <2",
"sniffio",
"cached-property; python_version < '3.8'",
"jiter>=0.4.0, <1",
]
requires-python = ">= 3.8"
Expand Down
5 changes: 1 addition & 4 deletions src/anthropic/_compat.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,9 +214,6 @@ def __set_name__(self, owner: type[Any], name: str) -> None: ...
# __set__ is not defined at runtime, but @cached_property is designed to be settable
def __set__(self, instance: object, value: _T) -> None: ...
else:
try:
from functools import cached_property as cached_property
except ImportError:
from cached_property import cached_property as cached_property
from functools import cached_property as cached_property

typed_cached_property = cached_property

0 comments on commit b9ffefe

Please sign in to comment.