python3-commons 0.24.1__tar.gz → 0.24.2__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 (82) hide show
  1. {python3_commons-0.24.1 → python3_commons-0.24.2}/PKG-INFO +2 -1
  2. {python3_commons-0.24.1 → python3_commons-0.24.2}/pyproject.toml +1 -0
  3. {python3_commons-0.24.1 → python3_commons-0.24.2}/src/python3_commons.egg-info/PKG-INFO +2 -1
  4. {python3_commons-0.24.1 → python3_commons-0.24.2}/src/python3_commons.egg-info/requires.txt +1 -0
  5. python3_commons-0.24.2/src/python3_commons.egg-info/scm_version.json +8 -0
  6. {python3_commons-0.24.1 → python3_commons-0.24.2}/uv.lock +134 -26
  7. python3_commons-0.24.1/src/python3_commons.egg-info/scm_version.json +0 -8
  8. {python3_commons-0.24.1 → python3_commons-0.24.2}/.coveragerc +0 -0
  9. {python3_commons-0.24.1 → python3_commons-0.24.2}/.devcontainer/Dockerfile +0 -0
  10. {python3_commons-0.24.1 → python3_commons-0.24.2}/.devcontainer/devcontainer.json +0 -0
  11. {python3_commons-0.24.1 → python3_commons-0.24.2}/.devcontainer/docker-compose.yml +0 -0
  12. {python3_commons-0.24.1 → python3_commons-0.24.2}/.env_template +0 -0
  13. {python3_commons-0.24.1 → python3_commons-0.24.2}/.github/workflows/checks.yml +0 -0
  14. {python3_commons-0.24.1 → python3_commons-0.24.2}/.github/workflows/python-publish.yaml +0 -0
  15. {python3_commons-0.24.1 → python3_commons-0.24.2}/.github/workflows/release-on-tag-push.yml +0 -0
  16. {python3_commons-0.24.1 → python3_commons-0.24.2}/.gitignore +0 -0
  17. {python3_commons-0.24.1 → python3_commons-0.24.2}/.pre-commit-config.yaml +0 -0
  18. {python3_commons-0.24.1 → python3_commons-0.24.2}/.python-version +0 -0
  19. {python3_commons-0.24.1 → python3_commons-0.24.2}/AUTHORS.rst +0 -0
  20. {python3_commons-0.24.1 → python3_commons-0.24.2}/CHANGELOG.rst +0 -0
  21. {python3_commons-0.24.1 → python3_commons-0.24.2}/LICENSE +0 -0
  22. {python3_commons-0.24.1 → python3_commons-0.24.2}/README.md +0 -0
  23. {python3_commons-0.24.1 → python3_commons-0.24.2}/README.rst +0 -0
  24. {python3_commons-0.24.1 → python3_commons-0.24.2}/docs/Makefile +0 -0
  25. {python3_commons-0.24.1 → python3_commons-0.24.2}/docs/_static/.gitignore +0 -0
  26. {python3_commons-0.24.1 → python3_commons-0.24.2}/docs/authors.rst +0 -0
  27. {python3_commons-0.24.1 → python3_commons-0.24.2}/docs/changelog.rst +0 -0
  28. {python3_commons-0.24.1 → python3_commons-0.24.2}/docs/conf.py +0 -0
  29. {python3_commons-0.24.1 → python3_commons-0.24.2}/docs/index.rst +0 -0
  30. {python3_commons-0.24.1 → python3_commons-0.24.2}/docs/license.rst +0 -0
  31. {python3_commons-0.24.1 → python3_commons-0.24.2}/setup.cfg +0 -0
  32. {python3_commons-0.24.1 → python3_commons-0.24.2}/src/python3_commons/__init__.py +0 -0
  33. {python3_commons-0.24.1 → python3_commons-0.24.2}/src/python3_commons/api_client.py +0 -0
  34. {python3_commons-0.24.1 → python3_commons-0.24.2}/src/python3_commons/async_functools.py +0 -0
  35. {python3_commons-0.24.1 → python3_commons-0.24.2}/src/python3_commons/audit.py +0 -0
  36. {python3_commons-0.24.1 → python3_commons-0.24.2}/src/python3_commons/auth.py +0 -0
  37. {python3_commons-0.24.1 → python3_commons-0.24.2}/src/python3_commons/cache.py +0 -0
  38. {python3_commons-0.24.1 → python3_commons-0.24.2}/src/python3_commons/conf.py +0 -0
  39. {python3_commons-0.24.1 → python3_commons-0.24.2}/src/python3_commons/db/__init__.py +0 -0
  40. {python3_commons-0.24.1 → python3_commons-0.24.2}/src/python3_commons/db/helpers.py +0 -0
  41. {python3_commons-0.24.1 → python3_commons-0.24.2}/src/python3_commons/db/models/__init__.py +0 -0
  42. {python3_commons-0.24.1 → python3_commons-0.24.2}/src/python3_commons/db/models/auth.py +0 -0
  43. {python3_commons-0.24.1 → python3_commons-0.24.2}/src/python3_commons/db/models/common.py +0 -0
  44. {python3_commons-0.24.1 → python3_commons-0.24.2}/src/python3_commons/db/models/rbac.py +0 -0
  45. {python3_commons-0.24.1 → python3_commons-0.24.2}/src/python3_commons/db/models/users.py +0 -0
  46. {python3_commons-0.24.1 → python3_commons-0.24.2}/src/python3_commons/exceptions.py +0 -0
  47. {python3_commons-0.24.1 → python3_commons-0.24.2}/src/python3_commons/fs.py +0 -0
  48. {python3_commons-0.24.1 → python3_commons-0.24.2}/src/python3_commons/generators.py +0 -0
  49. {python3_commons-0.24.1 → python3_commons-0.24.2}/src/python3_commons/helpers.py +0 -0
  50. {python3_commons-0.24.1 → python3_commons-0.24.2}/src/python3_commons/log/__init__.py +0 -0
  51. {python3_commons-0.24.1 → python3_commons-0.24.2}/src/python3_commons/log/filters.py +0 -0
  52. {python3_commons-0.24.1 → python3_commons-0.24.2}/src/python3_commons/log/formatters.py +0 -0
  53. {python3_commons-0.24.1 → python3_commons-0.24.2}/src/python3_commons/object_storage.py +0 -0
  54. {python3_commons-0.24.1 → python3_commons-0.24.2}/src/python3_commons/permissions.py +0 -0
  55. {python3_commons-0.24.1 → python3_commons-0.24.2}/src/python3_commons/serializers/__init__.py +0 -0
  56. {python3_commons-0.24.1 → python3_commons-0.24.2}/src/python3_commons/serializers/common.py +0 -0
  57. {python3_commons-0.24.1 → python3_commons-0.24.2}/src/python3_commons/serializers/json.py +0 -0
  58. {python3_commons-0.24.1 → python3_commons-0.24.2}/src/python3_commons/serializers/msgpack.py +0 -0
  59. {python3_commons-0.24.1 → python3_commons-0.24.2}/src/python3_commons/serializers/msgspec.py +0 -0
  60. {python3_commons-0.24.1 → python3_commons-0.24.2}/src/python3_commons/soap_client.py +0 -0
  61. {python3_commons-0.24.1 → python3_commons-0.24.2}/src/python3_commons.egg-info/SOURCES.txt +0 -0
  62. {python3_commons-0.24.1 → python3_commons-0.24.2}/src/python3_commons.egg-info/dependency_links.txt +0 -0
  63. {python3_commons-0.24.1 → python3_commons-0.24.2}/src/python3_commons.egg-info/scm_file_list.json +0 -0
  64. {python3_commons-0.24.1 → python3_commons-0.24.2}/src/python3_commons.egg-info/top_level.txt +0 -0
  65. {python3_commons-0.24.1 → python3_commons-0.24.2}/tests/__init__.py +0 -0
  66. {python3_commons-0.24.1 → python3_commons-0.24.2}/tests/integration/__init__.py +0 -0
  67. {python3_commons-0.24.1 → python3_commons-0.24.2}/tests/integration/conftest.py +0 -0
  68. {python3_commons-0.24.1 → python3_commons-0.24.2}/tests/integration/test_auth.py +0 -0
  69. {python3_commons-0.24.1 → python3_commons-0.24.2}/tests/integration/test_cache.py +0 -0
  70. {python3_commons-0.24.1 → python3_commons-0.24.2}/tests/integration/test_osc.py +0 -0
  71. {python3_commons-0.24.1 → python3_commons-0.24.2}/tests/unit/__init__.py +0 -0
  72. {python3_commons-0.24.1 → python3_commons-0.24.2}/tests/unit/conftest.py +0 -0
  73. {python3_commons-0.24.1 → python3_commons-0.24.2}/tests/unit/db/__init__.py +0 -0
  74. {python3_commons-0.24.1 → python3_commons-0.24.2}/tests/unit/db/test_async_session_manager.py +0 -0
  75. {python3_commons-0.24.1 → python3_commons-0.24.2}/tests/unit/log/__init__.py +0 -0
  76. {python3_commons-0.24.1 → python3_commons-0.24.2}/tests/unit/log/test_formatters.py +0 -0
  77. {python3_commons-0.24.1 → python3_commons-0.24.2}/tests/unit/test_async_functools.py +0 -0
  78. {python3_commons-0.24.1 → python3_commons-0.24.2}/tests/unit/test_audit.py +0 -0
  79. {python3_commons-0.24.1 → python3_commons-0.24.2}/tests/unit/test_auth.py +0 -0
  80. {python3_commons-0.24.1 → python3_commons-0.24.2}/tests/unit/test_helpers.py +0 -0
  81. {python3_commons-0.24.1 → python3_commons-0.24.2}/tests/unit/test_msgpack.py +0 -0
  82. {python3_commons-0.24.1 → python3_commons-0.24.2}/tests/unit/test_msgspec.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: python3-commons
3
- Version: 0.24.1
3
+ Version: 0.24.2
4
4
  Summary: Re-usable Python3 code
5
5
  Author-email: Oleg Korsak <kamikaze.is.waiting.you@gmail.com>
6
6
  License-Expression: GPL-3.0
@@ -38,6 +38,7 @@ Provides-Extra: database
38
38
  Requires-Dist: asyncpg~=0.31.0; extra == "database"
39
39
  Requires-Dist: SQLAlchemy[asyncio]~=2.0.51; extra == "database"
40
40
  Provides-Extra: object-storage
41
+ Requires-Dist: aiobotocore==3.9.0; extra == "object-storage"
41
42
  Requires-Dist: object-storage-client~=0.1.5; extra == "object-storage"
42
43
  Provides-Extra: soap-client
43
44
  Requires-Dist: aiohttp[speedups]<3.15.0,>=3.14.3; extra == "soap-client"
@@ -54,6 +54,7 @@ database = [
54
54
  "SQLAlchemy[asyncio]~=2.0.51",
55
55
  ]
56
56
  object-storage = [
57
+ "aiobotocore==3.9.0",
57
58
  "object-storage-client~=0.1.5",
58
59
  ]
59
60
  soap-client = [
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: python3-commons
3
- Version: 0.24.1
3
+ Version: 0.24.2
4
4
  Summary: Re-usable Python3 code
5
5
  Author-email: Oleg Korsak <kamikaze.is.waiting.you@gmail.com>
6
6
  License-Expression: GPL-3.0
@@ -38,6 +38,7 @@ Provides-Extra: database
38
38
  Requires-Dist: asyncpg~=0.31.0; extra == "database"
39
39
  Requires-Dist: SQLAlchemy[asyncio]~=2.0.51; extra == "database"
40
40
  Provides-Extra: object-storage
41
+ Requires-Dist: aiobotocore==3.9.0; extra == "object-storage"
41
42
  Requires-Dist: object-storage-client~=0.1.5; extra == "object-storage"
42
43
  Provides-Extra: soap-client
43
44
  Requires-Dist: aiohttp[speedups]<3.15.0,>=3.14.3; extra == "soap-client"
@@ -32,6 +32,7 @@ asyncpg~=0.31.0
32
32
  SQLAlchemy[asyncio]~=2.0.51
33
33
 
34
34
  [object-storage]
35
+ aiobotocore==3.9.0
35
36
  object-storage-client~=0.1.5
36
37
 
37
38
  [soap-client]
@@ -0,0 +1,8 @@
1
+ {
2
+ "tag": "0.24.2",
3
+ "distance": 0,
4
+ "node": "g571b6f82441ed096fa98ccf8558e8b51bf4ff75c",
5
+ "dirty": false,
6
+ "branch": "HEAD",
7
+ "node_date": "2026-08-10"
8
+ }
@@ -2,6 +2,24 @@ version = 1
2
2
  revision = 3
3
3
  requires-python = "==3.14.*"
4
4
 
5
+ [[package]]
6
+ name = "aiobotocore"
7
+ version = "3.9.0"
8
+ source = { registry = "https://pypi.org/simple" }
9
+ dependencies = [
10
+ { name = "aiohttp" },
11
+ { name = "aioitertools" },
12
+ { name = "botocore" },
13
+ { name = "jmespath" },
14
+ { name = "multidict" },
15
+ { name = "python-dateutil" },
16
+ { name = "wrapt" },
17
+ ]
18
+ sdist = { url = "https://files.pythonhosted.org/packages/73/c0/18abcb7e4e504a68714c280853fd180afe376a4a55e5511fb04ba76702e4/aiobotocore-3.9.0.tar.gz", hash = "sha256:5d344e97c518b010bea167c7f7ba4f9e785f9d2b8ac7af4fd00846c62f2c0a10", size = 514972, upload-time = "2026-08-01T11:54:07.673Z" }
19
+ wheels = [
20
+ { url = "https://files.pythonhosted.org/packages/30/c5/6290519dec32f3cdf6827e3bbcbf7a9f4fb29a55a9204199901fed69957b/aiobotocore-3.9.0-py3-none-any.whl", hash = "sha256:7354659eac9ba6034675b3ea178330b7de97c45989d6fda1bf01d3da167b6135", size = 100764, upload-time = "2026-08-01T11:54:06.128Z" },
21
+ ]
22
+
5
23
  [[package]]
6
24
  name = "aiodns"
7
25
  version = "4.0.4"
@@ -88,6 +106,15 @@ speedups = [
88
106
  { name = "brotlicffi", marker = "platform_python_implementation != 'CPython'" },
89
107
  ]
90
108
 
109
+ [[package]]
110
+ name = "aioitertools"
111
+ version = "0.13.0"
112
+ source = { registry = "https://pypi.org/simple" }
113
+ sdist = { url = "https://files.pythonhosted.org/packages/fd/3c/53c4a17a05fb9ea2313ee1777ff53f5e001aefd5cc85aa2f4c2d982e1e38/aioitertools-0.13.0.tar.gz", hash = "sha256:620bd241acc0bbb9ec819f1ab215866871b4bbd1f73836a55f799200ee86950c", size = 19322, upload-time = "2025-11-06T22:17:07.609Z" }
114
+ wheels = [
115
+ { url = "https://files.pythonhosted.org/packages/10/a1/510b0a7fadc6f43a6ce50152e69dbd86415240835868bb0bd9b5b88b1e06/aioitertools-0.13.0-py3-none-any.whl", hash = "sha256:0be0292b856f08dfac90e31f4739432f4cb6d7520ab9eb73e143f4f2fa5259be", size = 24182, upload-time = "2025-11-06T22:17:06.502Z" },
116
+ ]
117
+
91
118
  [[package]]
92
119
  name = "aiosignal"
93
120
  version = "1.4.0"
@@ -154,6 +181,20 @@ wheels = [
154
181
  { url = "https://files.pythonhosted.org/packages/64/b4/17d4b0b2a2dc85a6df63d1157e028ed19f90d4cd97c36717afef2bc2f395/attrs-26.1.0-py3-none-any.whl", hash = "sha256:c647aa4a12dfbad9333ca4e71fe62ddc36f4e63b2d260a37a8b83d2f043ac309", size = 67548, upload-time = "2026-03-19T14:22:23.645Z" },
155
182
  ]
156
183
 
184
+ [[package]]
185
+ name = "botocore"
186
+ version = "1.43.56"
187
+ source = { registry = "https://pypi.org/simple" }
188
+ dependencies = [
189
+ { name = "jmespath" },
190
+ { name = "python-dateutil" },
191
+ { name = "urllib3" },
192
+ ]
193
+ sdist = { url = "https://files.pythonhosted.org/packages/b9/cc/7f84a5d3071fe878380e9f610ab36ca87b8cbbc4aa81ba2727f90e1f3ea3/botocore-1.43.56.tar.gz", hash = "sha256:6c01f85f0ff9863076f4c761e74ee3aa96c5ccc1ad09fc1efd62ef8f2d22bf57", size = 15733117, upload-time = "2026-07-24T19:31:38.125Z" }
194
+ wheels = [
195
+ { url = "https://files.pythonhosted.org/packages/5c/cd/86fe9e659e9699f62f8dd5ecd8c6725474334b23cab8aa71d82b5f56f1a4/botocore-1.43.56-py3-none-any.whl", hash = "sha256:aafc741f1b10f6fd63253eaf6ea029680c1ff436d87e1b8969d62aefa0c76976", size = 15418773, upload-time = "2026-07-24T19:31:34.758Z" },
196
+ ]
197
+
157
198
  [[package]]
158
199
  name = "brotli"
159
200
  version = "1.2.0"
@@ -404,29 +445,28 @@ wheels = [
404
445
 
405
446
  [[package]]
406
447
  name = "greenlet"
407
- version = "3.5.4"
408
- source = { registry = "https://pypi.org/simple" }
409
- sdist = { url = "https://files.pythonhosted.org/packages/a3/74/b13368064b09053253555d3f2839cc2684d22d5aed0d2ccffbf7a6736558/greenlet-3.5.4.tar.gz", hash = "sha256:0232ae1de90a8e07867bb127d7a6ba2301e859145489f25cda8a6096dabe1d20", size = 206538, upload-time = "2026-07-22T12:47:14.468Z" }
410
- wheels = [
411
- { url = "https://files.pythonhosted.org/packages/a5/a7/6ab1d4f9cd548d15ab90da29947f2076100130bb179b0bde59f795a459e3/greenlet-3.5.4-cp314-cp314-macosx_11_0_universal2.whl", hash = "sha256:7e8afa5eac028f8140ceafe5ceec66e6aa127ddcb21452d2a564dcd2900b5f22", size = 295410, upload-time = "2026-07-22T11:40:35.747Z" },
412
- { url = "https://files.pythonhosted.org/packages/cd/7a/422f63b4715cbc0b24385305407adf38b48f6bb68b3e6b04090e994d0f5a/greenlet-3.5.4-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:73b37afe369021423ea53dd3123e04bffa7e93ac64429b9f50835b2e4fcae7cf", size = 661286, upload-time = "2026-07-22T12:26:43.8Z" },
413
- { url = "https://files.pythonhosted.org/packages/d0/31/5a1cac663bf5582190c5a714ef81364f03cde232227f39748f8ae4c11da5/greenlet-3.5.4-cp314-cp314-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:3ef964f56dfcb6f9bbef2a190d9126795eac408716aeae47b5e7c73c32aafca9", size = 673517, upload-time = "2026-07-22T12:29:04.815Z" },
414
- { url = "https://files.pythonhosted.org/packages/9c/bf/250c2921c7b585dde12f5239e313ca2dcbc464d161ecca36e4e6ef21762d/greenlet-3.5.4-cp314-cp314-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:cef589bc65fae02d10bca2ac341191c5b33acc2967892ebf4fcbd10eabb7a74c", size = 677968, upload-time = "2026-07-22T12:43:46.788Z" },
415
- { url = "https://files.pythonhosted.org/packages/15/4a/2a82a1e3f8aaca020853ac8d12211280ca2b231aa08ea39f636f1060c319/greenlet-3.5.4-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9c53ff01a5c53a40f2c16820ebc56d7c61a77f5fbe009dadd96292d5682f80f8", size = 670917, upload-time = "2026-07-22T11:51:13.589Z" },
416
- { url = "https://files.pythonhosted.org/packages/18/40/10bfcf6513558d82f7b95dd728001c63bd388259fe27d3e30ae01f103430/greenlet-3.5.4-cp314-cp314-manylinux_2_39_riscv64.whl", hash = "sha256:dfc41ae893d9ceaf22c824f2153a88b30651b20e8758c2cd9ac143f23640563c", size = 480643, upload-time = "2026-07-22T12:39:54.149Z" },
417
- { url = "https://files.pythonhosted.org/packages/68/b0/e379a152b17bfdfa95795af4049e37c0fd1b4d81f020d426db104ed07c77/greenlet-3.5.4-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:ecca4d80d55a01ad6b23b33262662956149fbb7b2c6be2910f1705921958cbf3", size = 1628478, upload-time = "2026-07-22T12:25:06.678Z" },
418
- { url = "https://files.pythonhosted.org/packages/5e/43/bffdfa64f7317f954c5c1230b5dd5922676ce198689a68c1ac1ed4b1b1a5/greenlet-3.5.4-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:2ffbc533e0eaf8e80d8471411646ab88fe58f641d508c0b02b24494479f4d9ec", size = 1692021, upload-time = "2026-07-22T11:51:17.008Z" },
419
- { url = "https://files.pythonhosted.org/packages/d0/11/f799f9637e2c6e9b0b716015e339040598b058cf7654dfc0d67468b177ed/greenlet-3.5.4-cp314-cp314-win_amd64.whl", hash = "sha256:305f69e6c4523d7f6979ed001cff4e5853c063e5da04880296603aa0227e544c", size = 248031, upload-time = "2026-07-22T11:40:11.007Z" },
420
- { url = "https://files.pythonhosted.org/packages/05/75/625bcdd74d5e6b2dca1ecba3c3ac77bcf8a026c21a649a46cef23e421f97/greenlet-3.5.4-cp314-cp314-win_arm64.whl", hash = "sha256:f260930bbbbcf9caee661211235a5111c86dfe5832fdf6ae4570da1e0995320f", size = 246892, upload-time = "2026-07-22T11:40:27.357Z" },
421
- { url = "https://files.pythonhosted.org/packages/ec/69/35c62ed49c320cb4d98e14698ccca5467d3bfe683984172be9cb564d9ce3/greenlet-3.5.4-cp314-cp314t-macosx_11_0_universal2.whl", hash = "sha256:41ddab54e4b238f4a6c323f39b4e59e176affd5a94d461a9fb7583dac74240a3", size = 305571, upload-time = "2026-07-22T11:40:31.659Z" },
422
- { url = "https://files.pythonhosted.org/packages/5b/6c/64d60216b3640dcb0b62d913dd9e0d80030c09115bb2e4ba70c95d10ca45/greenlet-3.5.4-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b3dabe3e2809013052c68bdf0b7fa5f5f2859c43a80803131ad61af9cabd7867", size = 672568, upload-time = "2026-07-22T12:26:45.298Z" },
423
- { url = "https://files.pythonhosted.org/packages/5c/de/ba3ab0a96292e53039530333b0d2ae18d9e508f3a325cd7bf15f8172944c/greenlet-3.5.4-cp314-cp314t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:27d3f00718634d4520a3a150154ac5da36f257869d41321953375b90bfbbc72c", size = 680076, upload-time = "2026-07-22T12:29:06.125Z" },
424
- { url = "https://files.pythonhosted.org/packages/ae/db/24a10af12bf8e639cec46c38b9ce1a282543ba42ff4fb0b31a970f1ab603/greenlet-3.5.4-cp314-cp314t-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:39169a11d87a6a263afda3e9a27d1df16d0f919d40a4837cc73986c9884c0dd8", size = 681690, upload-time = "2026-07-22T12:43:48.109Z" },
425
- { url = "https://files.pythonhosted.org/packages/a5/be/aeada79083c6f1c15f45d77a332f9c441af263ee298e3eb17522cd337d22/greenlet-3.5.4-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:cbd60b5763c6543c1827e48faaf14ea9bfbad245f52b1a4d76a2a2d8884c6c66", size = 676733, upload-time = "2026-07-22T11:51:16.027Z" },
426
- { url = "https://files.pythonhosted.org/packages/f4/60/44a2eca7b9fd71ae0fae7ff184da1cd3169d176652b97aa1cffcbb0ef961/greenlet-3.5.4-cp314-cp314t-manylinux_2_39_riscv64.whl", hash = "sha256:bd3d1145f603b2db19feb9078c2e6855eb7c67e15580c010ed815cee519b86fd", size = 510263, upload-time = "2026-07-22T12:39:55.678Z" },
427
- { url = "https://files.pythonhosted.org/packages/e9/10/2392fc3a98948652ef5fd1e7275c04f861dd13f74b78a2b4309f4ee4d090/greenlet-3.5.4-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:f00f910f0e7b35416c63b23ad78b769aeccfc1775f712b43c4ee525624a2eef7", size = 1637327, upload-time = "2026-07-22T12:25:07.879Z" },
428
- { url = "https://files.pythonhosted.org/packages/55/c6/e7237a3dfa1f205ed0d9ea1e46d70bd2811b32d516266399fb59d28ab90a/greenlet-3.5.4-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:91c26423753b92caf41ab3f98fd547d7374d4d9fc2d85be041886c1579d9255e", size = 1697493, upload-time = "2026-07-22T11:51:19.214Z" },
429
- { url = "https://files.pythonhosted.org/packages/55/e3/4ba8154ba2a3d43729e499f72471b4b5c993f3826d3e24da81d5f06d6572/greenlet-3.5.4-cp314-cp314t-win_amd64.whl", hash = "sha256:ee032b91fd8ec29ec6c4cea2b8c561b178435134bd0752c7334b94e9c736c132", size = 251637, upload-time = "2026-07-22T11:40:37.44Z" },
448
+ version = "3.5.5"
449
+ source = { registry = "https://pypi.org/simple" }
450
+ wheels = [
451
+ { url = "https://files.pythonhosted.org/packages/7f/8c/080e881fa2be95ff1ddbd6994b2bab3b1a78df3b3fcab39306011764fcc7/greenlet-3.5.5-cp314-cp314-macosx_11_0_universal2.whl", hash = "sha256:d4a389a852e392a6366058651a20fa5ba40d979865aa81bea2ccbdc44805070d", size = 295309, upload-time = "2026-08-10T13:26:03.032Z" },
452
+ { url = "https://files.pythonhosted.org/packages/25/cc/0ac614e6586c0e42d4cc281a5819150f4f43685744a4c5ff77139286409d/greenlet-3.5.5-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:70b157cd319873e8b544ddc2de158f55bbd0a9b0218c8ce9332039801518e328", size = 661185, upload-time = "2026-08-10T14:14:37.867Z" },
453
+ { url = "https://files.pythonhosted.org/packages/5e/b9/6808725354be8ad305dfe5172377664fc9642d4fc043be246b3314cf4482/greenlet-3.5.5-cp314-cp314-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:8bdfd1424abcf26832961e766570cae79efdb9599d709088c9cb6ef82b194926", size = 673419, upload-time = "2026-08-10T14:27:28.652Z" },
454
+ { url = "https://files.pythonhosted.org/packages/eb/52/f005d579acde46c3d1cc3cab1c9f3d5708c8a3006a4120e8cf5da801afe9/greenlet-3.5.5-cp314-cp314-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:d98ef6f92e67c6dbf299dbfd8facc1b0d2d9cedf91e325e73b3d0373fe4309d8", size = 677863, upload-time = "2026-08-10T14:30:11.663Z" },
455
+ { url = "https://files.pythonhosted.org/packages/42/2e/40c509967da7f254680826a2fa0dd22138ec79946c70b97542d74cde8b43/greenlet-3.5.5-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:182de51c6b572a705f2fafaab2e783bcf7d2760940229dfe73086cbae037af3e", size = 670822, upload-time = "2026-08-10T13:40:51.833Z" },
456
+ { url = "https://files.pythonhosted.org/packages/c4/8a/a75f8a2bdcef3c358a3147cdc9db3aa83755f0a038f766ab0bedb66f512c/greenlet-3.5.5-cp314-cp314-manylinux_2_39_riscv64.whl", hash = "sha256:159df1942d88e8f784cbb38d6f18bdb365cd11319cfbb3e89623de2b97892d53", size = 480554, upload-time = "2026-08-10T14:30:05.171Z" },
457
+ { url = "https://files.pythonhosted.org/packages/2d/22/c3c2eee4a8fe191d6d1d183086c56133d646024e3d70bfd414829f64560b/greenlet-3.5.5-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:8fec3f165dfe332e490c3247c0f6c23b0bfc45f06496ad7f00ddb00e3d35e4dc", size = 1628469, upload-time = "2026-08-10T14:15:08.11Z" },
458
+ { url = "https://files.pythonhosted.org/packages/f7/87/25babd09b94cb1f03e71db815fde463f0262e40cfbd953d58a8d77311351/greenlet-3.5.5-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:c6ce25fee6cabc8bf22cb8b52e642cbb821be5b9aec8094d07ff03378141b8e9", size = 1691952, upload-time = "2026-08-10T13:40:33.502Z" },
459
+ { url = "https://files.pythonhosted.org/packages/2e/3d/5cc9701117ea4dc0eb7bf1f4f9b7888a6e2e5277ddfae095805ace50f2b6/greenlet-3.5.5-cp314-cp314-win_amd64.whl", hash = "sha256:7dffc5c859fe6059974df1e37d7923d654a83e2ae18fdd616994270e001115e1", size = 327458, upload-time = "2026-08-10T13:27:02.868Z" },
460
+ { url = "https://files.pythonhosted.org/packages/a7/6b/594fa2de7fae7629168a404a4305d7d7e31a5742c50a801b1839543cb93d/greenlet-3.5.5-cp314-cp314-win_arm64.whl", hash = "sha256:5e2afcfc4d4305dd715809b03da5cbe437c8984f61d8917751eb5fe4aefa3e07", size = 311146, upload-time = "2026-08-10T13:27:25.046Z" },
461
+ { url = "https://files.pythonhosted.org/packages/24/e0/50cd600b469e5734c72709b6b1838b6bc63f307b573c772c3132d6ecfe92/greenlet-3.5.5-cp314-cp314t-macosx_11_0_universal2.whl", hash = "sha256:0e5a7de979d764aea1f5b6e95cf92b5b37741b9823702041f34b126e7f690277", size = 305471, upload-time = "2026-08-10T13:26:20.568Z" },
462
+ { url = "https://files.pythonhosted.org/packages/75/a3/77acd66dfc6387b5219b2080806c0cabb73c10eb1bb44b413c40a62015ba/greenlet-3.5.5-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:fef01bd457f11fc158b130ca0027a3c365693280e8e231b65bdaf57999f39f5b", size = 672470, upload-time = "2026-08-10T14:14:39.058Z" },
463
+ { url = "https://files.pythonhosted.org/packages/b9/71/0d178142dca3ec19f46fb2212ae73d30ad53b9d548dc64804086033a7089/greenlet-3.5.5-cp314-cp314t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:5173a72310725a74afc82c164f0e52cb8ad0de62f2bb623f24f6c0cc07d80272", size = 679973, upload-time = "2026-08-10T14:27:30.072Z" },
464
+ { url = "https://files.pythonhosted.org/packages/aa/ac/0d7887aa4bbfc9eba075cc428244dfc96f623478454d5ec81180d0d6bd5a/greenlet-3.5.5-cp314-cp314t-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:5e9ec2e7c98e895fcea0c5cc57b2606cf86ece6d0a56578f3eb225e2af4f0387", size = 681587, upload-time = "2026-08-10T14:30:13.519Z" },
465
+ { url = "https://files.pythonhosted.org/packages/6e/31/46eb8567302eaf787abf88d09df014e14ae3baf460af1b8b0efdbd3efcd5/greenlet-3.5.5-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:44f08341873200ba8a60a8bc14ace3d91f1754f7fa7bc66157714a8cd420a476", size = 676634, upload-time = "2026-08-10T13:40:53.004Z" },
466
+ { url = "https://files.pythonhosted.org/packages/4f/18/8d58ba1c429b0383e3219a3d0e0bba241d0444d8ed05b73349953c7d7c7b/greenlet-3.5.5-cp314-cp314t-manylinux_2_39_riscv64.whl", hash = "sha256:102817506f6090b5176c746a82603341a549b40e5c3d5b72a4c672228a918c41", size = 510175, upload-time = "2026-08-10T14:30:07.047Z" },
467
+ { url = "https://files.pythonhosted.org/packages/a3/e9/b88bbf5b29970cb84172dc2c32aa3e5e579ceb94c808e81c826454138850/greenlet-3.5.5-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:d246c0db9a2513cd45f019ba178ea4d4d4705bd210ee465e2c15d76a1ab13874", size = 1637320, upload-time = "2026-08-10T14:15:09.317Z" },
468
+ { url = "https://files.pythonhosted.org/packages/6d/8c/7631ed29cc6f0392f11830076e172ce4885e70b0bc2c1bce1731176d4b4e/greenlet-3.5.5-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:72507285b5caa1d17904a3f7c322ca780823a54170a0e04ec3f37bcc60d4db71", size = 1697412, upload-time = "2026-08-10T13:40:34.924Z" },
469
+ { url = "https://files.pythonhosted.org/packages/da/0f/f7dd935f9c4cb1be49098770587f54d8a78518e55c89bce86c4fb4109057/greenlet-3.5.5-cp314-cp314t-win_amd64.whl", hash = "sha256:7805655781fb8f28a55d05fe57ed61f5f10f1892fb587673e3bb5264f28041f0", size = 331514, upload-time = "2026-08-10T13:29:20.611Z" },
430
470
  ]
431
471
 
432
472
  [[package]]
@@ -502,6 +542,15 @@ wheels = [
502
542
  { url = "https://files.pythonhosted.org/packages/15/aa/0aca39a37d3c7eb941ba736ede56d689e7be91cab5d9ca846bde3999eba6/isodate-0.7.2-py3-none-any.whl", hash = "sha256:28009937d8031054830160fce6d409ed342816b543597cece116d966c6d99e15", size = 22320, upload-time = "2024-10-08T23:04:09.501Z" },
503
543
  ]
504
544
 
545
+ [[package]]
546
+ name = "jmespath"
547
+ version = "1.1.0"
548
+ source = { registry = "https://pypi.org/simple" }
549
+ sdist = { url = "https://files.pythonhosted.org/packages/d3/59/322338183ecda247fb5d1763a6cbe46eff7222eaeebafd9fa65d4bf5cb11/jmespath-1.1.0.tar.gz", hash = "sha256:472c87d80f36026ae83c6ddd0f1d05d4e510134ed462851fd5f754c8c3cbb88d", size = 27377, upload-time = "2026-01-22T16:35:26.279Z" }
550
+ wheels = [
551
+ { url = "https://files.pythonhosted.org/packages/14/2f/967ba146e6d58cf6a652da73885f52fc68001525b4197effc174321d70b4/jmespath-1.1.0-py3-none-any.whl", hash = "sha256:a5663118de4908c91729bea0acadca56526eb2698e83de10cd116ae0f4e97c64", size = 20419, upload-time = "2026-01-22T16:35:24.919Z" },
552
+ ]
553
+
505
554
  [[package]]
506
555
  name = "libvalkey"
507
556
  version = "4.1.0"
@@ -994,6 +1043,18 @@ wheels = [
994
1043
  { url = "https://files.pythonhosted.org/packages/5a/cc/06253936f4a7fa2e0f48dfe6d851d9c56df896a9ab09ac019d70b760619c/pytest_mock-3.15.1-py3-none-any.whl", hash = "sha256:0a25e2eb88fe5168d535041d09a4529a188176ae608a6d249ee65abc0949630d", size = 10095, upload-time = "2025-09-16T16:37:25.734Z" },
995
1044
  ]
996
1045
 
1046
+ [[package]]
1047
+ name = "python-dateutil"
1048
+ version = "2.9.0.post0"
1049
+ source = { registry = "https://pypi.org/simple" }
1050
+ dependencies = [
1051
+ { name = "six" },
1052
+ ]
1053
+ sdist = { url = "https://files.pythonhosted.org/packages/66/c0/0c8b6ad9f17a802ee498c46e004a0eb49bc148f2fd230864601a86dcf6db/python-dateutil-2.9.0.post0.tar.gz", hash = "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3", size = 342432, upload-time = "2024-03-01T18:36:20.211Z" }
1054
+ wheels = [
1055
+ { url = "https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427", size = 229892, upload-time = "2024-03-01T18:36:18.57Z" },
1056
+ ]
1057
+
997
1058
  [[package]]
998
1059
  name = "python-discovery"
999
1060
  version = "1.5.1"
@@ -1026,6 +1087,7 @@ dependencies = [
1026
1087
 
1027
1088
  [package.optional-dependencies]
1028
1089
  all = [
1090
+ { name = "aiobotocore" },
1029
1091
  { name = "aiohttp", extra = ["speedups"] },
1030
1092
  { name = "asyncpg" },
1031
1093
  { name = "certifi" },
@@ -1037,6 +1099,7 @@ all = [
1037
1099
  { name = "zeep", extra = ["async"] },
1038
1100
  ]
1039
1101
  api-client = [
1102
+ { name = "aiobotocore" },
1040
1103
  { name = "aiohttp", extra = ["speedups"] },
1041
1104
  { name = "certifi" },
1042
1105
  { name = "lxml" },
@@ -1044,11 +1107,13 @@ api-client = [
1044
1107
  { name = "zeep", extra = ["async"] },
1045
1108
  ]
1046
1109
  audit = [
1110
+ { name = "aiobotocore" },
1047
1111
  { name = "lxml" },
1048
1112
  { name = "object-storage-client" },
1049
1113
  { name = "zeep", extra = ["async"] },
1050
1114
  ]
1051
1115
  authn = [
1116
+ { name = "aiobotocore" },
1052
1117
  { name = "aiohttp", extra = ["speedups"] },
1053
1118
  { name = "certifi" },
1054
1119
  { name = "lxml" },
@@ -1056,6 +1121,7 @@ authn = [
1056
1121
  { name = "zeep", extra = ["async"] },
1057
1122
  ]
1058
1123
  authz = [
1124
+ { name = "aiobotocore" },
1059
1125
  { name = "aiohttp", extra = ["speedups"] },
1060
1126
  { name = "asyncpg" },
1061
1127
  { name = "certifi" },
@@ -1072,6 +1138,7 @@ database = [
1072
1138
  { name = "sqlalchemy", extra = ["asyncio"] },
1073
1139
  ]
1074
1140
  object-storage = [
1141
+ { name = "aiobotocore" },
1075
1142
  { name = "object-storage-client" },
1076
1143
  ]
1077
1144
  soap-client = [
@@ -1103,6 +1170,7 @@ testing = [
1103
1170
 
1104
1171
  [package.metadata]
1105
1172
  requires-dist = [
1173
+ { name = "aiobotocore", marker = "extra == 'object-storage'", specifier = "==3.9.0" },
1106
1174
  { name = "aiohttp", extras = ["speedups"], marker = "extra == 'api-client'", specifier = ">=3.14.1,<3.15.0" },
1107
1175
  { name = "aiohttp", extras = ["speedups"], marker = "extra == 'authn'", specifier = ">=3.14.3,<3.15.0" },
1108
1176
  { name = "aiohttp", extras = ["speedups"], marker = "extra == 'soap-client'", specifier = ">=3.14.3,<3.15.0" },
@@ -1262,6 +1330,15 @@ wheels = [
1262
1330
  { url = "https://files.pythonhosted.org/packages/c3/b4/02ac1d9833b882c87b3a4e82703e70eac4ab33d0d15fb123e60bb01f3bc1/setuptools_scm-10.2.1-py3-none-any.whl", hash = "sha256:b7c82f4102d389ee57dc66ccdb4f9b4bca3c40ba83b43f1f63d68ccd72db2580", size = 29078, upload-time = "2026-07-21T08:08:03.293Z" },
1263
1331
  ]
1264
1332
 
1333
+ [[package]]
1334
+ name = "six"
1335
+ version = "1.17.0"
1336
+ source = { registry = "https://pypi.org/simple" }
1337
+ sdist = { url = "https://files.pythonhosted.org/packages/94/e7/b2c673351809dca68a0e064b6af791aa332cf192da575fd474ed7d6f16a2/six-1.17.0.tar.gz", hash = "sha256:ff70335d468e7eb6ec65b95b99d3a2836546063f63acc5171de367e834932a81", size = 34031, upload-time = "2024-12-04T17:35:28.174Z" }
1338
+ wheels = [
1339
+ { url = "https://files.pythonhosted.org/packages/b7/ce/149a00dd41f10bc29e5921b496af8b574d8413afcd5e30dfa0ed46c2cc5e/six-1.17.0-py2.py3-none-any.whl", hash = "sha256:4721f391ed90541fddacab5acf947aa0d3dc7d27b2e1e8eda2be8970586c3274", size = 11050, upload-time = "2024-12-04T17:35:26.475Z" },
1340
+ ]
1341
+
1265
1342
  [[package]]
1266
1343
  name = "sqlalchemy"
1267
1344
  version = "2.0.51"
@@ -1330,14 +1407,14 @@ wheels = [
1330
1407
 
1331
1408
  [[package]]
1332
1409
  name = "typing-inspection"
1333
- version = "0.4.2"
1410
+ version = "0.4.3"
1334
1411
  source = { registry = "https://pypi.org/simple" }
1335
1412
  dependencies = [
1336
1413
  { name = "typing-extensions" },
1337
1414
  ]
1338
- sdist = { url = "https://files.pythonhosted.org/packages/55/e3/70399cb7dd41c10ac53367ae42139cf4b1ca5f36bb3dc6c9d33acdb43655/typing_inspection-0.4.2.tar.gz", hash = "sha256:ba561c48a67c5958007083d386c3295464928b01faa735ab8547c5692e87f464", size = 75949, upload-time = "2025-10-01T02:14:41.687Z" }
1415
+ sdist = { url = "https://files.pythonhosted.org/packages/6d/bc/4eae18cd40c65798a16267572ba346c11f599d44b01603dbd843342042bc/typing_inspection-0.4.3.tar.gz", hash = "sha256:c5f9ec1530b5c1e2c9bc34a84d9a3466ed1b2f3f2fa9f901368d9c5596210e4d", size = 76711, upload-time = "2026-08-10T09:39:18.063Z" }
1339
1416
  wheels = [
1340
- { url = "https://files.pythonhosted.org/packages/dc/9b/47798a6c91d8bdb567fe2698fe81e0c6b7cb7ef4d13da4114b41d239f65d/typing_inspection-0.4.2-py3-none-any.whl", hash = "sha256:4ed1cacbdc298c220f1bd249ed5287caa16f34d44ef4e9c3d0cbad5b521545e7", size = 14611, upload-time = "2025-10-01T02:14:40.154Z" },
1417
+ { url = "https://files.pythonhosted.org/packages/42/f7/7a3935abdebd5cf18705a5f0335dd6a3a18bef3baa7cb9edc3b6b9922cc8/typing_inspection-0.4.3-py3-none-any.whl", hash = "sha256:5f42b23858a91e0b4ef521f5418f03a0da3c9216fd2995ef5e73463100e676cd", size = 14693, upload-time = "2026-08-10T09:39:16.693Z" },
1341
1418
  ]
1342
1419
 
1343
1420
  [[package]]
@@ -1402,6 +1479,37 @@ wheels = [
1402
1479
  { url = "https://files.pythonhosted.org/packages/87/1b/9e33c09813d65e248f7f773119148a612516a4bea93e9c6f545f78455b7c/wheel-0.47.0-py3-none-any.whl", hash = "sha256:212281cab4dff978f6cedd499cd893e1f620791ca6ff7107cf270781e587eced", size = 32218, upload-time = "2026-04-22T15:51:26.296Z" },
1403
1480
  ]
1404
1481
 
1482
+ [[package]]
1483
+ name = "wrapt"
1484
+ version = "2.3.0"
1485
+ source = { registry = "https://pypi.org/simple" }
1486
+ sdist = { url = "https://files.pythonhosted.org/packages/2b/b0/c1f5a970721f06b85c0cd5142e0ff8fe067708abd779b0c4f4be7d61d09f/wrapt-2.3.0.tar.gz", hash = "sha256:681a2d0eefd721998f90642762b8e75c2159ec531b20ad5e437245ea7b06a107", size = 131509, upload-time = "2026-07-28T06:06:14.895Z" }
1487
+ wheels = [
1488
+ { url = "https://files.pythonhosted.org/packages/58/10/b073beaea89bc0d3670a75ff51139430a54b6af7ba7796507730634536dd/wrapt-2.3.0-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:ea52a0d0f08c584943d5764be0e84efa912c8da23c23e1e285ff2f5641c18fcc", size = 81978, upload-time = "2026-07-28T06:05:21.133Z" },
1489
+ { url = "https://files.pythonhosted.org/packages/b3/31/0916d9cebf848ed3f1a0c1888faee421747df77331e4db2bc527a9a85988/wrapt-2.3.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:fd85b0aa88efdb189d6ae2f35f4526943a8f091c38599c9c31478241c819e6a1", size = 82518, upload-time = "2026-07-28T06:05:22.562Z" },
1490
+ { url = "https://files.pythonhosted.org/packages/f5/73/31c1bf0f3384062751c2094dadb314916d70aa9b6bfd26d994b4a7b393fa/wrapt-2.3.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:141ed6211286a9660d8d6702de598b43f0934b4f0eda16393f100a80f501d945", size = 170187, upload-time = "2026-07-28T06:05:23.904Z" },
1491
+ { url = "https://files.pythonhosted.org/packages/ed/25/fce087d54b79b8905f3c3c9dd5f454bbd8d8acb80b960c4a6aee5b4659b3/wrapt-2.3.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:2e49885a62ec4ee854d1b9e6371fda6afd219917225752abf729a3f36d4df9a5", size = 169288, upload-time = "2026-07-28T06:05:25.378Z" },
1492
+ { url = "https://files.pythonhosted.org/packages/c7/30/0d09e6dddc6b7a7230ac77f50254b5980ab4fcd22976f72f8cc8a0404458/wrapt-2.3.0-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:1d6159c9b2fefec02314e1332dbbbfaf960e369dfd26bcf7f8b258b5732065b3", size = 160932, upload-time = "2026-07-28T06:05:27.022Z" },
1493
+ { url = "https://files.pythonhosted.org/packages/2c/ca/0913af0d2ec0c43865d32d615f518fea66c13c5c930e489e9b0de248e9a8/wrapt-2.3.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:24da48596326ef8e448cfa837b454f638713d3531262375f00e5a9681682fc07", size = 169017, upload-time = "2026-07-28T06:05:28.501Z" },
1494
+ { url = "https://files.pythonhosted.org/packages/c3/f2/3d1e47ea81b822210f5df1bf942fd90780a75c055243d569b664529dea88/wrapt-2.3.0-cp314-cp314-musllinux_1_2_riscv64.whl", hash = "sha256:cd3a2edf0427013736b8127955cec62608c56e53ea47e82812ea32059cda407f", size = 159065, upload-time = "2026-07-28T06:05:30.01Z" },
1495
+ { url = "https://files.pythonhosted.org/packages/43/a5/ef2066ced8e5fca204e2b361e9708e36555b40949c583d997ea3b590817d/wrapt-2.3.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:4fa0df3bff4e7ce45759f33fd39335fe2f60477bb9ecf7b8aa41e7d07ee36a23", size = 168821, upload-time = "2026-07-28T06:05:31.649Z" },
1496
+ { url = "https://files.pythonhosted.org/packages/d5/e1/016104650d4e572fa91506eb396b3dd8efbccc9284fdc1c9479c3d21db28/wrapt-2.3.0-cp314-cp314-win32.whl", hash = "sha256:2935d5454b3f179a29b12cf390ee47246740ba2c3a7545b1b46ba31a5f2a4a0b", size = 78700, upload-time = "2026-07-28T06:05:33.391Z" },
1497
+ { url = "https://files.pythonhosted.org/packages/3d/97/6fdc20a9f2ca304748b3f0819cbf377d55260562777bf0b615431bc3c181/wrapt-2.3.0-cp314-cp314-win_amd64.whl", hash = "sha256:cc2cea812e5cb179a796b766747e7d3b21088760d8deb95676d482b8c8e6fa7d", size = 81422, upload-time = "2026-07-28T06:05:34.774Z" },
1498
+ { url = "https://files.pythonhosted.org/packages/5e/a4/9cbd53bf05746bea2c392af39cb052427a8ec95cbd494d930733d8f44681/wrapt-2.3.0-cp314-cp314-win_arm64.whl", hash = "sha256:22cc5c0a717bd4da87018ae0bffd4c19c6fb679d3ff357216ba566ab26c76cab", size = 80639, upload-time = "2026-07-28T06:05:36.228Z" },
1499
+ { url = "https://files.pythonhosted.org/packages/43/bb/6c5e4a0f66ea0d2b2dd267e8dd05a0014eea56840b3c8595d40b0a5d1f91/wrapt-2.3.0-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:a6b5984cd65dd639546f0eb4b8eacf1c31cb2fe9fb5c27bffe240987cdb2cf84", size = 84030, upload-time = "2026-07-28T06:05:37.714Z" },
1500
+ { url = "https://files.pythonhosted.org/packages/6a/eb/a1aedf03283bc9cbf8a1783995ddc54e3c5a86878f19002d2c428494f4c5/wrapt-2.3.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:c88abcf53daef80e01a75c7530e727fa6e2c1888fe83e3dcdba4c96216a1f5c7", size = 84419, upload-time = "2026-07-28T06:05:39.131Z" },
1501
+ { url = "https://files.pythonhosted.org/packages/63/61/50d511c0dc5105563849e86daa3e16ac7feef699f79fb05af45ea70107d5/wrapt-2.3.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:85de890ff968196e92dd1ae73a9fb8970495e7650a457b1c9ef0ac3dd550bce2", size = 207171, upload-time = "2026-07-28T06:05:40.69Z" },
1502
+ { url = "https://files.pythonhosted.org/packages/3f/59/9b538cf7795217e810699d16bc88b96a830d9b5c403eb2ec2db6b5f2ae81/wrapt-2.3.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:50f416b74d092bb9f41b424e90dd457f365f7ba4b11de62a23679769a21bd85c", size = 214329, upload-time = "2026-07-28T06:05:42.287Z" },
1503
+ { url = "https://files.pythonhosted.org/packages/b3/28/9935d62b1499e5c8b3d191e99ba4eb31ca237a0b699142011a837e9dc7ea/wrapt-2.3.0-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:39febbee6d77301d31da6996b152ce52452da7c7ef72aba10c2fa976dff9c295", size = 199079, upload-time = "2026-07-28T06:05:43.958Z" },
1504
+ { url = "https://files.pythonhosted.org/packages/2b/01/4446b80fa2ffa47a3449b250d004ba1c1937f07f64a179608fec735df866/wrapt-2.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:93513bec052c6cd987f9f580c3df068c8bc4ebae6543736be3ca7ec5959cafcd", size = 209992, upload-time = "2026-07-28T06:05:45.677Z" },
1505
+ { url = "https://files.pythonhosted.org/packages/d4/07/56f26c9f9979586a021e8148747004aba4498f49458c90b0502969b904e1/wrapt-2.3.0-cp314-cp314t-musllinux_1_2_riscv64.whl", hash = "sha256:729126e667da34d251b8ebf8a45ef0c5ddadc21542b3d6e1abf4259ece6508df", size = 196334, upload-time = "2026-07-28T06:05:47.608Z" },
1506
+ { url = "https://files.pythonhosted.org/packages/8b/41/6d7bcc895b0f28b2250e10908f060687b9165429dcd7f22ddb3d4c031b74/wrapt-2.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:626b69db2021aa01671ec7bbc9740e558522bd44c18cf2ce69bf3d666a014109", size = 202644, upload-time = "2026-07-28T06:05:49.183Z" },
1507
+ { url = "https://files.pythonhosted.org/packages/cd/25/7860927edba06b758b8852a6f02e832be715563c67a6795d94350bc81099/wrapt-2.3.0-cp314-cp314t-win32.whl", hash = "sha256:629d73378082c00a8173031f9fb30a3ac6abbc894a5bfdfae71fabc60642d501", size = 79685, upload-time = "2026-07-28T06:05:50.976Z" },
1508
+ { url = "https://files.pythonhosted.org/packages/c4/0f/270bafe92fde3b069a39bc01e39ee79340895b335640df861d43d2a51885/wrapt-2.3.0-cp314-cp314t-win_amd64.whl", hash = "sha256:42869085687f0aefd57c0f636c3f9354f8ffb321a8ba9cb52d19beb796e561c5", size = 83104, upload-time = "2026-07-28T06:05:52.405Z" },
1509
+ { url = "https://files.pythonhosted.org/packages/55/b3/af176d79a8515a8a720eccdad9a96f6e31a30abf2865430c8c42adf2fd13/wrapt-2.3.0-cp314-cp314t-win_arm64.whl", hash = "sha256:b1e5aa486e269b00ed35e64771c7d0ab8096cfd2643405ca8cd60ebedc099a51", size = 81774, upload-time = "2026-07-28T06:05:53.902Z" },
1510
+ { url = "https://files.pythonhosted.org/packages/00/39/3daf9f47be208606586de4568ba6713db53ebc8fd7a575aea1fe57983b69/wrapt-2.3.0-py3-none-any.whl", hash = "sha256:d8c7ed08477429752b8c44991f40ad7838b18332a160698740a6bfbc10d998a2", size = 61866, upload-time = "2026-07-28T06:06:12.9Z" },
1511
+ ]
1512
+
1405
1513
  [[package]]
1406
1514
  name = "yarl"
1407
1515
  version = "1.24.5"
@@ -1,8 +0,0 @@
1
- {
2
- "tag": "0.24.1",
3
- "distance": 0,
4
- "node": "g7c1596b05f0e3a0e494f43beb00a886f2bc9f848",
5
- "dirty": false,
6
- "branch": "HEAD",
7
- "node_date": "2026-08-09"
8
- }