hishel 1.1.8__tar.gz → 1.1.9__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 (26) hide show
  1. {hishel-1.1.8 → hishel-1.1.9}/CHANGELOG.md +14 -0
  2. {hishel-1.1.8 → hishel-1.1.9}/PKG-INFO +16 -3
  3. {hishel-1.1.8 → hishel-1.1.9}/pyproject.toml +8 -8
  4. {hishel-1.1.8 → hishel-1.1.9}/.gitignore +0 -0
  5. {hishel-1.1.8 → hishel-1.1.9}/LICENSE +0 -0
  6. {hishel-1.1.8 → hishel-1.1.9}/README.md +0 -0
  7. {hishel-1.1.8 → hishel-1.1.9}/hishel/__init__.py +0 -0
  8. {hishel-1.1.8 → hishel-1.1.9}/hishel/_async_cache.py +0 -0
  9. {hishel-1.1.8 → hishel-1.1.9}/hishel/_async_httpx.py +0 -0
  10. {hishel-1.1.8 → hishel-1.1.9}/hishel/_core/_headers.py +0 -0
  11. {hishel-1.1.8 → hishel-1.1.9}/hishel/_core/_spec.py +0 -0
  12. {hishel-1.1.8 → hishel-1.1.9}/hishel/_core/_storages/_async_base.py +0 -0
  13. {hishel-1.1.8 → hishel-1.1.9}/hishel/_core/_storages/_async_sqlite.py +0 -0
  14. {hishel-1.1.8 → hishel-1.1.9}/hishel/_core/_storages/_packing.py +0 -0
  15. {hishel-1.1.8 → hishel-1.1.9}/hishel/_core/_storages/_sync_base.py +0 -0
  16. {hishel-1.1.8 → hishel-1.1.9}/hishel/_core/_storages/_sync_sqlite.py +0 -0
  17. {hishel-1.1.8 → hishel-1.1.9}/hishel/_core/models.py +0 -0
  18. {hishel-1.1.8 → hishel-1.1.9}/hishel/_policies.py +0 -0
  19. {hishel-1.1.8 → hishel-1.1.9}/hishel/_sync_cache.py +0 -0
  20. {hishel-1.1.8 → hishel-1.1.9}/hishel/_sync_httpx.py +0 -0
  21. {hishel-1.1.8 → hishel-1.1.9}/hishel/_utils.py +0 -0
  22. {hishel-1.1.8 → hishel-1.1.9}/hishel/asgi.py +0 -0
  23. {hishel-1.1.8 → hishel-1.1.9}/hishel/fastapi.py +0 -0
  24. {hishel-1.1.8 → hishel-1.1.9}/hishel/httpx.py +0 -0
  25. {hishel-1.1.8 → hishel-1.1.9}/hishel/py.typed +0 -0
  26. {hishel-1.1.8 → hishel-1.1.9}/hishel/requests.py +0 -0
@@ -1,3 +1,17 @@
1
+ ## What's Changed in 1.1.9
2
+ ### ⚙️ Miscellaneous Tasks
3
+
4
+ * chore: drop python 3.9 support by @CharString in [#418](https://github.com/karpetrosyan/hishel/pull/418)
5
+ ### 📦 Dependencies
6
+
7
+ * chore(deps-dev): bump the python-packages group across 1 directory with 5 updates by @dependabot[bot] in [#440](https://github.com/karpetrosyan/hishel/pull/440)
8
+
9
+ ### Contributors
10
+ * @CharString
11
+ * @dependabot[bot]
12
+
13
+ **Full Changelog**: https://github.com/karpetrosyan/hishel/compare/1.1.8...1.1.9
14
+
1
15
  ## What's Changed in 1.1.8
2
16
  ### ⚙️ Miscellaneous Tasks
3
17
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hishel
3
- Version: 1.1.8
3
+ Version: 1.1.9
4
4
  Summary: Elegant HTTP Caching for Python
5
5
  Project-URL: Homepage, https://hishel.com
6
6
  Project-URL: Source, https://github.com/karpetrosyan/hishel
@@ -16,14 +16,13 @@ Classifier: License :: OSI Approved :: BSD License
16
16
  Classifier: Operating System :: OS Independent
17
17
  Classifier: Programming Language :: Python :: 3
18
18
  Classifier: Programming Language :: Python :: 3 :: Only
19
- Classifier: Programming Language :: Python :: 3.9
20
19
  Classifier: Programming Language :: Python :: 3.10
21
20
  Classifier: Programming Language :: Python :: 3.11
22
21
  Classifier: Programming Language :: Python :: 3.12
23
22
  Classifier: Programming Language :: Python :: 3.13
24
23
  Classifier: Programming Language :: Python :: 3.14
25
24
  Classifier: Topic :: Internet :: WWW/HTTP
26
- Requires-Python: >=3.9
25
+ Requires-Python: >=3.10
27
26
  Requires-Dist: msgpack>=1.1.2
28
27
  Requires-Dist: typing-extensions>=4.14.1
29
28
  Provides-Extra: async
@@ -406,6 +405,20 @@ Hishel is inspired by and builds upon the excellent work in the Python HTTP ecos
406
405
  <strong>Made with ❤️ by <a href="https://github.com/karpetrosyan">Kar Petrosyan</a></strong>
407
406
  </p>
408
407
 
408
+ ## What's Changed in 1.1.9
409
+ ### ⚙️ Miscellaneous Tasks
410
+
411
+ * chore: drop python 3.9 support by @CharString in [#418](https://github.com/karpetrosyan/hishel/pull/418)
412
+ ### 📦 Dependencies
413
+
414
+ * chore(deps-dev): bump the python-packages group across 1 directory with 5 updates by @dependabot[bot] in [#440](https://github.com/karpetrosyan/hishel/pull/440)
415
+
416
+ ### Contributors
417
+ * @CharString
418
+ * @dependabot[bot]
419
+
420
+ **Full Changelog**: https://github.com/karpetrosyan/hishel/compare/1.1.8...1.1.9
421
+
409
422
  ## What's Changed in 1.1.8
410
423
  ### ⚙️ Miscellaneous Tasks
411
424
 
@@ -4,11 +4,11 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "hishel"
7
- version = "1.1.8"
7
+ version = "1.1.9"
8
8
  dynamic = ["readme"]
9
9
  description = " Elegant HTTP Caching for Python"
10
10
  license = "BSD-3-Clause"
11
- requires-python = ">=3.9"
11
+ requires-python = ">=3.10"
12
12
  authors = [{ name = "Kar Petrosyan", email = "kar.petrosyanpy@gmail.com" }]
13
13
  classifiers = [
14
14
  "Development Status :: 3 - Alpha",
@@ -20,7 +20,6 @@ classifiers = [
20
20
  "Operating System :: OS Independent",
21
21
  "Programming Language :: Python :: 3",
22
22
  "Programming Language :: Python :: 3 :: Only",
23
- "Programming Language :: Python :: 3.9",
24
23
  "Programming Language :: Python :: 3.10",
25
24
  "Programming Language :: Python :: 3.11",
26
25
  "Programming Language :: Python :: 3.12",
@@ -116,9 +115,10 @@ select = ["E", "F", "W", "I"]
116
115
  [tool.ruff.lint.isort]
117
116
  combine-as-imports = true
118
117
 
118
+
119
119
  [dependency-groups]
120
120
  dev = [
121
- "anyio==4.12.0",
121
+ "anyio==4.12.1",
122
122
  "anysqlite>=0.0.5",
123
123
  "coverage==7.10.7",
124
124
  "fastapi[standard]>=0.119.1",
@@ -128,16 +128,16 @@ dev = [
128
128
  "mkdocs==1.6.1",
129
129
  "mkdocs-git-committers-plugin>=0.2.3",
130
130
  "mkdocs-git-revision-date-localized-plugin>=1.4.7",
131
- "mkdocs-material==9.7.0",
132
- "mypy==1.19.0",
131
+ "mkdocs-material==9.7.1",
132
+ "mypy==1.19.1",
133
133
  "pyright>=1.1.404",
134
134
  "pytest==8.4.2",
135
135
  "pytest-cov>=6.2.1",
136
136
  "pytest-icdiff>=0.9",
137
- "ruff==0.14.7",
137
+ "ruff==0.14.14",
138
138
  "time-machine>=2.19.0",
139
139
  "trio==0.31.0",
140
- "types-boto3==1.41.5",
140
+ "types-boto3==1.42.39",
141
141
  "types-pyyaml==6.0.12.20250915",
142
142
  "types-requests>=2.31.0.6",
143
143
  "zipp>=3.19.1",
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