Skip to content

Commit

Permalink
FIx typig extensions nor found (#290)
Browse files Browse the repository at this point in the history
* FIx typig extensions nor found

* Changelog

* Fix coverage
  • Loading branch information
karpetrosyan authored Nov 2, 2024
1 parent 4b73a5e commit 4986179
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.1.1 (2nd Nov, 2024)

- FIx typig extensions nor found. (#290)

## 0.1.0 (2nd Nov, 2024)

- Add support for Python 3.12 / drop Python 3.8. (#286)
Expand Down
2 changes: 1 addition & 1 deletion hishel/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ def install_cache() -> None: # pragma: no cover
httpx.Client = CacheClient # type: ignore


__version__ = "0.1.0"
__version__ = "0.1.1"
4 changes: 3 additions & 1 deletion hishel/_async/_storages.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@
anysqlite = None # type: ignore

from httpcore import Request, Response
from typing_extensions import TypeAlias

if t.TYPE_CHECKING: # pragma: no cover
from typing_extensions import TypeAlias

from hishel._serializers import BaseSerializer, clone_model

Expand Down
4 changes: 3 additions & 1 deletion hishel/_sync/_storages.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@
sqlite3 = None # type: ignore

from httpcore import Request, Response
from typing_extensions import TypeAlias

if t.TYPE_CHECKING: # pragma: no cover
from typing_extensions import TypeAlias

from hishel._serializers import BaseSerializer, clone_model

Expand Down

0 comments on commit 4986179

Please sign in to comment.