python3-commons 0.22.10__tar.gz → 0.23.0__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.22.10 → python3_commons-0.23.0}/PKG-INFO +2 -2
  2. {python3_commons-0.22.10 → python3_commons-0.23.0}/pyproject.toml +1 -1
  3. {python3_commons-0.22.10 → python3_commons-0.23.0}/src/python3_commons.egg-info/PKG-INFO +2 -2
  4. {python3_commons-0.22.10 → python3_commons-0.23.0}/src/python3_commons.egg-info/requires.txt +1 -1
  5. python3_commons-0.23.0/src/python3_commons.egg-info/scm_version.json +8 -0
  6. {python3_commons-0.22.10 → python3_commons-0.23.0}/uv.lock +65 -37
  7. python3_commons-0.22.10/src/python3_commons.egg-info/scm_version.json +0 -8
  8. {python3_commons-0.22.10 → python3_commons-0.23.0}/.coveragerc +0 -0
  9. {python3_commons-0.22.10 → python3_commons-0.23.0}/.devcontainer/Dockerfile +0 -0
  10. {python3_commons-0.22.10 → python3_commons-0.23.0}/.devcontainer/devcontainer.json +0 -0
  11. {python3_commons-0.22.10 → python3_commons-0.23.0}/.devcontainer/docker-compose.yml +0 -0
  12. {python3_commons-0.22.10 → python3_commons-0.23.0}/.env_template +0 -0
  13. {python3_commons-0.22.10 → python3_commons-0.23.0}/.github/workflows/checks.yml +0 -0
  14. {python3_commons-0.22.10 → python3_commons-0.23.0}/.github/workflows/python-publish.yaml +0 -0
  15. {python3_commons-0.22.10 → python3_commons-0.23.0}/.github/workflows/release-on-tag-push.yml +0 -0
  16. {python3_commons-0.22.10 → python3_commons-0.23.0}/.gitignore +0 -0
  17. {python3_commons-0.22.10 → python3_commons-0.23.0}/.pre-commit-config.yaml +0 -0
  18. {python3_commons-0.22.10 → python3_commons-0.23.0}/.python-version +0 -0
  19. {python3_commons-0.22.10 → python3_commons-0.23.0}/AUTHORS.rst +0 -0
  20. {python3_commons-0.22.10 → python3_commons-0.23.0}/CHANGELOG.rst +0 -0
  21. {python3_commons-0.22.10 → python3_commons-0.23.0}/LICENSE +0 -0
  22. {python3_commons-0.22.10 → python3_commons-0.23.0}/README.md +0 -0
  23. {python3_commons-0.22.10 → python3_commons-0.23.0}/README.rst +0 -0
  24. {python3_commons-0.22.10 → python3_commons-0.23.0}/docs/Makefile +0 -0
  25. {python3_commons-0.22.10 → python3_commons-0.23.0}/docs/_static/.gitignore +0 -0
  26. {python3_commons-0.22.10 → python3_commons-0.23.0}/docs/authors.rst +0 -0
  27. {python3_commons-0.22.10 → python3_commons-0.23.0}/docs/changelog.rst +0 -0
  28. {python3_commons-0.22.10 → python3_commons-0.23.0}/docs/conf.py +0 -0
  29. {python3_commons-0.22.10 → python3_commons-0.23.0}/docs/index.rst +0 -0
  30. {python3_commons-0.22.10 → python3_commons-0.23.0}/docs/license.rst +0 -0
  31. {python3_commons-0.22.10 → python3_commons-0.23.0}/setup.cfg +0 -0
  32. {python3_commons-0.22.10 → python3_commons-0.23.0}/src/python3_commons/__init__.py +0 -0
  33. {python3_commons-0.22.10 → python3_commons-0.23.0}/src/python3_commons/api_client.py +0 -0
  34. {python3_commons-0.22.10 → python3_commons-0.23.0}/src/python3_commons/async_functools.py +0 -0
  35. {python3_commons-0.22.10 → python3_commons-0.23.0}/src/python3_commons/audit.py +0 -0
  36. {python3_commons-0.22.10 → python3_commons-0.23.0}/src/python3_commons/auth.py +0 -0
  37. {python3_commons-0.22.10 → python3_commons-0.23.0}/src/python3_commons/cache.py +0 -0
  38. {python3_commons-0.22.10 → python3_commons-0.23.0}/src/python3_commons/conf.py +0 -0
  39. {python3_commons-0.22.10 → python3_commons-0.23.0}/src/python3_commons/db/__init__.py +0 -0
  40. {python3_commons-0.22.10 → python3_commons-0.23.0}/src/python3_commons/db/helpers.py +0 -0
  41. {python3_commons-0.22.10 → python3_commons-0.23.0}/src/python3_commons/db/models/__init__.py +0 -0
  42. {python3_commons-0.22.10 → python3_commons-0.23.0}/src/python3_commons/db/models/auth.py +0 -0
  43. {python3_commons-0.22.10 → python3_commons-0.23.0}/src/python3_commons/db/models/common.py +0 -0
  44. {python3_commons-0.22.10 → python3_commons-0.23.0}/src/python3_commons/db/models/rbac.py +0 -0
  45. {python3_commons-0.22.10 → python3_commons-0.23.0}/src/python3_commons/db/models/users.py +0 -0
  46. {python3_commons-0.22.10 → python3_commons-0.23.0}/src/python3_commons/exceptions.py +0 -0
  47. {python3_commons-0.22.10 → python3_commons-0.23.0}/src/python3_commons/fs.py +0 -0
  48. {python3_commons-0.22.10 → python3_commons-0.23.0}/src/python3_commons/generators.py +0 -0
  49. {python3_commons-0.22.10 → python3_commons-0.23.0}/src/python3_commons/helpers.py +0 -0
  50. {python3_commons-0.22.10 → python3_commons-0.23.0}/src/python3_commons/log/__init__.py +0 -0
  51. {python3_commons-0.22.10 → python3_commons-0.23.0}/src/python3_commons/log/filters.py +0 -0
  52. {python3_commons-0.22.10 → python3_commons-0.23.0}/src/python3_commons/log/formatters.py +0 -0
  53. {python3_commons-0.22.10 → python3_commons-0.23.0}/src/python3_commons/object_storage.py +0 -0
  54. {python3_commons-0.22.10 → python3_commons-0.23.0}/src/python3_commons/permissions.py +0 -0
  55. {python3_commons-0.22.10 → python3_commons-0.23.0}/src/python3_commons/serializers/__init__.py +0 -0
  56. {python3_commons-0.22.10 → python3_commons-0.23.0}/src/python3_commons/serializers/common.py +0 -0
  57. {python3_commons-0.22.10 → python3_commons-0.23.0}/src/python3_commons/serializers/json.py +0 -0
  58. {python3_commons-0.22.10 → python3_commons-0.23.0}/src/python3_commons/serializers/msgpack.py +0 -0
  59. {python3_commons-0.22.10 → python3_commons-0.23.0}/src/python3_commons/serializers/msgspec.py +0 -0
  60. {python3_commons-0.22.10 → python3_commons-0.23.0}/src/python3_commons/soap_client.py +0 -0
  61. {python3_commons-0.22.10 → python3_commons-0.23.0}/src/python3_commons.egg-info/SOURCES.txt +0 -0
  62. {python3_commons-0.22.10 → python3_commons-0.23.0}/src/python3_commons.egg-info/dependency_links.txt +0 -0
  63. {python3_commons-0.22.10 → python3_commons-0.23.0}/src/python3_commons.egg-info/scm_file_list.json +0 -0
  64. {python3_commons-0.22.10 → python3_commons-0.23.0}/src/python3_commons.egg-info/top_level.txt +0 -0
  65. {python3_commons-0.22.10 → python3_commons-0.23.0}/tests/__init__.py +0 -0
  66. {python3_commons-0.22.10 → python3_commons-0.23.0}/tests/integration/__init__.py +0 -0
  67. {python3_commons-0.22.10 → python3_commons-0.23.0}/tests/integration/conftest.py +0 -0
  68. {python3_commons-0.22.10 → python3_commons-0.23.0}/tests/integration/test_auth.py +0 -0
  69. {python3_commons-0.22.10 → python3_commons-0.23.0}/tests/integration/test_cache.py +0 -0
  70. {python3_commons-0.22.10 → python3_commons-0.23.0}/tests/integration/test_osc.py +0 -0
  71. {python3_commons-0.22.10 → python3_commons-0.23.0}/tests/unit/__init__.py +0 -0
  72. {python3_commons-0.22.10 → python3_commons-0.23.0}/tests/unit/conftest.py +0 -0
  73. {python3_commons-0.22.10 → python3_commons-0.23.0}/tests/unit/db/__init__.py +0 -0
  74. {python3_commons-0.22.10 → python3_commons-0.23.0}/tests/unit/db/test_async_session_manager.py +0 -0
  75. {python3_commons-0.22.10 → python3_commons-0.23.0}/tests/unit/log/__init__.py +0 -0
  76. {python3_commons-0.22.10 → python3_commons-0.23.0}/tests/unit/log/test_formatters.py +0 -0
  77. {python3_commons-0.22.10 → python3_commons-0.23.0}/tests/unit/test_async_functools.py +0 -0
  78. {python3_commons-0.22.10 → python3_commons-0.23.0}/tests/unit/test_audit.py +0 -0
  79. {python3_commons-0.22.10 → python3_commons-0.23.0}/tests/unit/test_auth.py +0 -0
  80. {python3_commons-0.22.10 → python3_commons-0.23.0}/tests/unit/test_helpers.py +0 -0
  81. {python3_commons-0.22.10 → python3_commons-0.23.0}/tests/unit/test_msgpack.py +0 -0
  82. {python3_commons-0.22.10 → python3_commons-0.23.0}/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.22.10
3
+ Version: 0.23.0
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
@@ -39,7 +39,7 @@ 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
41
  Requires-Dist: aiobotocore~=3.7.0; extra == "object-storage"
42
- Requires-Dist: object-storage-client~=0.0.41; extra == "object-storage"
42
+ Requires-Dist: object-storage-client~=0.1.0; extra == "object-storage"
43
43
  Provides-Extra: soap-client
44
44
  Requires-Dist: aiohttp[speedups]<3.15.0,>=3.14.1; extra == "soap-client"
45
45
  Requires-Dist: certifi~=2026.6.17; extra == "soap-client"
@@ -55,7 +55,7 @@ database = [
55
55
  ]
56
56
  object-storage = [
57
57
  "aiobotocore~=3.7.0",
58
- "object-storage-client~=0.0.41"
58
+ "object-storage-client~=0.1.0"
59
59
  ]
60
60
  soap-client = [
61
61
  "aiohttp[speedups]>=3.14.1,<3.15.0",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: python3-commons
3
- Version: 0.22.10
3
+ Version: 0.23.0
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
@@ -39,7 +39,7 @@ 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
41
  Requires-Dist: aiobotocore~=3.7.0; extra == "object-storage"
42
- Requires-Dist: object-storage-client~=0.0.41; extra == "object-storage"
42
+ Requires-Dist: object-storage-client~=0.1.0; extra == "object-storage"
43
43
  Provides-Extra: soap-client
44
44
  Requires-Dist: aiohttp[speedups]<3.15.0,>=3.14.1; extra == "soap-client"
45
45
  Requires-Dist: certifi~=2026.6.17; extra == "soap-client"
@@ -33,7 +33,7 @@ SQLAlchemy[asyncio]~=2.0.51
33
33
 
34
34
  [object-storage]
35
35
  aiobotocore~=3.7.0
36
- object-storage-client~=0.0.41
36
+ object-storage-client~=0.1.0
37
37
 
38
38
  [soap-client]
39
39
  aiohttp[speedups]<3.15.0,>=3.14.1
@@ -0,0 +1,8 @@
1
+ {
2
+ "tag": "0.23.0",
3
+ "distance": 0,
4
+ "node": "gb4816eebb4c55d8d2698ac896129345804e225db",
5
+ "dirty": false,
6
+ "branch": "HEAD",
7
+ "node_date": "2026-07-19"
8
+ }
@@ -407,11 +407,11 @@ wheels = [
407
407
 
408
408
  [[package]]
409
409
  name = "filelock"
410
- version = "3.30.2"
410
+ version = "3.31.0"
411
411
  source = { registry = "https://pypi.org/simple" }
412
- sdist = { url = "https://files.pythonhosted.org/packages/02/f7/2165ef325da22d854b8f81ca4799395f2eb6afa55cdb52c7710f028b5336/filelock-3.30.2.tar.gz", hash = "sha256:1ea7c857465c897a4a6e64c1aace28ff6b83f5bc66c1c06ea148efa65bc2ec5d", size = 176823, upload-time = "2026-07-16T19:50:42.724Z" }
412
+ sdist = { url = "https://files.pythonhosted.org/packages/4a/9f/994e80905542b748eb5b9f36d71458f0aea51a7be0fcb52ad959787dc1b7/filelock-3.31.0.tar.gz", hash = "sha256:c188cbc4307c18894c5424fa73f97ea7fa127ddf62192487546da3a214d0a381", size = 180931, upload-time = "2026-07-18T05:53:29.262Z" }
413
413
  wheels = [
414
- { url = "https://files.pythonhosted.org/packages/02/df/05118016cad66cd0d7c9417b2d4fc245be35decc4c36810f3c8dbf729d88/filelock-3.30.2-py3-none-any.whl", hash = "sha256:a64b58f75048ec39589983e97f5117163f822261dcb6ba843e098f05aac9663f", size = 94092, upload-time = "2026-07-16T19:50:41.189Z" },
414
+ { url = "https://files.pythonhosted.org/packages/5b/4a/e213905d3b8ad3d35d14fc056b36134a274e7f6a1050e94428b5be10a94c/filelock-3.31.0-py3-none-any.whl", hash = "sha256:739b73e580fe88bb78d830aeddbc492519ece3d97ac8368de13a2032c61010c1", size = 96080, upload-time = "2026-07-18T05:53:27.732Z" },
415
415
  ]
416
416
 
417
417
  [[package]]
@@ -566,9 +566,37 @@ wheels = [
566
566
 
567
567
  [[package]]
568
568
  name = "libvalkey"
569
- version = "4.0.1"
570
- source = { registry = "https://pypi.org/simple" }
571
- sdist = { url = "https://files.pythonhosted.org/packages/38/49/57857ba9d02ba4df3bc1e71044f599c82ea590e928328e6b512dbf720228/libvalkey-4.0.1.tar.gz", hash = "sha256:fe60ef535bc826fc35f4019228a0a46bdce8b41fd6013a7591e822a8a17c3170", size = 109005, upload-time = "2024-11-26T14:35:38.504Z" }
569
+ version = "4.1.0"
570
+ source = { registry = "https://pypi.org/simple" }
571
+ sdist = { url = "https://files.pythonhosted.org/packages/59/d1/67b4c46b71039f4895fb757bcc257c301161782f353c0e3a901bec164ccf/libvalkey-4.1.0.tar.gz", hash = "sha256:b88231e09600909723cd07949982cc7758298027d86504d948a223075f0022f4", size = 118634, upload-time = "2026-07-18T18:44:07.266Z" }
572
+ wheels = [
573
+ { url = "https://files.pythonhosted.org/packages/97/e1/cf043513064d9c8bf3961f7921fb31a993222e76f527672d308bb5f10eb7/libvalkey-4.1.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:505c1bfb4c4c01a48cd82a47f79be34cbec1efb28a6022b5bdaa7039c7ec48ed", size = 45243, upload-time = "2026-07-18T18:43:16.598Z" },
574
+ { url = "https://files.pythonhosted.org/packages/68/11/507cd0ec98a3a8bc3146ba4bc4bab7f5fd7695e22e819be1b00e04760a25/libvalkey-4.1.0-cp314-cp314-macosx_11_0_universal2.whl", hash = "sha256:f19eb6c6bd6c9968b00981832ea7ca1e88cbf1cd4221e4378e9a8023d4884c50", size = 87262, upload-time = "2026-07-18T18:43:17.851Z" },
575
+ { url = "https://files.pythonhosted.org/packages/7a/07/ca864b540680b160305cd64d9652697e2689ffd0e737e75037a39513582e/libvalkey-4.1.0-cp314-cp314-macosx_11_0_x86_64.whl", hash = "sha256:2ec4ab33d7a20a291e0ea3b62ce050708ef29146918f50f48089d7fc7e4d8d10", size = 48191, upload-time = "2026-07-18T18:43:19.145Z" },
576
+ { url = "https://files.pythonhosted.org/packages/56/7b/2ec4a0e8b0828d16a930a971c90fab6b497b2ec498faf4ec863027b967aa/libvalkey-4.1.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e2ab476ac876c4bf33677c253f08419d1fd225061c9876da0aed9d44f8dd9c0b", size = 179921, upload-time = "2026-07-18T18:43:20.513Z" },
577
+ { url = "https://files.pythonhosted.org/packages/29/b1/b410e477a70d21df30c44ce43e47a73e2c596f5919a5d44398908a2c53ab/libvalkey-4.1.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:a60d7030b68ba094ca47d06d4210cf13d3e25eb0f8a9973c2fa536eba67fadfc", size = 191131, upload-time = "2026-07-18T18:43:22.166Z" },
578
+ { url = "https://files.pythonhosted.org/packages/f7/4e/48fe88e8e15787751a84a32335a0d3f105a108cae8e655524959612d920e/libvalkey-4.1.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:49e0c493c5e5b9553ea7b8fe43fabecdb460b6949f82ee7ceed97d640dc0a890", size = 190075, upload-time = "2026-07-18T18:43:23.743Z" },
579
+ { url = "https://files.pythonhosted.org/packages/3e/b9/7f823068183af28ffcfb31a7f4417c7f250cd36d8480f79b1aabbd695a53/libvalkey-4.1.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:57877d42b84583463d7a043081a577684ab066e420748e52f9c3870a0180ef6a", size = 181991, upload-time = "2026-07-18T18:43:25.299Z" },
580
+ { url = "https://files.pythonhosted.org/packages/a1/7d/713bbed83bf31fc3cc9391f5e34a2457b527fa4c830aff00408e528cbe72/libvalkey-4.1.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:439cd91eeeb1db0d2ccdc56d96fc07f6c90b8007167aaf637a9a104255183372", size = 175348, upload-time = "2026-07-18T18:43:26.688Z" },
581
+ { url = "https://files.pythonhosted.org/packages/f6/5f/a4c16bc83036ed1332027b3496f6986af41f8db35faecc03e33d0510dffa/libvalkey-4.1.0-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:bd7a4181faf769fa305c349ef032a2cd99d5eddaa8f7fc177aee41816980e699", size = 186479, upload-time = "2026-07-18T18:43:28.066Z" },
582
+ { url = "https://files.pythonhosted.org/packages/3a/62/bbe7d78db3f21604cac37a83904e382c4f7a7e3eb5e8274ab2105c6fce99/libvalkey-4.1.0-cp314-cp314-musllinux_1_2_s390x.whl", hash = "sha256:8d5173b177a8a07af18f6a02f5e68bfa6c04d2b4528d206a91d34e4a80b0074a", size = 180355, upload-time = "2026-07-18T18:43:29.378Z" },
583
+ { url = "https://files.pythonhosted.org/packages/99/7a/6011e6afe6b8c03123368670eda9a68264bcdaa284665423fa855963eaba/libvalkey-4.1.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:b57fc519467e21ab961fda5d91d1cd91ce09a0f8d0f45d7c4ca4fb2f63ffc85d", size = 178083, upload-time = "2026-07-18T18:43:30.746Z" },
584
+ { url = "https://files.pythonhosted.org/packages/a4/03/e80152d76020ebf7b6879d76def484ea77220bf289f0263db9cb5084939b/libvalkey-4.1.0-cp314-cp314-win32.whl", hash = "sha256:9d3edad35b9b8989795975368e91bbf4cda8a8bb9ccd111d2f9a44da07ec7535", size = 36915, upload-time = "2026-07-18T18:43:31.971Z" },
585
+ { url = "https://files.pythonhosted.org/packages/c1/59/adf7b1043a87294e21ae878bbfd7ff13e31333b0f956c22545a994062fd5/libvalkey-4.1.0-cp314-cp314-win_amd64.whl", hash = "sha256:9d87fdf7ff2d03ebaf48e657bcd132752ec45a00cfcd55872c612ca1b0da72fc", size = 41553, upload-time = "2026-07-18T18:43:33.033Z" },
586
+ { url = "https://files.pythonhosted.org/packages/71/2b/15579fafbfd42517a68131399121b5947948babf9071ae35dc4d2f3eff26/libvalkey-4.1.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:4b0fdea23d9990311e799c664cbda9b3045ea10586d00c6aa2006b61497a5e98", size = 45771, upload-time = "2026-07-18T18:43:34.098Z" },
587
+ { url = "https://files.pythonhosted.org/packages/d7/c4/0b27a858fefb7a3f2ffc19340e575a849a38fb15633a3378297c4e6657f8/libvalkey-4.1.0-cp314-cp314t-macosx_11_0_universal2.whl", hash = "sha256:c02accfe3e144d5fe17acf693d0e05ae399bb6d2f8dcefcd170a3ec36506d01b", size = 88224, upload-time = "2026-07-18T18:43:35.272Z" },
588
+ { url = "https://files.pythonhosted.org/packages/f9/c1/9981daf2cd284364581cd16f9d6683fcb124b5028dda22c9674cba48d893/libvalkey-4.1.0-cp314-cp314t-macosx_11_0_x86_64.whl", hash = "sha256:3c928bc12a0179748170d04a99f7debfe72f6b54136d5aaafd93b1942ff15ea5", size = 48690, upload-time = "2026-07-18T18:43:36.458Z" },
589
+ { url = "https://files.pythonhosted.org/packages/91/1a/78333b873156793fb2cf42b72efdc4e004cc365b4e8b8778a334b364b4b9/libvalkey-4.1.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f619328d88bbd1db24846e4f32a726a1502f0900e388890c39e5965fa116ca62", size = 189611, upload-time = "2026-07-18T18:43:37.831Z" },
590
+ { url = "https://files.pythonhosted.org/packages/d8/78/8e5047e2e53f6eefdb9da36dca6cab9b0e9601f58c631a98cc9397660f53/libvalkey-4.1.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:c8a4e80ecae9fab1df55f2604fa9c593d29781c7acc0555b45409418a0b594dd", size = 200174, upload-time = "2026-07-18T18:43:39.193Z" },
591
+ { url = "https://files.pythonhosted.org/packages/47/ae/e70326d46d78932ce22a593b4db369725214139d57d508b3e9e4fa6e1c5b/libvalkey-4.1.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:d751b40d9515818a3a0758483a707656f77ee4fb2e5e8b44e2a7855861085a76", size = 198929, upload-time = "2026-07-18T18:43:40.565Z" },
592
+ { url = "https://files.pythonhosted.org/packages/8d/57/bc3258b67cf5560424e3a59bd140438131426fcf03974e1a0204e6f9ebf7/libvalkey-4.1.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a1783cb20419ee0c7bd3d4fedb96e70607fd78f575b7d5106e558e6749cb13d9", size = 189984, upload-time = "2026-07-18T18:43:41.907Z" },
593
+ { url = "https://files.pythonhosted.org/packages/ca/f7/e20695e7ab2b905a05a21194bc5ad4e2ff9a6f7160ef86be8e5d0c405f85/libvalkey-4.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:f3864c2081fa369f3b4cdc317dd989104bced8cf4dedfd65a363c55932720ea8", size = 184956, upload-time = "2026-07-18T18:43:43.39Z" },
594
+ { url = "https://files.pythonhosted.org/packages/59/82/3478f083839901c01d7cbfde1496ae0e20d20f24cd7408cf1b8898dc987e/libvalkey-4.1.0-cp314-cp314t-musllinux_1_2_ppc64le.whl", hash = "sha256:130de39ae86eaa874f3b1e25346bf0966046bcde91d4f77ecbd1efa0dbed9b9e", size = 195019, upload-time = "2026-07-18T18:43:44.799Z" },
595
+ { url = "https://files.pythonhosted.org/packages/33/bd/6579a90d22fc0cc1b401dbf894ca17e94d4762bee275a7420a820689182a/libvalkey-4.1.0-cp314-cp314t-musllinux_1_2_s390x.whl", hash = "sha256:774a6482a76bfccbb81dcce2ab4e7e7e54e66de9f86a0cbddcf3b24fc94bc39c", size = 189207, upload-time = "2026-07-18T18:43:46.292Z" },
596
+ { url = "https://files.pythonhosted.org/packages/84/bc/2b001b42927eedf5bd70fe99c4991808fc970b93d9939c05f7005536f003/libvalkey-4.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:da53d00b3af841baf007bf608765d285cca84fc79dd83aee1f401090d6afcf8f", size = 186391, upload-time = "2026-07-18T18:43:47.698Z" },
597
+ { url = "https://files.pythonhosted.org/packages/31/48/79508697810b151c6b7bf6858c2284a7985082da77a40e30165c05aa2a50/libvalkey-4.1.0-cp314-cp314t-win32.whl", hash = "sha256:56900063e752b73803eb8822801f712840f4cc534924ee4246577b3073e1ca1a", size = 37429, upload-time = "2026-07-18T18:43:48.89Z" },
598
+ { url = "https://files.pythonhosted.org/packages/ce/66/718c1ee0a7888aff066d49eb7ea5ff22a2be90d996629d450cba9077b9e0/libvalkey-4.1.0-cp314-cp314t-win_amd64.whl", hash = "sha256:81b953a254674d149771c33ee7b39fefaf327e5aa410dc975fe7cd198664100f", size = 41947, upload-time = "2026-07-18T18:43:49.952Z" },
599
+ ]
572
600
 
573
601
  [[package]]
574
602
  name = "lxml"
@@ -724,14 +752,14 @@ wheels = [
724
752
 
725
753
  [[package]]
726
754
  name = "object-storage-client"
727
- version = "0.0.41"
755
+ version = "0.1.0"
728
756
  source = { registry = "https://pypi.org/simple" }
729
- sdist = { url = "https://files.pythonhosted.org/packages/c3/77/8f50e30d30d679060149be2ecff8c17c0f8cc683f4e1846d480b50fd76e1/object_storage_client-0.0.41.tar.gz", hash = "sha256:17288b63368a36320a7562b096bc87ca4844d33fcf2fdb2bb3c0b88700dfc6ef", size = 70778, upload-time = "2026-07-17T10:40:36.697Z" }
757
+ sdist = { url = "https://files.pythonhosted.org/packages/f1/35/a413901748a78be5148b9ea4074d95548f8ffcd6c257116cf006b74f3f35/object_storage_client-0.1.0.tar.gz", hash = "sha256:304f4858742a3118db96aecb7bf89a753af5dde2100b5d1ddfa1ff4f4ed9a7b0", size = 70845, upload-time = "2026-07-19T19:40:57.594Z" }
730
758
  wheels = [
731
- { url = "https://files.pythonhosted.org/packages/8a/61/9f58c12d7f56ead146d3d9d3ec7bada74e81042ea2d41a59850909bcfc45/object_storage_client-0.0.41-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:2f4236fef60cde8d52d5cec6ae9c43a67b53f23b2fc24a1bfb05a3547595ff38", size = 2940765, upload-time = "2026-07-17T10:40:30.509Z" },
732
- { url = "https://files.pythonhosted.org/packages/51/4c/2e3be51f446a2104e9b7dbb63b7d182b6a8cd1ed72a3d30a0ebc423b2330/object_storage_client-0.0.41-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2fd1bb0756810799dd2be68ce29fef501341e7d8a9adecda36c033f9c2042c11", size = 3942619, upload-time = "2026-07-17T10:40:32.247Z" },
733
- { url = "https://files.pythonhosted.org/packages/2f/ca/2b951d1573e874dd0d1d18980cd577583446463c23a556733a07ec8564c5/object_storage_client-0.0.41-cp314-cp314-manylinux_2_28_aarch64.whl", hash = "sha256:9dfdc80cba3288b8cf45231a1cfac571c47b8df40ca83d66b98067d0ece6df89", size = 3701769, upload-time = "2026-07-17T10:40:33.799Z" },
734
- { url = "https://files.pythonhosted.org/packages/c1/68/da7bf5283e1cd0e486afffe51374c1d11bdbec988f63f8a0b32207a9f9ee/object_storage_client-0.0.41-cp314-cp314-win_amd64.whl", hash = "sha256:b1e8a9b58065ae092a389994e63da29eaba51c41689712ddbc63d76736f6e859", size = 3485382, upload-time = "2026-07-17T10:40:35.433Z" },
759
+ { url = "https://files.pythonhosted.org/packages/be/a3/90577883585282cdce644b76ef05adf9b70cb463b6e042c9358b1e1e025d/object_storage_client-0.1.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:26543f4c96649cb610eb8d6463690436b24ff939722b1de27c6ea2c0552322e0", size = 2939981, upload-time = "2026-07-19T19:40:52.364Z" },
760
+ { url = "https://files.pythonhosted.org/packages/66/69/39f90e6ab5fd705f9e4cde206bed3a3f08a2cddf5af4d8f94619e87536a6/object_storage_client-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c37d6bb9cb809f2585952255b3e5d18361f1fc9b77ae17a46a984cef3a242b3b", size = 3942794, upload-time = "2026-07-19T19:40:53.673Z" },
761
+ { url = "https://files.pythonhosted.org/packages/e9/92/b9e7141167686e04610e4b0466b6df223ba6a4261f9e3873dea433777b73/object_storage_client-0.1.0-cp314-cp314-manylinux_2_28_aarch64.whl", hash = "sha256:160f8e702ea882e142cc8715b558bc47494d482f2f3c97d958370d1f9cc1dc20", size = 3702313, upload-time = "2026-07-19T19:40:55.1Z" },
762
+ { url = "https://files.pythonhosted.org/packages/bf/81/0e796fdcca220d0e3f1fc3f7a9527c5ae5831ecc8efc6cf3c6be57e41d1c/object_storage_client-0.1.0-cp314-cp314-win_amd64.whl", hash = "sha256:2c5f353396d00e202f2586a153c4a3003901c869414150c801294560cc693de4", size = 3485877, upload-time = "2026-07-19T19:40:56.389Z" },
735
763
  ]
736
764
 
737
765
  [[package]]
@@ -754,11 +782,11 @@ wheels = [
754
782
 
755
783
  [[package]]
756
784
  name = "platformdirs"
757
- version = "4.10.0"
785
+ version = "4.10.1"
758
786
  source = { registry = "https://pypi.org/simple" }
759
- sdist = { url = "https://files.pythonhosted.org/packages/d7/47/e4501f49c178ae1d9f4a75073fda4204f52647993f075a9db4d14930e0c5/platformdirs-4.10.0.tar.gz", hash = "sha256:31e761a6a0ca04faf7353ea759bdba55652be214725111e5aac52dfa29d4bef7", size = 31224, upload-time = "2026-05-28T03:32:53.587Z" }
787
+ sdist = { url = "https://files.pythonhosted.org/packages/52/cd/4f25b2f95b23f5d2c9c1fe43e49841bff5800562149b2666afc09309aa8f/platformdirs-4.10.1.tar.gz", hash = "sha256:ceab4084426fe6319ce18e86deada8ab1b7487c7aee7040c55e277c9ae793695", size = 31678, upload-time = "2026-07-18T03:53:43.808Z" }
760
788
  wheels = [
761
- { url = "https://files.pythonhosted.org/packages/81/e6/cd9575ac904136b3cbf7aa7ee819ef86eedb7274e46f230e94ea4342e729/platformdirs-4.10.0-py3-none-any.whl", hash = "sha256:fb516cdb12eb0d857d0cd85a7c57cea4d060bee4578d6cf5a14dfdf8cbf8784a", size = 22743, upload-time = "2026-05-28T03:32:52.175Z" },
789
+ { url = "https://files.pythonhosted.org/packages/ec/73/6fd0bb9ce84138c3857f12e9de63bc901852975a092d545f18087a204aa2/platformdirs-4.10.1-py3-none-any.whl", hash = "sha256:0e4eff26be2d75293977f7cddc153fd9b8eaa7fb0c7b64ffe4076cb443117443", size = 22906, upload-time = "2026-07-18T03:53:42.576Z" },
762
790
  ]
763
791
 
764
792
  [[package]]
@@ -1169,7 +1197,7 @@ requires-dist = [
1169
1197
  { name = "lxml", marker = "extra == 'soap-client'", specifier = "~=6.1.1" },
1170
1198
  { name = "msgpack", specifier = "~=1.2.1" },
1171
1199
  { name = "msgspec", specifier = "~=0.21.1" },
1172
- { name = "object-storage-client", marker = "extra == 'object-storage'", specifier = "~=0.0.41" },
1200
+ { name = "object-storage-client", marker = "extra == 'object-storage'", specifier = "~=0.1.0" },
1173
1201
  { name = "pydantic-settings", specifier = "~=2.14.2" },
1174
1202
  { name = "python3-commons", extras = ["api-client"], marker = "extra == 'authn'" },
1175
1203
  { name = "python3-commons", extras = ["api-client"], marker = "extra == 'authz'" },
@@ -1361,27 +1389,27 @@ asyncio = [
1361
1389
 
1362
1390
  [[package]]
1363
1391
  name = "ty"
1364
- version = "0.0.60"
1365
- source = { registry = "https://pypi.org/simple" }
1366
- sdist = { url = "https://files.pythonhosted.org/packages/0a/6e/1ab6f2727622d38ddfb2a7f994209b3087190b76885e2f754dbb6e58e0c9/ty-0.0.60.tar.gz", hash = "sha256:ebd7517d1aa8d8c3793cbf03c263679a42b939eca650df583234f92a5eb5837a", size = 6189323, upload-time = "2026-07-16T10:18:14.124Z" }
1367
- wheels = [
1368
- { url = "https://files.pythonhosted.org/packages/a1/fc/c82d30b753dfb9d83ac34568478d9487bc42e1e79241a22b57f4b28fabee/ty-0.0.60-py3-none-linux_armv6l.whl", hash = "sha256:0842270c2e10d8416ca9f8aca1357c827efc5212300fbbc709e186e66fc7f9da", size = 11831443, upload-time = "2026-07-16T10:17:34.912Z" },
1369
- { url = "https://files.pythonhosted.org/packages/47/d4/09e386d816076d1d90c57baee7f607e1475b625bb9f9279b28302da22f18/ty-0.0.60-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:f49d024571cd7e569081638ab0ccc9e6795d642c6b9208addecc5e487364f0a3", size = 11624536, upload-time = "2026-07-16T10:17:37.445Z" },
1370
- { url = "https://files.pythonhosted.org/packages/f2/1e/e527e29fd9a3d41ddc419a43b37927c42a0d8ee4ca8a148ce4e022328f2f/ty-0.0.60-py3-none-macosx_11_0_arm64.whl", hash = "sha256:5b006c9a793d735ff808999775bbc0f07f91de50e931799f17322440cd9d055f", size = 11032920, upload-time = "2026-07-16T10:17:39.695Z" },
1371
- { url = "https://files.pythonhosted.org/packages/79/e0/0f294bf2521f2836ba1a4682d4301c2038e4dfedee3a70df8f6005694978/ty-0.0.60-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:233033de40a0722420380d40f0eeebe8eb0d3afeeab3a6e7b1388e2caf1a017c", size = 11575334, upload-time = "2026-07-16T10:17:41.644Z" },
1372
- { url = "https://files.pythonhosted.org/packages/0c/8c/682e46e29165d9c94829576687092a8ea4556dd5882b11edd32bc7f4b534/ty-0.0.60-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:61bcbd67f653ae2966d0e423879127907c6f8b567d64b6db93cb8f6cca7045ed", size = 11659354, upload-time = "2026-07-16T10:17:43.815Z" },
1373
- { url = "https://files.pythonhosted.org/packages/2c/d3/6baf7eb3cf9459416032285a10ffe1309f7e255e3f1974372bc41d44cfd3/ty-0.0.60-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b72e44a0be08ad778693d49b00b03bb784c1465d8265b3b392b355b34257a437", size = 12293710, upload-time = "2026-07-16T10:17:46.032Z" },
1374
- { url = "https://files.pythonhosted.org/packages/5c/f7/b287d78c93449fc5153891ad040be55e0718711ae7c0f2c54d3b88dd4d00/ty-0.0.60-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:13b89f03a76f149350617345ae33bd332d2c6023dc5d560dd10a4f0210fba13a", size = 12837636, upload-time = "2026-07-16T10:17:48.453Z" },
1375
- { url = "https://files.pythonhosted.org/packages/e6/f2/3d8c77ca5f836fb6280231030df5a4504476a38d4554330d2be42125888e/ty-0.0.60-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:30db8ebf6715da30afac62311ac773bf436ed503ed989cc9d4be4d3bdc3cbd43", size = 12383469, upload-time = "2026-07-16T10:17:50.567Z" },
1376
- { url = "https://files.pythonhosted.org/packages/e8/98/958047501d74f9d0df357df28fea1de2afa18f1e6b2dc4a3ea4975c83e14/ty-0.0.60-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ecd6dc686f90c3bfe22c9b435e4a5325f5066f706bfe95c1616ef425b1f0654", size = 12132334, upload-time = "2026-07-16T10:17:52.718Z" },
1377
- { url = "https://files.pythonhosted.org/packages/8c/8f/b2853634da28aac01ea0ba8ef7695dc3d6c9aaf9c63dfdcf7c7435bc6c25/ty-0.0.60-py3-none-manylinux_2_31_riscv64.whl", hash = "sha256:a2292124558d839e31afd9829b11dda726ce65096b1feb80d14a1ddc7ccb0f28", size = 12359945, upload-time = "2026-07-16T10:17:55.143Z" },
1378
- { url = "https://files.pythonhosted.org/packages/bd/ae/bfecc71fcf1b833117bfb0efb76e14f5772874775274115ac94f64c5ba7a/ty-0.0.60-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:78812ec03da2c3141030ee1717fb09f0845eb552a77e79680c1cca598861ddaf", size = 11534812, upload-time = "2026-07-16T10:17:57.165Z" },
1379
- { url = "https://files.pythonhosted.org/packages/d6/23/1236c1ab9cd6b2daba9c558c9dcf04644f7b636f3bab3c15e74c7f80f5e1/ty-0.0.60-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:a92c1dbc48f8b414ddcf199c1119054de00f8ee995528fa9d9c2e4ddd13cd0c1", size = 11677591, upload-time = "2026-07-16T10:17:59.747Z" },
1380
- { url = "https://files.pythonhosted.org/packages/49/49/86c9230d9a8bf1755ca4b0165e7cb6bdfa2e495f0a105b24c6a27b5a542c/ty-0.0.60-py3-none-musllinux_1_2_i686.whl", hash = "sha256:2c367d5ffe545004f0603e5599614062230678eeab980acd32850a7c19d60fc9", size = 11901279, upload-time = "2026-07-16T10:18:02.301Z" },
1381
- { url = "https://files.pythonhosted.org/packages/7e/0a/0c2e9904362d9c63700116feb192a3e10122eef49a417cde84068b2562fd/ty-0.0.60-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:a94b1f99aa8f8ca5879341a5351af708b85ce19c7494db320c719a1e129d08e8", size = 12230659, upload-time = "2026-07-16T10:18:04.384Z" },
1382
- { url = "https://files.pythonhosted.org/packages/84/4d/39c414f6b4bc944b2bac19c181438ee393c8eb34e9e21d97e5a148745f95/ty-0.0.60-py3-none-win32.whl", hash = "sha256:5ea2c85249581fb0060b9ff63b5313330f48930b2e50f6c85a5a322701626cc5", size = 11175286, upload-time = "2026-07-16T10:18:06.523Z" },
1383
- { url = "https://files.pythonhosted.org/packages/a7/08/fdf4072d96c71b65fe98c9ca2ea5b3d2d0f6e20873bb2639e8c7827bd5f6/ty-0.0.60-py3-none-win_amd64.whl", hash = "sha256:15d83c3d793cb07840b8888c084cc2c49eb8acc29456a2fcdfbfd509c82526e5", size = 12249240, upload-time = "2026-07-16T10:18:08.701Z" },
1384
- { url = "https://files.pythonhosted.org/packages/bd/a2/83a496d717f712f894cf26690bcd9465ca23cd1c9139cac669d9cca45d14/ty-0.0.60-py3-none-win_arm64.whl", hash = "sha256:32e63228c3d21ddb192385aaf54501f19478be7b764f7572014d5110e53a9085", size = 11620140, upload-time = "2026-07-16T10:18:11.316Z" },
1392
+ version = "0.0.61"
1393
+ source = { registry = "https://pypi.org/simple" }
1394
+ sdist = { url = "https://files.pythonhosted.org/packages/92/63/6944925d0fe9a4bb9cc744e6c045a42bbd2ee4654c103190674577a36c3f/ty-0.0.61.tar.gz", hash = "sha256:acbf0d914cc7e2e57ccc440036af36114819e2a604a5ffb554e72e4ca7dd65a2", size = 6234957, upload-time = "2026-07-18T01:39:54.696Z" }
1395
+ wheels = [
1396
+ { url = "https://files.pythonhosted.org/packages/dc/cf/044f31523e2768e3e64b0ca2ec32f70b3a731d4a2caa6ea110baf26e251c/ty-0.0.61-py3-none-linux_armv6l.whl", hash = "sha256:148779b8675eac93f40ec58bd70037fe67537117f20a23272264f8f136d41336", size = 11891448, upload-time = "2026-07-18T01:39:18.449Z" },
1397
+ { url = "https://files.pythonhosted.org/packages/d2/55/558cfe76b65d91d1854bbfac336020bd42fd887caa632d845d13c0c539eb/ty-0.0.61-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:08217382b3385808ee7288501ea3214b32631b08d1fd091ece6799b0c95264c5", size = 11602442, upload-time = "2026-07-18T01:39:20.914Z" },
1398
+ { url = "https://files.pythonhosted.org/packages/27/be/78c0ae6634cd606a68e5b46b338db427a48a1800c96a749b2d2f7a702e03/ty-0.0.61-py3-none-macosx_11_0_arm64.whl", hash = "sha256:6d99c729011b47dec20e78a32ac9c8f6defd4cf62f7bb851bbccf70dde6cee50", size = 11125286, upload-time = "2026-07-18T01:39:22.893Z" },
1399
+ { url = "https://files.pythonhosted.org/packages/a4/18/a40793962f1b6337938ddb0bca7496b54e70879e23b4d2cc8dfd7e5d1af3/ty-0.0.61-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5cda607978ae271b77e51c947663218bce635c3507e256865444b10c37cdb60d", size = 11663403, upload-time = "2026-07-18T01:39:25.017Z" },
1400
+ { url = "https://files.pythonhosted.org/packages/98/c1/7879244da5b30407dc368946d36be5024380073408b079f144ffe034030e/ty-0.0.61-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0d78f160a0f9434d570cdcdbc4dafba1f6aac3c47a32f9f63995b3cb55ffe4b6", size = 11715250, upload-time = "2026-07-18T01:39:27.045Z" },
1401
+ { url = "https://files.pythonhosted.org/packages/35/c4/8a4637cd58abd37f315dd515e24c582986cb1bfdf2edc4786882f5a4f69a/ty-0.0.61-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09aeab4800b36e93e4ce918699004da642d74988cac920b7592a6a2b9be6611c", size = 12393876, upload-time = "2026-07-18T01:39:29.197Z" },
1402
+ { url = "https://files.pythonhosted.org/packages/27/4b/27e7c640b1272743503229aa17ae2167a538040c4716a2fa1777c2b34fea/ty-0.0.61-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dccc8136df44142a109953a168be17b4915c99876b047d0b6672c31dae939bdf", size = 12958187, upload-time = "2026-07-18T01:39:31.308Z" },
1403
+ { url = "https://files.pythonhosted.org/packages/3a/f5/70eaaefb6081fb0a8115cff66fbfaa20dafac8c646df2477adad95a59de2/ty-0.0.61-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:220760c2d13a887d027ee1093172c24ac35b6e634805329c93a30908ae4d3f5c", size = 12560101, upload-time = "2026-07-18T01:39:33.35Z" },
1404
+ { url = "https://files.pythonhosted.org/packages/e3/5a/17bae3b6429b5c479dc6c1e344d34e1f79efbc27531f15f3ee5b5da63745/ty-0.0.61-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:effefbb89da7128d18059529d1c2ea390fe7f1f3882690d257ca2143d49a0c34", size = 12225389, upload-time = "2026-07-18T01:39:35.436Z" },
1405
+ { url = "https://files.pythonhosted.org/packages/d2/0e/2ac380ba20d6395542c8df1d6fa4f00e2aead784c2e6aaefa1e02ed0610c/ty-0.0.61-py3-none-manylinux_2_31_riscv64.whl", hash = "sha256:ba8b28a5ef811d5bb6461e37d76110c06fd20487474865c323d3d18b08b972b2", size = 12548403, upload-time = "2026-07-18T01:39:37.556Z" },
1406
+ { url = "https://files.pythonhosted.org/packages/b0/e5/7da4b73e825e1a9808c26d68b0156e9a37aede1846191210dfffb8c64042/ty-0.0.61-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:88ecd6d9b05e8174b1860dac9bd3e188d6cef5702b0d3239fd9f94f6ac73a29d", size = 11621813, upload-time = "2026-07-18T01:39:39.919Z" },
1407
+ { url = "https://files.pythonhosted.org/packages/9b/3c/5b58015e998cd0d89b17a463b6321421457d86d987574e8dac65ddfceba3/ty-0.0.61-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:fb0cdfe4c48542ffb9a1139825dfa3d4aae49e96e966682ef7da762ab97831ff", size = 11734101, upload-time = "2026-07-18T01:39:42.097Z" },
1408
+ { url = "https://files.pythonhosted.org/packages/a6/21/294f4cc819b7b12ed659fd860e5cdfbd592d4c768c8f23596685dbc43e6b/ty-0.0.61-py3-none-musllinux_1_2_i686.whl", hash = "sha256:dff03873c0c3d0b44738f8b6d403b0756a31cf54c65136397df7624c6159b1f0", size = 11988401, upload-time = "2026-07-18T01:39:44.183Z" },
1409
+ { url = "https://files.pythonhosted.org/packages/2e/26/0f96f79fdac118521a9771e9eef3f9b3f447d647b2c77953e80a1715c7e8/ty-0.0.61-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:a9210e80e3d41c1dfc751e9e8e0980272f475031fafd0fb0f48aee233c78da03", size = 12330624, upload-time = "2026-07-18T01:39:46.662Z" },
1410
+ { url = "https://files.pythonhosted.org/packages/e3/08/1e62d1bca5c0cebdc7a34db1f4b61557aab85961cedd56953dd2c32d3e66/ty-0.0.61-py3-none-win32.whl", hash = "sha256:e3e1fe06f49a5492a922a5df2739834aa5ee978c7dd10414119dc8755cc40c9c", size = 11313991, upload-time = "2026-07-18T01:39:48.761Z" },
1411
+ { url = "https://files.pythonhosted.org/packages/26/f1/d8e33b3aeb36b73d81ae34d10e46ec4abf506d68f4e0a1491a76a593dd42/ty-0.0.61-py3-none-win_amd64.whl", hash = "sha256:25f2291169e0298fcdbba1b1fea64f8207a6c1908dddef32346fd5e3e6ac9221", size = 12311717, upload-time = "2026-07-18T01:39:50.881Z" },
1412
+ { url = "https://files.pythonhosted.org/packages/e1/14/7caec26d93a943c0e7d15eb7374644508d08cbd387d112b722b12d14e044/ty-0.0.61-py3-none-win_arm64.whl", hash = "sha256:3e496f7698bc4b5bbb1eb66d8b5799ba87596d88d36604ca359083893fa2fc49", size = 11693485, upload-time = "2026-07-18T01:39:52.73Z" },
1385
1413
  ]
1386
1414
 
1387
1415
  [[package]]
@@ -1,8 +0,0 @@
1
- {
2
- "tag": "0.22.10",
3
- "distance": 0,
4
- "node": "gcaec4335fc16f614ca1102c5f4f2bf93f2c8ae6c",
5
- "dirty": false,
6
- "branch": "HEAD",
7
- "node_date": "2026-07-17"
8
- }