File tree 4 files changed +11
-3
lines changed
4 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 0.1.1 (2nd Nov, 2024)
4
+
5
+ - FIx typig extensions nor found. (#290 )
6
+
3
7
## 0.1.0 (2nd Nov, 2024)
4
8
5
9
- Add support for Python 3.12 / drop Python 3.8. (#286 )
Original file line number Diff line number Diff line change @@ -14,4 +14,4 @@ def install_cache() -> None: # pragma: no cover
14
14
httpx .Client = CacheClient # type: ignore
15
15
16
16
17
- __version__ = "0.1.0 "
17
+ __version__ = "0.1.1 "
Original file line number Diff line number Diff line change 23
23
anysqlite = None # type: ignore
24
24
25
25
from httpcore import Request , Response
26
- from typing_extensions import TypeAlias
26
+
27
+ if t .TYPE_CHECKING : # pragma: no cover
28
+ from typing_extensions import TypeAlias
27
29
28
30
from hishel ._serializers import BaseSerializer , clone_model
29
31
Original file line number Diff line number Diff line change 23
23
sqlite3 = None # type: ignore
24
24
25
25
from httpcore import Request , Response
26
- from typing_extensions import TypeAlias
26
+
27
+ if t .TYPE_CHECKING : # pragma: no cover
28
+ from typing_extensions import TypeAlias
27
29
28
30
from hishel ._serializers import BaseSerializer , clone_model
29
31
You can’t perform that action at this time.
0 commit comments