hishel 0.1.0__tar.gz → 0.1.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (29) hide show
  1. {hishel-0.1.0 → hishel-0.1.1}/CHANGELOG.md +4 -0
  2. {hishel-0.1.0 → hishel-0.1.1}/PKG-INFO +5 -1
  3. {hishel-0.1.0 → hishel-0.1.1}/hishel/__init__.py +1 -1
  4. {hishel-0.1.0 → hishel-0.1.1}/hishel/_async/_storages.py +3 -1
  5. {hishel-0.1.0 → hishel-0.1.1}/hishel/_sync/_storages.py +3 -1
  6. {hishel-0.1.0 → hishel-0.1.1}/.gitignore +0 -0
  7. {hishel-0.1.0 → hishel-0.1.1}/LICENSE +0 -0
  8. {hishel-0.1.0 → hishel-0.1.1}/README.md +0 -0
  9. {hishel-0.1.0 → hishel-0.1.1}/hishel/_async/__init__.py +0 -0
  10. {hishel-0.1.0 → hishel-0.1.1}/hishel/_async/_client.py +0 -0
  11. {hishel-0.1.0 → hishel-0.1.1}/hishel/_async/_mock.py +0 -0
  12. {hishel-0.1.0 → hishel-0.1.1}/hishel/_async/_pool.py +0 -0
  13. {hishel-0.1.0 → hishel-0.1.1}/hishel/_async/_transports.py +0 -0
  14. {hishel-0.1.0 → hishel-0.1.1}/hishel/_controller.py +0 -0
  15. {hishel-0.1.0 → hishel-0.1.1}/hishel/_exceptions.py +0 -0
  16. {hishel-0.1.0 → hishel-0.1.1}/hishel/_files.py +0 -0
  17. {hishel-0.1.0 → hishel-0.1.1}/hishel/_headers.py +0 -0
  18. {hishel-0.1.0 → hishel-0.1.1}/hishel/_lfu_cache.py +0 -0
  19. {hishel-0.1.0 → hishel-0.1.1}/hishel/_s3.py +0 -0
  20. {hishel-0.1.0 → hishel-0.1.1}/hishel/_serializers.py +0 -0
  21. {hishel-0.1.0 → hishel-0.1.1}/hishel/_sync/__init__.py +0 -0
  22. {hishel-0.1.0 → hishel-0.1.1}/hishel/_sync/_client.py +0 -0
  23. {hishel-0.1.0 → hishel-0.1.1}/hishel/_sync/_mock.py +0 -0
  24. {hishel-0.1.0 → hishel-0.1.1}/hishel/_sync/_pool.py +0 -0
  25. {hishel-0.1.0 → hishel-0.1.1}/hishel/_sync/_transports.py +0 -0
  26. {hishel-0.1.0 → hishel-0.1.1}/hishel/_synchronization.py +0 -0
  27. {hishel-0.1.0 → hishel-0.1.1}/hishel/_utils.py +0 -0
  28. {hishel-0.1.0 → hishel-0.1.1}/hishel/py.typed +0 -0
  29. {hishel-0.1.0 → hishel-0.1.1}/pyproject.toml +0 -0
@@ -1,5 +1,9 @@
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)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: hishel
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: Persistent cache implementation for httpx and httpcore
5
5
  Project-URL: Homepage, https://hishel.com
6
6
  Project-URL: Source, https://github.com/karpetrosyan/hishel
@@ -181,6 +181,10 @@ Help us grow and continue developing good software for you ❤️
181
181
 
182
182
  # Changelog
183
183
 
184
+ ## 0.1.1 (2nd Nov, 2024)
185
+
186
+ - FIx typig extensions nor found. (#290)
187
+
184
188
  ## 0.1.0 (2nd Nov, 2024)
185
189
 
186
190
  - Add support for Python 3.12 / drop Python 3.8. (#286)
@@ -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"
@@ -23,7 +23,9 @@ except ImportError: # pragma: no cover
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
 
@@ -23,7 +23,9 @@ except ImportError: # pragma: no cover
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
 
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes