python3-commons 0.23.3__tar.gz → 0.24.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.
- {python3_commons-0.23.3 → python3_commons-0.24.0}/.pre-commit-config.yaml +2 -2
- {python3_commons-0.23.3 → python3_commons-0.24.0}/PKG-INFO +2 -2
- {python3_commons-0.23.3 → python3_commons-0.24.0}/pyproject.toml +1 -1
- {python3_commons-0.23.3 → python3_commons-0.24.0}/src/python3_commons.egg-info/PKG-INFO +2 -2
- {python3_commons-0.23.3 → python3_commons-0.24.0}/src/python3_commons.egg-info/requires.txt +1 -1
- python3_commons-0.24.0/src/python3_commons.egg-info/scm_version.json +8 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/uv.lock +135 -136
- python3_commons-0.23.3/src/python3_commons.egg-info/scm_version.json +0 -8
- {python3_commons-0.23.3 → python3_commons-0.24.0}/.coveragerc +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/.devcontainer/Dockerfile +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/.devcontainer/devcontainer.json +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/.devcontainer/docker-compose.yml +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/.env_template +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/.github/workflows/checks.yml +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/.github/workflows/python-publish.yaml +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/.github/workflows/release-on-tag-push.yml +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/.gitignore +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/.python-version +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/AUTHORS.rst +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/CHANGELOG.rst +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/LICENSE +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/README.md +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/README.rst +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/docs/Makefile +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/docs/_static/.gitignore +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/docs/authors.rst +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/docs/changelog.rst +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/docs/conf.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/docs/index.rst +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/docs/license.rst +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/setup.cfg +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/src/python3_commons/__init__.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/src/python3_commons/api_client.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/src/python3_commons/async_functools.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/src/python3_commons/audit.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/src/python3_commons/auth.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/src/python3_commons/cache.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/src/python3_commons/conf.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/src/python3_commons/db/__init__.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/src/python3_commons/db/helpers.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/src/python3_commons/db/models/__init__.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/src/python3_commons/db/models/auth.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/src/python3_commons/db/models/common.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/src/python3_commons/db/models/rbac.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/src/python3_commons/db/models/users.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/src/python3_commons/exceptions.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/src/python3_commons/fs.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/src/python3_commons/generators.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/src/python3_commons/helpers.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/src/python3_commons/log/__init__.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/src/python3_commons/log/filters.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/src/python3_commons/log/formatters.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/src/python3_commons/object_storage.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/src/python3_commons/permissions.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/src/python3_commons/serializers/__init__.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/src/python3_commons/serializers/common.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/src/python3_commons/serializers/json.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/src/python3_commons/serializers/msgpack.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/src/python3_commons/serializers/msgspec.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/src/python3_commons/soap_client.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/src/python3_commons.egg-info/SOURCES.txt +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/src/python3_commons.egg-info/dependency_links.txt +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/src/python3_commons.egg-info/scm_file_list.json +51 -51
- {python3_commons-0.23.3 → python3_commons-0.24.0}/src/python3_commons.egg-info/top_level.txt +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/tests/__init__.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/tests/integration/__init__.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/tests/integration/conftest.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/tests/integration/test_auth.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/tests/integration/test_cache.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/tests/integration/test_osc.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/tests/unit/__init__.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/tests/unit/conftest.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/tests/unit/db/__init__.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/tests/unit/db/test_async_session_manager.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/tests/unit/log/__init__.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/tests/unit/log/test_formatters.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/tests/unit/test_async_functools.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/tests/unit/test_audit.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/tests/unit/test_auth.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/tests/unit/test_helpers.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/tests/unit/test_msgpack.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.24.0}/tests/unit/test_msgspec.py +0 -0
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
repos:
|
|
2
2
|
- repo: https://github.com/astral-sh/uv-pre-commit
|
|
3
|
-
rev: 0.11.
|
|
3
|
+
rev: 0.11.33
|
|
4
4
|
hooks:
|
|
5
5
|
- id: uv-lock
|
|
6
6
|
# - id: uv-export
|
|
7
7
|
|
|
8
8
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
9
|
-
rev: v0.
|
|
9
|
+
rev: v0.16.0
|
|
10
10
|
hooks:
|
|
11
11
|
# Run the linter.
|
|
12
12
|
- id: ruff-check
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: python3-commons
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.24.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.1.
|
|
42
|
+
Requires-Dist: object-storage-client~=0.1.4; extra == "object-storage"
|
|
43
43
|
Provides-Extra: soap-client
|
|
44
44
|
Requires-Dist: aiohttp[speedups]<3.15.0,>=3.14.3; extra == "soap-client"
|
|
45
45
|
Requires-Dist: certifi~=2026.7.22; extra == "soap-client"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: python3-commons
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.24.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.1.
|
|
42
|
+
Requires-Dist: object-storage-client~=0.1.4; extra == "object-storage"
|
|
43
43
|
Provides-Extra: soap-client
|
|
44
44
|
Requires-Dist: aiohttp[speedups]<3.15.0,>=3.14.3; extra == "soap-client"
|
|
45
45
|
Requires-Dist: certifi~=2026.7.22; extra == "soap-client"
|
|
@@ -129,11 +129,11 @@ wheels = [
|
|
|
129
129
|
|
|
130
130
|
[[package]]
|
|
131
131
|
name = "annotated-types"
|
|
132
|
-
version = "0.
|
|
132
|
+
version = "0.8.0"
|
|
133
133
|
source = { registry = "https://pypi.org/simple" }
|
|
134
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
134
|
+
sdist = { url = "https://files.pythonhosted.org/packages/5f/56/a8120250d128bed162cd73c76d45f6ef9991f3e068f62a8ee060afa3104a/annotated_types-0.8.0.tar.gz", hash = "sha256:13b2beaad985e05e2d6407ee4c4f35590b11f8d693a258a561055cac8f64cab7", size = 15893, upload-time = "2026-07-23T20:16:13.995Z" }
|
|
135
135
|
wheels = [
|
|
136
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
136
|
+
{ url = "https://files.pythonhosted.org/packages/99/91/8acff4f5e50511b911bbccb72b8628a49c68ce14148cd9f6431094859a90/annotated_types-0.8.0-py3-none-any.whl", hash = "sha256:f072f4d804ea359e4eaf198b1af7a8b0943881a87f31bb764f8bf219bb9419e0", size = 13427, upload-time = "2026-07-23T20:16:12.938Z" },
|
|
137
137
|
]
|
|
138
138
|
|
|
139
139
|
[[package]]
|
|
@@ -359,41 +359,41 @@ wheels = [
|
|
|
359
359
|
|
|
360
360
|
[[package]]
|
|
361
361
|
name = "coverage"
|
|
362
|
-
version = "7.15.
|
|
363
|
-
source = { registry = "https://pypi.org/simple" }
|
|
364
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
365
|
-
wheels = [
|
|
366
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
367
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
368
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
369
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
370
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
371
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
372
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
373
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
374
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
375
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
376
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
377
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
378
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
379
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
380
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
381
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
382
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
383
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
384
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
385
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
386
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
387
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
388
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
389
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
390
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
391
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
392
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
393
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
394
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
395
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
396
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
362
|
+
version = "7.15.3"
|
|
363
|
+
source = { registry = "https://pypi.org/simple" }
|
|
364
|
+
sdist = { url = "https://files.pythonhosted.org/packages/f4/45/78dbf9604ee5b3db24efbf26bed1cb58862fb40480cba821963c69348751/coverage-7.15.3.tar.gz", hash = "sha256:ae7ea5a4614acf399ef0483c4cb34f8f8f01df848d8fcbe7d3ce0865733f1c4d", size = 935592, upload-time = "2026-08-02T18:50:17.006Z" }
|
|
365
|
+
wheels = [
|
|
366
|
+
{ url = "https://files.pythonhosted.org/packages/35/6f/8c2dc014357618b3226c90f731b8282766c3685786f422558991dc49fbf2/coverage-7.15.3-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:1e3bb08ad574bd9fb6a991f645728f70d333c1c1958dd5fcde65e24cb862813d", size = 222571, upload-time = "2026-08-02T18:49:11.242Z" },
|
|
367
|
+
{ url = "https://files.pythonhosted.org/packages/07/50/d867c7ceae9d56b7e74ee61ea834f1aa4f9a1e1c7f0ce39393ba573b1c12/coverage-7.15.3-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:9e5860eaff02a0b7f1b73304bdf846596ee62ab3a78d25c68044ebf684cb1fef", size = 222902, upload-time = "2026-08-02T18:49:13.448Z" },
|
|
368
|
+
{ url = "https://files.pythonhosted.org/packages/62/77/4f6dfc490c5f2bcacb2d296d9aa4d1e128c43b48e94ad313fec7f49f09ad/coverage-7.15.3-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:60874e5bd67f0b1bdbe42ab42c7bafa66a6fb8de88721af6df3f7a02713960cd", size = 253947, upload-time = "2026-08-02T18:49:15.304Z" },
|
|
369
|
+
{ url = "https://files.pythonhosted.org/packages/16/8a/6777f192af264165103e2a3d3768dbadb9894a0a2359a16877141d9ae8f5/coverage-7.15.3-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:f9147be876e9d83765e0b82176674dc248a6b9283e25e01e7462611b97e9b731", size = 256452, upload-time = "2026-08-02T18:49:17.801Z" },
|
|
370
|
+
{ url = "https://files.pythonhosted.org/packages/7d/7b/3d7ac46a0234bc684f41ee42be95e29b2b6525695adb04083609d5ac2149/coverage-7.15.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:61a01f8c3804760fcc5a3d31c4f3cab792d660d44e17bf7adeaf0ea51e07821e", size = 257798, upload-time = "2026-08-02T18:49:19.878Z" },
|
|
371
|
+
{ url = "https://files.pythonhosted.org/packages/ff/1e/c6ee59c29afcb5fdb35f936381340d1a06429a07c48f20e809646647acbe/coverage-7.15.3-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:95bf3e7f26f792e25eb185f85a5a659d48479265176dcfe22b6f334fd0081b5c", size = 260112, upload-time = "2026-08-02T18:49:21.858Z" },
|
|
372
|
+
{ url = "https://files.pythonhosted.org/packages/c1/e1/e8ea39a46e89e3a143312ee5f80336e992e3ae8fe44bf9c76b83fefeed42/coverage-7.15.3-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:44c41eff9e413fed8740eca75d5438ebeb9d3e45e7cd37c67329213e7a72c764", size = 253944, upload-time = "2026-08-02T18:49:23.926Z" },
|
|
373
|
+
{ url = "https://files.pythonhosted.org/packages/95/67/31ab5f6a37fd887d1386f81f0da9306851ad2264e9baaa9c7f606e0b3e17/coverage-7.15.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:54146bafb61f3ba9895b43af0dd17eba01561d586d44ce84ea221b0cbbee5a9e", size = 255805, upload-time = "2026-08-02T18:49:25.973Z" },
|
|
374
|
+
{ url = "https://files.pythonhosted.org/packages/fb/6a/ee505a80c8fd89620fb337c0596daecff87f33171fbb4ee3015fc3d7331f/coverage-7.15.3-cp314-cp314-musllinux_1_2_i686.whl", hash = "sha256:af000dd1bb859ff8066fda4c79512ff938c798116540307226b373099c7b151f", size = 253769, upload-time = "2026-08-02T18:49:27.883Z" },
|
|
375
|
+
{ url = "https://files.pythonhosted.org/packages/b0/41/6ab0f81c9e89660230d8f3f581d4732e5ddb75a885b0a5dfc73d315dc94f/coverage-7.15.3-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:a1b82490577f3889950b5a04f18712aef0207243e0749d60fe28c3c73ebfd5fd", size = 258045, upload-time = "2026-08-02T18:49:30.201Z" },
|
|
376
|
+
{ url = "https://files.pythonhosted.org/packages/bc/62/c995e91cae28cf31d6defab3bfb553dda5ac83ac7381b0f2b121264c307a/coverage-7.15.3-cp314-cp314-musllinux_1_2_riscv64.whl", hash = "sha256:c4fc90a60154c3e4b8a2dc206d6dbe852f1c235c249e0dc0cef909d032c9591a", size = 253587, upload-time = "2026-08-02T18:49:32.349Z" },
|
|
377
|
+
{ url = "https://files.pythonhosted.org/packages/84/df/f2049980f82d6890321f2065f9e66216eabbf4b2001815db958bc543f40a/coverage-7.15.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:f25bb884814a892948b4c20394db3f2364dd452d9492736479e7a493e63b0eb6", size = 255243, upload-time = "2026-08-02T18:49:34.324Z" },
|
|
378
|
+
{ url = "https://files.pythonhosted.org/packages/1d/82/2c841b67a978c0eb9c3707630b68f93f9e7585d78bb906bc8823ec6b07a5/coverage-7.15.3-cp314-cp314-win32.whl", hash = "sha256:722dbf8e7828fbcfe0dc8586167dc0a5ce85ad6ea171dbb21ed3f8d6581d3cb8", size = 224759, upload-time = "2026-08-02T18:49:36.326Z" },
|
|
379
|
+
{ url = "https://files.pythonhosted.org/packages/b3/78/5c93ec43784fd3e404ca23cd0584ae24bc1732de4a3fc194b68c3be88db0/coverage-7.15.3-cp314-cp314-win_amd64.whl", hash = "sha256:64d0845f9c3ed47302bed265c15ab4dbb64aa4ec1490839b8e328f4e7fa914d2", size = 225246, upload-time = "2026-08-02T18:49:38.366Z" },
|
|
380
|
+
{ url = "https://files.pythonhosted.org/packages/9d/77/813a054371f3b018cc63c6bdb46a3c35d5e95d4e3ed4f1449d4196106db5/coverage-7.15.3-cp314-cp314-win_arm64.whl", hash = "sha256:69bc14684f8fbbee9f9dbaa4fe79719b0da9725fc37956785c06ec365acf6926", size = 224673, upload-time = "2026-08-02T18:49:40.552Z" },
|
|
381
|
+
{ url = "https://files.pythonhosted.org/packages/8f/63/8c9f36cc71178d26db930baa03a4494abcc516d8d41bf820d0d85ef1d80b/coverage-7.15.3-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:f92df943c24b96cb215ca26b4f6a2283e63c5db80f1635aceea7fff11311917b", size = 223298, upload-time = "2026-08-02T18:49:42.634Z" },
|
|
382
|
+
{ url = "https://files.pythonhosted.org/packages/54/66/211f24d058ce9f56ebf1420d55b7574fdae924f6da3836f83c8bd4793e38/coverage-7.15.3-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:66591c46bdd2971d3ae2bc503a5f0459c2edcaf6b7e045b292000cc95bc6cb95", size = 223568, upload-time = "2026-08-02T18:49:44.706Z" },
|
|
383
|
+
{ url = "https://files.pythonhosted.org/packages/dd/bb/9c2ad5574a0d6420a96c6cade4f8a683931b9e79fe609f8924d7b6964616/coverage-7.15.3-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl", hash = "sha256:caa64458b81b18bfc67cdf1f6dc02b23e3edc672f2f8e11771fad75865415a43", size = 264932, upload-time = "2026-08-02T18:49:47.153Z" },
|
|
384
|
+
{ url = "https://files.pythonhosted.org/packages/ba/91/938c39e77bdd5a0a440412f975609ce3702dabbda6ac715719d93ca45a7b/coverage-7.15.3-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:447f5421ccf5475956cf516d4ca1d575f487947b6f4e11f9d80c6aefe24b3dc8", size = 267052, upload-time = "2026-08-02T18:49:49.324Z" },
|
|
385
|
+
{ url = "https://files.pythonhosted.org/packages/b0/a3/7b431a98af35d9cc6394e54cde9435b33b8591672fbece6a4931267d7a8e/coverage-7.15.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:7a0c77ef8cd483a4987a5d12d1d9d5f7ee598dfdc6c0844417d847e5768dc779", size = 269473, upload-time = "2026-08-02T18:49:51.599Z" },
|
|
386
|
+
{ url = "https://files.pythonhosted.org/packages/32/58/dbc9951dce46be47a732823a1c571f62bcabdd54a68d8c281489a1a55cfb/coverage-7.15.3-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:0b273f4ff657446a06c2d85bf80e134fa869a92852ba5f87854a70e1fb44da77", size = 270591, upload-time = "2026-08-02T18:49:53.865Z" },
|
|
387
|
+
{ url = "https://files.pythonhosted.org/packages/71/bd/1d610772c7c0889bfe477a59c46ee66ea53e271f3f06951e9d55b317f7c6/coverage-7.15.3-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:daea8c4fafa22488600405be2c2be525a9406fba3fc0a83acc726db3e14e2005", size = 264007, upload-time = "2026-08-02T18:49:55.875Z" },
|
|
388
|
+
{ url = "https://files.pythonhosted.org/packages/69/97/852eb3dcdba156b1a9078503f098499916bf889f964b61ad4a08223ac169/coverage-7.15.3-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:93ff57c530f3fa7aa69f92fb9b8892b8aa82712aa970842f4abf28657f42fb57", size = 266926, upload-time = "2026-08-02T18:49:57.944Z" },
|
|
389
|
+
{ url = "https://files.pythonhosted.org/packages/52/f8/b72cd238757fba2b587fc7dee047efe6e10b0c18343509faaaf502dd4680/coverage-7.15.3-cp314-cp314t-musllinux_1_2_i686.whl", hash = "sha256:4df21bef8b800eebda9018f53d49c9ace3aeb0090c850139b27923aafcb83e91", size = 264529, upload-time = "2026-08-02T18:50:00.035Z" },
|
|
390
|
+
{ url = "https://files.pythonhosted.org/packages/b8/0a/6c52ec4b7fb007cb6433d1fcfda4080cb15d75ad37ef9c31025f3427293e/coverage-7.15.3-cp314-cp314t-musllinux_1_2_ppc64le.whl", hash = "sha256:db567b02685f26034adcbd85055f80d12cdf02111b8ed00886093d98b2874ce2", size = 268263, upload-time = "2026-08-02T18:50:02.161Z" },
|
|
391
|
+
{ url = "https://files.pythonhosted.org/packages/c0/4e/f1f9aa3efd109a04353563a43fb5155340c1fdcdeaa6296ebed3b6f510ea/coverage-7.15.3-cp314-cp314t-musllinux_1_2_riscv64.whl", hash = "sha256:5318dd51b8600b947e058cf5a4fe54d183d9d13c49b97b64ca7be05a34df9bef", size = 263377, upload-time = "2026-08-02T18:50:04.243Z" },
|
|
392
|
+
{ url = "https://files.pythonhosted.org/packages/dd/fb/6b268a0b2728ef1c379ad656b899274477a5f6bed1bf6765b4b387fb0601/coverage-7.15.3-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:c995bfa383c54704839b6c4c2627a1c00895597ada0e5e8190c81d8bd620555c", size = 265688, upload-time = "2026-08-02T18:50:06.428Z" },
|
|
393
|
+
{ url = "https://files.pythonhosted.org/packages/29/54/1a3ea96e5d5e7cd41dc432597bfc60692910e635d05e1cc25a8ccc243581/coverage-7.15.3-cp314-cp314t-win32.whl", hash = "sha256:6433fafb8da0e1d02eb53411e0ecdadb6b88f0224fdc23317e703c0e88937d42", size = 225066, upload-time = "2026-08-02T18:50:08.533Z" },
|
|
394
|
+
{ url = "https://files.pythonhosted.org/packages/31/9d/a7b0d9afd18ed5274dd00651a78e7810a931c70d94b79996f150bec1a30f/coverage-7.15.3-cp314-cp314t-win_amd64.whl", hash = "sha256:fe578952b1b29fe8c777f43f241d49efac4b56724a3434f5d22ebe3c208df429", size = 225897, upload-time = "2026-08-02T18:50:10.572Z" },
|
|
395
|
+
{ url = "https://files.pythonhosted.org/packages/ca/11/34c5ae40b945e69aa72b87dc268135b7049905f3824af573b7073acbb946/coverage-7.15.3-cp314-cp314t-win_arm64.whl", hash = "sha256:d2e1acb7aee29dfa8f3e48c23f36670898baca1209d9bdd3985a50c7f982165e", size = 225212, upload-time = "2026-08-02T18:50:12.63Z" },
|
|
396
|
+
{ url = "https://files.pythonhosted.org/packages/37/e7/7069b3d6c018917f49ba2e1c5fb910e498c7fefa3a1b78cb1b79e61ff45d/coverage-7.15.3-py3-none-any.whl", hash = "sha256:da78fa6fc7dafe4212839173133ee85afcf42c5cd5f3e47fa7c1c210453b445e", size = 214297, upload-time = "2026-08-02T18:50:14.709Z" },
|
|
397
397
|
]
|
|
398
398
|
|
|
399
399
|
[[package]]
|
|
@@ -407,11 +407,11 @@ wheels = [
|
|
|
407
407
|
|
|
408
408
|
[[package]]
|
|
409
409
|
name = "filelock"
|
|
410
|
-
version = "3.32.
|
|
410
|
+
version = "3.32.2"
|
|
411
411
|
source = { registry = "https://pypi.org/simple" }
|
|
412
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
412
|
+
sdist = { url = "https://files.pythonhosted.org/packages/f6/57/3ba6e6cb097f85b855b00163d169f35365f44277df044dcf96d55b8f62a3/filelock-3.32.2.tar.gz", hash = "sha256:c33351e1f49cae33414acbc6d56784e6ecee82514ec90795da1161fc4836b5b8", size = 217172, upload-time = "2026-07-29T22:46:04.895Z" }
|
|
413
413
|
wheels = [
|
|
414
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
414
|
+
{ url = "https://files.pythonhosted.org/packages/c1/e8/72f8cef9fdfeffe06213fe8508039396ee48daa0e3259457ed766173bfd6/filelock-3.32.2-py3-none-any.whl", hash = "sha256:87dd94cf281e586d135fa51132b8e3d9a598b316e90377a288663c9321036c82", size = 98830, upload-time = "2026-07-29T22:46:03.52Z" },
|
|
415
415
|
]
|
|
416
416
|
|
|
417
417
|
[[package]]
|
|
@@ -752,14 +752,14 @@ wheels = [
|
|
|
752
752
|
|
|
753
753
|
[[package]]
|
|
754
754
|
name = "object-storage-client"
|
|
755
|
-
version = "0.1.
|
|
755
|
+
version = "0.1.4"
|
|
756
756
|
source = { registry = "https://pypi.org/simple" }
|
|
757
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
757
|
+
sdist = { url = "https://files.pythonhosted.org/packages/8b/c7/09b445bb331e72261e1ebb88704256361093197396f6c3c6b4f5449b06c3/object_storage_client-0.1.4.tar.gz", hash = "sha256:4d841f8029ea6ff791631fd13425d7d1b36b39259ecb62c0a0c0e7ca0bfc08ca", size = 72580, upload-time = "2026-08-03T20:48:14.797Z" }
|
|
758
758
|
wheels = [
|
|
759
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
760
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
761
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
762
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
759
|
+
{ url = "https://files.pythonhosted.org/packages/a3/88/c765c8ad07883aafe2104ea4ff8cc0ecb01c1c07fa494454fed87fbfd7b9/object_storage_client-0.1.4-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:87afcce07d9be5c4b261e031dc307344fb082534ecbfab1fdcbfd68d3073deb1", size = 2895209, upload-time = "2026-08-03T20:48:08.668Z" },
|
|
760
|
+
{ url = "https://files.pythonhosted.org/packages/bc/f9/d1ec90f91bd20cfcf2d21b25896d25c491487fd2a65dccc2e8a46c11a7cf/object_storage_client-0.1.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8d145b0729068a2d40e1e2840b654b65db59350f6bef2d599267c08dafe810df", size = 3962320, upload-time = "2026-08-03T20:48:10.19Z" },
|
|
761
|
+
{ url = "https://files.pythonhosted.org/packages/e1/4b/c2229e247c023d587c7d216cb231366015b82c98a155a7a7319b719d2ba2/object_storage_client-0.1.4-cp314-cp314-manylinux_2_28_aarch64.whl", hash = "sha256:d9cd31eaba248ab87bcddcf519f7ccaf5f075283d80fba73a18de1ed024269f8", size = 3716477, upload-time = "2026-08-03T20:48:12.022Z" },
|
|
762
|
+
{ url = "https://files.pythonhosted.org/packages/80/e1/2f0b53d8fc2c2880312f26d06da9b7e11450f44979b3d31b4b6afab4e029/object_storage_client-0.1.4-cp314-cp314-win_amd64.whl", hash = "sha256:f47597d2c112d7a55f35f795700dbd439b6bbcf9fdb5e3f77ec8d4df78ab65ef", size = 3491796, upload-time = "2026-08-03T20:48:13.7Z" },
|
|
763
763
|
]
|
|
764
764
|
|
|
765
765
|
[[package]]
|
|
@@ -773,11 +773,11 @@ wheels = [
|
|
|
773
773
|
|
|
774
774
|
[[package]]
|
|
775
775
|
name = "pip"
|
|
776
|
-
version = "26.
|
|
776
|
+
version = "26.2"
|
|
777
777
|
source = { registry = "https://pypi.org/simple" }
|
|
778
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
778
|
+
sdist = { url = "https://files.pythonhosted.org/packages/db/96/e6f8e9d9d7b9cc4457092712a7e919c3186aa2c2fa9ffed2c5d29cc947e8/pip-26.2.tar.gz", hash = "sha256:2d8542afcc84cdd8e846c2b36b2861fad1da376dd98f8e7113e9108a3c331690", size = 1848845, upload-time = "2026-07-29T21:57:56.407Z" }
|
|
779
779
|
wheels = [
|
|
780
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
780
|
+
{ url = "https://files.pythonhosted.org/packages/62/36/a3aed958d60531cb442b7ab4596cda7b3621cfb916f8ae1d6769795c7dc1/pip-26.2-py3-none-any.whl", hash = "sha256:931c303696af6fa3417112103b1cad26890e5a07eccb5b99783700e33f2b8aad", size = 1816475, upload-time = "2026-07-29T21:57:54.763Z" },
|
|
781
781
|
]
|
|
782
782
|
|
|
783
783
|
[[package]]
|
|
@@ -1070,15 +1070,14 @@ wheels = [
|
|
|
1070
1070
|
|
|
1071
1071
|
[[package]]
|
|
1072
1072
|
name = "python-discovery"
|
|
1073
|
-
version = "1.5.
|
|
1073
|
+
version = "1.5.1"
|
|
1074
1074
|
source = { registry = "https://pypi.org/simple" }
|
|
1075
1075
|
dependencies = [
|
|
1076
1076
|
{ name = "filelock" },
|
|
1077
|
-
{ name = "platformdirs" },
|
|
1078
1077
|
]
|
|
1079
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
1078
|
+
sdist = { url = "https://files.pythonhosted.org/packages/04/b7/1581a8103855c43567776aa34135e5ec3c597346c23bfd10c7eb5e0b10a4/python_discovery-1.5.1.tar.gz", hash = "sha256:e2ea8b884cd1701f386eda8cf327b87743f1dc21b7f784470799537d95635384", size = 77200, upload-time = "2026-07-31T22:06:02.48Z" }
|
|
1080
1079
|
wheels = [
|
|
1081
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1080
|
+
{ url = "https://files.pythonhosted.org/packages/6a/07/a89b539750a159d5101c4eb9fc84e2961f65cefbd5e0b7440b284471c0b0/python_discovery-1.5.1-py3-none-any.whl", hash = "sha256:ac07f44cade589d954e9d6a1e1468539fdddd2cf676beb51da73e0f156b7c932", size = 35752, upload-time = "2026-07-31T22:06:01.116Z" },
|
|
1082
1081
|
]
|
|
1083
1082
|
|
|
1084
1083
|
[[package]]
|
|
@@ -1197,7 +1196,7 @@ requires-dist = [
|
|
|
1197
1196
|
{ name = "lxml", marker = "extra == 'soap-client'", specifier = "~=6.1.1" },
|
|
1198
1197
|
{ name = "msgpack", specifier = "~=1.2.1" },
|
|
1199
1198
|
{ name = "msgspec", specifier = "~=0.21.1" },
|
|
1200
|
-
{ name = "object-storage-client", marker = "extra == 'object-storage'", specifier = "~=0.1.
|
|
1199
|
+
{ name = "object-storage-client", marker = "extra == 'object-storage'", specifier = "~=0.1.4" },
|
|
1201
1200
|
{ name = "pydantic-settings", specifier = "~=2.14.2" },
|
|
1202
1201
|
{ name = "python3-commons", extras = ["api-client"], marker = "extra == 'authn'" },
|
|
1203
1202
|
{ name = "python3-commons", extras = ["api-client"], marker = "extra == 'authz'" },
|
|
@@ -1300,27 +1299,27 @@ wheels = [
|
|
|
1300
1299
|
|
|
1301
1300
|
[[package]]
|
|
1302
1301
|
name = "ruff"
|
|
1303
|
-
version = "0.
|
|
1304
|
-
source = { registry = "https://pypi.org/simple" }
|
|
1305
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
1306
|
-
wheels = [
|
|
1307
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1308
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1309
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1310
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1311
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1312
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1313
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1314
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1315
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1316
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1317
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1318
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1319
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1320
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1321
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1322
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1323
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1302
|
+
version = "0.16.1"
|
|
1303
|
+
source = { registry = "https://pypi.org/simple" }
|
|
1304
|
+
sdist = { url = "https://files.pythonhosted.org/packages/70/25/7113f6d5498888c5fb7db34081cba7d5971c4cb1bfb26819966eee68f003/ruff-0.16.1.tar.gz", hash = "sha256:fedad7c801dabd3fb9741d76aca39246e6ddd9ca446a015875207bf19f1e6bc7", size = 4877500, upload-time = "2026-07-30T19:37:01.379Z" }
|
|
1305
|
+
wheels = [
|
|
1306
|
+
{ url = "https://files.pythonhosted.org/packages/1b/bd/694da69368e0973de65df2ddc73ab18d43c469d5963d9b150911de6bc513/ruff-0.16.1-py3-none-linux_armv6l.whl", hash = "sha256:58edb313b88f0c5460a26adf5f39a37a3be789494a15e3e411e35fa78b89f9a0", size = 10839126, upload-time = "2026-07-30T19:36:13.697Z" },
|
|
1307
|
+
{ url = "https://files.pythonhosted.org/packages/3f/f0/b626e5d5bd0dd9576263658ef12885e2288afd1029a48e26ffed65ec1ac1/ruff-0.16.1-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:fde5a99e2f97479af66edd6622c6d5a2a7592c77cf4153d9e4428f5eeb55b60c", size = 11070253, upload-time = "2026-07-30T19:36:17.14Z" },
|
|
1308
|
+
{ url = "https://files.pythonhosted.org/packages/83/63/f40acfb6b35b88623e71684942b552c3edd96035f5d98f313815f7b277de/ruff-0.16.1-py3-none-macosx_11_0_arm64.whl", hash = "sha256:e0d4c20532fca4f7fa609369161d968dd28f65d83dabbd61d8e9c7edbf7001f6", size = 10561425, upload-time = "2026-07-30T19:36:20.04Z" },
|
|
1309
|
+
{ url = "https://files.pythonhosted.org/packages/aa/dd/14ec0e9c2b4d315547dd38765004b4863e354e1b52cb308272215d9f6f6d/ruff-0.16.1-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:30affbcedf59ad5703d9c91f82266e02b47739f797e1a7b6e158e5526a6dae38", size = 10948879, upload-time = "2026-07-30T19:36:22.476Z" },
|
|
1310
|
+
{ url = "https://files.pythonhosted.org/packages/33/e9/9d870cbae575030fdef595f04b4b97573c525b5497cce4f4498cf2f85446/ruff-0.16.1-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:24e9c631573cbca9d20f1283f8f479b2afa4a8503504822bd71a293889f16743", size = 10643691, upload-time = "2026-07-30T19:36:24.914Z" },
|
|
1311
|
+
{ url = "https://files.pythonhosted.org/packages/c4/09/12743d544e2173f53ecd27217c65f90d2bc0f8424a66a60339e56bbc0457/ruff-0.16.1-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b41bdd48fb420987a9b5212e4957c26ad4abce401fa9ea9d4d85843727945f4f", size = 11435354, upload-time = "2026-07-30T19:36:28.447Z" },
|
|
1312
|
+
{ url = "https://files.pythonhosted.org/packages/7f/89/a1652b2daee52083c9554a6333b678a8b01d0400f976827bb87857f9449a/ruff-0.16.1-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b0d1e1393b7648079e13669de1c1f4fde06d4583e84d8fd5c1551e0a77a2aa75", size = 12259033, upload-time = "2026-07-30T19:36:31.326Z" },
|
|
1313
|
+
{ url = "https://files.pythonhosted.org/packages/16/96/ecdcb8c54ee7b123b487f807eb014e6e019155a0b81dfb669acd52f28ce3/ruff-0.16.1-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:07bf434b1c95f4e093be4532068ef4fcf00924eb2ade8796075980902d6fd54a", size = 11667981, upload-time = "2026-07-30T19:36:34.394Z" },
|
|
1314
|
+
{ url = "https://files.pythonhosted.org/packages/cd/90/c52e12e0d862e9572f2a33aa227409143520abe53111e9a6babbac7b4af8/ruff-0.16.1-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:39897739f112253ee4fdd2e8aa9a4f9ded99fb2be367d5f31dfa4ded6025584c", size = 11468183, upload-time = "2026-07-30T19:36:37.339Z" },
|
|
1315
|
+
{ url = "https://files.pythonhosted.org/packages/2c/6b/4ffb7ad1d83eb16cf8cbb3c8815d3f11c88460fd162d4b372a2059be1c2a/ruff-0.16.1-py3-none-manylinux_2_31_riscv64.whl", hash = "sha256:82ae3c0c0d74daf17b968a10b7b3bb3ef297ab7de0c1f749646b25e690ccb150", size = 11470071, upload-time = "2026-07-30T19:36:39.91Z" },
|
|
1316
|
+
{ url = "https://files.pythonhosted.org/packages/9c/72/32ae7db4c0b5e32ab611787caa19d1546800676d79f7483b7100a3561bf4/ruff-0.16.1-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:4d5f2ed10f8242d83fc08d521301089364e3375375705356f20c0e31606ef3ef", size = 10919503, upload-time = "2026-07-30T19:36:42.65Z" },
|
|
1317
|
+
{ url = "https://files.pythonhosted.org/packages/f7/ca/3d901ba6ad6fc38da39c3448fc6c59ac945679293a17c3ceb6d6c1cba13e/ruff-0.16.1-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:a4665b309891f83f3e3c25447935f1213e9abbd4b5640af7a1f2def9f8d413c1", size = 10649861, upload-time = "2026-07-30T19:36:45.18Z" },
|
|
1318
|
+
{ url = "https://files.pythonhosted.org/packages/92/79/894ef1ced26552d5f8c9cf6d85b0687840e1128c55aeab7b9c2d54a0d880/ruff-0.16.1-py3-none-musllinux_1_2_i686.whl", hash = "sha256:26e9ca5c9bc3971f20d3cf18a957f52ffd6a5f6564ff15c4912a144dcac22494", size = 11148137, upload-time = "2026-07-30T19:36:47.936Z" },
|
|
1319
|
+
{ url = "https://files.pythonhosted.org/packages/2d/69/3609a09fa1cb46cc28b762363e440a354204e5dff01bd0c8d7437874d6b9/ruff-0.16.1-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:67e1e1e3fa4f0c82f0e36d4cd61e661f6e7a6196cb1aa92fe0828fa7b8f257cd", size = 11559211, upload-time = "2026-07-30T19:36:50.448Z" },
|
|
1320
|
+
{ url = "https://files.pythonhosted.org/packages/fc/8a/fb22af2fd78a736e241fabf67e30ce1799a64244026377a49e133af90762/ruff-0.16.1-py3-none-win32.whl", hash = "sha256:d31765e131295b8445caf301e3e8a85b34d1b9b211b4109b7ba457888b051806", size = 10838258, upload-time = "2026-07-30T19:36:53.298Z" },
|
|
1321
|
+
{ url = "https://files.pythonhosted.org/packages/d4/35/e57fd9fb5d423961df087a00b12d42c0a830288dc2f3b45ecca299158b4f/ruff-0.16.1-py3-none-win_amd64.whl", hash = "sha256:09b05e8b90c2cb06ad63464350e7a45e8e44a2dfe52072ebfba6666ca8d3f596", size = 11961111, upload-time = "2026-07-30T19:36:56.107Z" },
|
|
1322
|
+
{ url = "https://files.pythonhosted.org/packages/cb/46/240ea004bf6dc4feb40e9832f2205a476a47dd5b8a3f8211a5fc5f95e20e/ruff-0.16.1-py3-none-win_arm64.whl", hash = "sha256:dbaadaac38c70239f056d306b7476f246b0bf000fa6b3876402acbf5b227eaf8", size = 11309414, upload-time = "2026-07-30T19:36:58.79Z" },
|
|
1324
1323
|
]
|
|
1325
1324
|
|
|
1326
1325
|
[[package]]
|
|
@@ -1389,39 +1388,39 @@ asyncio = [
|
|
|
1389
1388
|
|
|
1390
1389
|
[[package]]
|
|
1391
1390
|
name = "ty"
|
|
1392
|
-
version = "0.0.
|
|
1393
|
-
source = { registry = "https://pypi.org/simple" }
|
|
1394
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
1395
|
-
wheels = [
|
|
1396
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1397
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1398
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1399
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1400
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1401
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1402
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1403
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1404
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1405
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1406
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1407
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1408
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1409
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1410
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1411
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1412
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1391
|
+
version = "0.0.65"
|
|
1392
|
+
source = { registry = "https://pypi.org/simple" }
|
|
1393
|
+
sdist = { url = "https://files.pythonhosted.org/packages/d6/54/cf561927e8e9ab5c1892a833b664aa9cd6f051a75f6280c66d8047246bda/ty-0.0.65.tar.gz", hash = "sha256:b7134bffcc00b715fa8291e84d845782ced810a998dc1f7f11d71c85c4046325", size = 6460098, upload-time = "2026-07-29T18:31:03.27Z" }
|
|
1394
|
+
wheels = [
|
|
1395
|
+
{ url = "https://files.pythonhosted.org/packages/7b/4e/71e2d325d2b53a1afad81624ad076b2ede413213fc4a18cb05b78c568571/ty-0.0.65-py3-none-linux_armv6l.whl", hash = "sha256:dc556c9f05408bef4c4ef02b2cc382e4e5f797b4b20d64410289848f0d76705f", size = 12298466, upload-time = "2026-07-29T18:30:12.744Z" },
|
|
1396
|
+
{ url = "https://files.pythonhosted.org/packages/57/77/fec8f29647c55794efa430a7f365e44f5ce7ffb6459d9445a87fac569bec/ty-0.0.65-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:29d2e0d34cc0a28a17ef0cf81135c5ebabc3562131f9079138ba5e7bae0f56bd", size = 11942421, upload-time = "2026-07-29T18:30:16.076Z" },
|
|
1397
|
+
{ url = "https://files.pythonhosted.org/packages/13/09/7f3766aef9dc627e2698cf4e3e59cf53389dcae3812040d33c1aa931230f/ty-0.0.65-py3-none-macosx_11_0_arm64.whl", hash = "sha256:685f49a9312bbf69d5b65bbb66384fed1f927403ea030c217b9289092d7e46c4", size = 11451922, upload-time = "2026-07-29T18:30:19.155Z" },
|
|
1398
|
+
{ url = "https://files.pythonhosted.org/packages/cb/7b/1a77cd50e0befb50f55b8bf9bd3ed3eddf184bf28c61b56727039e0774fc/ty-0.0.65-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f564b5ebe78e2f3a8e7b8eacb1292eb88b7c0f3c8630671cfca31abc0709cd9", size = 11994999, upload-time = "2026-07-29T18:30:22.315Z" },
|
|
1399
|
+
{ url = "https://files.pythonhosted.org/packages/63/7b/feda16f3a4a0a99be27431e0c9598eeeec0db1eb2fec9a15976698209418/ty-0.0.65-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c983e156fe9e113fb56389e13d327b6b8549fe866de9b269684723a88e9b732d", size = 12090662, upload-time = "2026-07-29T18:30:24.93Z" },
|
|
1400
|
+
{ url = "https://files.pythonhosted.org/packages/ed/3e/3f69bf9c9307dbdc0771719f65ce5b556e7bdeeaccbdd599d4f57866d801/ty-0.0.65-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e3663b7396e8b1a9954e20e732de7ccb0192bf4118473069b4945920d6923921", size = 12822094, upload-time = "2026-07-29T18:30:28.012Z" },
|
|
1401
|
+
{ url = "https://files.pythonhosted.org/packages/90/38/8fa791b3bb503ee2b46ad81690cd1bdd54519582df6d805cee57fe143e85/ty-0.0.65-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:306ed01f29d6e108e98feb233dbbf5878a027603b71bd3743b343977933a9f16", size = 13357833, upload-time = "2026-07-29T18:30:31.122Z" },
|
|
1402
|
+
{ url = "https://files.pythonhosted.org/packages/c1/73/4dda396a201e1dd0ed3594a9b48e559cb41c4bc048c6cd4c4d1b39eb4313/ty-0.0.65-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28bcfc8898c94f079a9100e684bcf312b6a64ad3a7d4ebb35a4591546030a2cd", size = 12977303, upload-time = "2026-07-29T18:30:33.944Z" },
|
|
1403
|
+
{ url = "https://files.pythonhosted.org/packages/a5/26/c250c2c569adc53a8591716641388397bcb2a442e4a30b952ae81b50c0e0/ty-0.0.65-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5a75bd0c245c38802a8f488378e74f92feb7dd33db7d63fbdd6fdf82791ba730", size = 12579338, upload-time = "2026-07-29T18:30:37.199Z" },
|
|
1404
|
+
{ url = "https://files.pythonhosted.org/packages/d3/94/4a5647d44753ca218fc930d7e4d9bf468d0ed4a0ad4b3d57588bc1bbacf7/ty-0.0.65-py3-none-manylinux_2_31_riscv64.whl", hash = "sha256:9e5e1bdea9662d2b5312b4e99f319f4e6e2ea427511b5fbc546141b79ec53f76", size = 12957731, upload-time = "2026-07-29T18:30:39.937Z" },
|
|
1405
|
+
{ url = "https://files.pythonhosted.org/packages/36/b6/1e22fa11a1e0dfb20b1c7f3cbfd8170273aada2a82f9ecd3055275370c44/ty-0.0.65-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:03a88493d4842889f65280ae241e06b399d57eb3c63571054cad21a4c33b3b69", size = 11938625, upload-time = "2026-07-29T18:30:42.603Z" },
|
|
1406
|
+
{ url = "https://files.pythonhosted.org/packages/5c/0a/fe5f22ef62b193201bc5566762e22049762cd485bfafb5095a7050760054/ty-0.0.65-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:600b8bf6f4940cf7ffb2f43d3716faaf38dcb97cd8617c55771451bc0276408f", size = 12105592, upload-time = "2026-07-29T18:30:45.419Z" },
|
|
1407
|
+
{ url = "https://files.pythonhosted.org/packages/76/fd/922b3a6e9d697452cdbb4b7e3f636868add5ec652154518a736e4364f3b7/ty-0.0.65-py3-none-musllinux_1_2_i686.whl", hash = "sha256:0c28007bc79d648c1ddaf1e65885d07baec48eb87240da442f608e4107c1b7d8", size = 12387335, upload-time = "2026-07-29T18:30:48.405Z" },
|
|
1408
|
+
{ url = "https://files.pythonhosted.org/packages/77/22/a1a08ebc84c083db2fb55e3b5cd186db0c067692f4921146f601360231e2/ty-0.0.65-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:c852da96091ad22361e6586b7c7ba98e1334dcd4d8ffb67e47f4fb673de33f77", size = 12682710, upload-time = "2026-07-29T18:30:51.364Z" },
|
|
1409
|
+
{ url = "https://files.pythonhosted.org/packages/81/14/eaaa410a25bbdea19722109b5422380a0e211b3afcf3071d15953ddbd5db/ty-0.0.65-py3-none-win32.whl", hash = "sha256:cf529d538f1403b14b0511e6ec3cdb95d3d974adabf24cc76cedc533368c3edc", size = 11692341, upload-time = "2026-07-29T18:30:54.35Z" },
|
|
1410
|
+
{ url = "https://files.pythonhosted.org/packages/bc/0f/6d48f206dce9d7e53fe3b5ea0f0ab5800dd9d2365b2b48f736783436c43f/ty-0.0.65-py3-none-win_amd64.whl", hash = "sha256:234a321e33c7cbbfbd67bfa0b01b685dd9c21f1841781a21e5ca1fa0b25f1d5d", size = 12729355, upload-time = "2026-07-29T18:30:57.275Z" },
|
|
1411
|
+
{ url = "https://files.pythonhosted.org/packages/96/aa/7446f7725e303cf78e058c893af1f0552b9451895454908706f4c6c3494b/ty-0.0.65-py3-none-win_arm64.whl", hash = "sha256:b9424be1ec56d93ff18609fb1c0a0a2283fe1282cd6d1c7604f97d73b94d61f2", size = 12051375, upload-time = "2026-07-29T18:31:00.579Z" },
|
|
1413
1412
|
]
|
|
1414
1413
|
|
|
1415
1414
|
[[package]]
|
|
1416
1415
|
name = "types-aiobotocore"
|
|
1417
|
-
version = "3.
|
|
1416
|
+
version = "3.9.0"
|
|
1418
1417
|
source = { registry = "https://pypi.org/simple" }
|
|
1419
1418
|
dependencies = [
|
|
1420
1419
|
{ name = "botocore-stubs" },
|
|
1421
1420
|
]
|
|
1422
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
1421
|
+
sdist = { url = "https://files.pythonhosted.org/packages/b9/a8/a4ad647d7b3473bdc1892a0f7e6872affaf509d18f915f07c51f72b055c7/types_aiobotocore-3.9.0.tar.gz", hash = "sha256:00fc52e98c9d65fe6716f246e6e03ce18f0b6727aa580ab5b274fde6844b6142", size = 88503, upload-time = "2026-08-02T03:05:26.377Z" }
|
|
1423
1422
|
wheels = [
|
|
1424
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1423
|
+
{ url = "https://files.pythonhosted.org/packages/25/0e/d8af0ba644968d6183e04e9ab9c3e1c6b5b10f25f5389ec825abf65c11c7/types_aiobotocore-3.9.0-py3-none-any.whl", hash = "sha256:614862ac387098964805325751f8ab3b74d52e3e6ec7f37b7585fd971fabe476", size = 54999, upload-time = "2026-08-02T03:05:22.581Z" },
|
|
1425
1424
|
]
|
|
1426
1425
|
|
|
1427
1426
|
[package.optional-dependencies]
|
|
@@ -1431,11 +1430,11 @@ s3 = [
|
|
|
1431
1430
|
|
|
1432
1431
|
[[package]]
|
|
1433
1432
|
name = "types-aiobotocore-s3"
|
|
1434
|
-
version = "3.
|
|
1433
|
+
version = "3.9.0"
|
|
1435
1434
|
source = { registry = "https://pypi.org/simple" }
|
|
1436
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
1435
|
+
sdist = { url = "https://files.pythonhosted.org/packages/b1/d8/50676b92e2f470f483df68b4675e12407e8a0403c0596d378a692f249847/types_aiobotocore_s3-3.9.0.tar.gz", hash = "sha256:bf6978aa30cd2ae5b49cfd4e6afc2d8996ec48667df4e03dcb56d7ae6d7b04e8", size = 79454, upload-time = "2026-08-02T03:03:37.391Z" }
|
|
1437
1436
|
wheels = [
|
|
1438
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1437
|
+
{ url = "https://files.pythonhosted.org/packages/4b/78/2a60987f59ccd7e6c3fc3b7da0723c12d8523946f712d407a2401a7a6b72/types_aiobotocore_s3-3.9.0-py3-none-any.whl", hash = "sha256:39691b6336bd5b32d683dd236a262ded628f1ddb3d83aa6b30be082eae94d5bd", size = 87373, upload-time = "2026-08-02T03:03:35.529Z" },
|
|
1439
1438
|
]
|
|
1440
1439
|
|
|
1441
1440
|
[[package]]
|
|
@@ -1493,19 +1492,19 @@ libvalkey = [
|
|
|
1493
1492
|
|
|
1494
1493
|
[[package]]
|
|
1495
1494
|
name = "vcs-versioning"
|
|
1496
|
-
version = "2.2.
|
|
1495
|
+
version = "2.2.3"
|
|
1497
1496
|
source = { registry = "https://pypi.org/simple" }
|
|
1498
1497
|
dependencies = [
|
|
1499
1498
|
{ name = "packaging" },
|
|
1500
1499
|
]
|
|
1501
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
1500
|
+
sdist = { url = "https://files.pythonhosted.org/packages/e9/bb/5270e8ffd3123051ac4fbbaabf61afb8f27819ac8ced0f0cc4b24137d30e/vcs_versioning-2.2.3.tar.gz", hash = "sha256:c21e284aa98c8269996791a19d6173baf953cf9996ef42ec3ebcbdc151e18b9b", size = 143653, upload-time = "2026-07-28T21:07:36.045Z" }
|
|
1502
1501
|
wheels = [
|
|
1503
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1502
|
+
{ url = "https://files.pythonhosted.org/packages/95/2e/83be70d0379bbe17034e5d5960fae2a23cc136d466786607d2615ac2612b/vcs_versioning-2.2.3-py3-none-any.whl", hash = "sha256:4f7873af76f5cc24e701608354f376f5eb70b317d663787ace57a7edd7a27506", size = 108180, upload-time = "2026-07-28T21:07:33.842Z" },
|
|
1504
1503
|
]
|
|
1505
1504
|
|
|
1506
1505
|
[[package]]
|
|
1507
1506
|
name = "virtualenv"
|
|
1508
|
-
version = "21.7.
|
|
1507
|
+
version = "21.7.1"
|
|
1509
1508
|
source = { registry = "https://pypi.org/simple" }
|
|
1510
1509
|
dependencies = [
|
|
1511
1510
|
{ name = "distlib" },
|
|
@@ -1513,9 +1512,9 @@ dependencies = [
|
|
|
1513
1512
|
{ name = "platformdirs" },
|
|
1514
1513
|
{ name = "python-discovery" },
|
|
1515
1514
|
]
|
|
1516
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
1515
|
+
sdist = { url = "https://files.pythonhosted.org/packages/ea/fa/18004e5cb15541ad2a68ff219c755233b012b12d4ec8663d06a258082bec/virtualenv-21.7.1.tar.gz", hash = "sha256:d0dbfaa5483487baea28d7210ef8d24c9d1bd0f10f449eeb215568825a9b334e", size = 5525237, upload-time = "2026-07-30T15:40:36.36Z" }
|
|
1517
1516
|
wheels = [
|
|
1518
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1517
|
+
{ url = "https://files.pythonhosted.org/packages/4b/a7/ded126c19495158a05c7202b3389139839d4cf78d622d453867778e0f7a8/virtualenv-21.7.1-py3-none-any.whl", hash = "sha256:6394973f990536e34c05157179146c020284c42fe01da1dfeb0ba16c345280d9", size = 5504576, upload-time = "2026-07-30T15:40:34.512Z" },
|
|
1519
1518
|
]
|
|
1520
1519
|
|
|
1521
1520
|
[[package]]
|
|
@@ -1532,33 +1531,33 @@ wheels = [
|
|
|
1532
1531
|
|
|
1533
1532
|
[[package]]
|
|
1534
1533
|
name = "wrapt"
|
|
1535
|
-
version = "2.
|
|
1536
|
-
source = { registry = "https://pypi.org/simple" }
|
|
1537
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
1538
|
-
wheels = [
|
|
1539
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1540
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1541
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1542
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1543
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1544
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1545
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1546
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1547
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1548
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1549
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1550
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1551
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1552
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1553
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1554
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1555
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1556
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1557
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1558
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1559
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1560
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1561
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1534
|
+
version = "2.3.0"
|
|
1535
|
+
source = { registry = "https://pypi.org/simple" }
|
|
1536
|
+
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" }
|
|
1537
|
+
wheels = [
|
|
1538
|
+
{ 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" },
|
|
1539
|
+
{ 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" },
|
|
1540
|
+
{ 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" },
|
|
1541
|
+
{ 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" },
|
|
1542
|
+
{ 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" },
|
|
1543
|
+
{ 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" },
|
|
1544
|
+
{ 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" },
|
|
1545
|
+
{ 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" },
|
|
1546
|
+
{ 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" },
|
|
1547
|
+
{ 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" },
|
|
1548
|
+
{ 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" },
|
|
1549
|
+
{ 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" },
|
|
1550
|
+
{ 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" },
|
|
1551
|
+
{ 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" },
|
|
1552
|
+
{ 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" },
|
|
1553
|
+
{ 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" },
|
|
1554
|
+
{ 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" },
|
|
1555
|
+
{ 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" },
|
|
1556
|
+
{ 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" },
|
|
1557
|
+
{ 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" },
|
|
1558
|
+
{ 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" },
|
|
1559
|
+
{ 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" },
|
|
1560
|
+
{ 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" },
|
|
1562
1561
|
]
|
|
1563
1562
|
|
|
1564
1563
|
[[package]]
|
|
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
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python3_commons-0.23.3 → python3_commons-0.24.0}/src/python3_commons/serializers/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python3_commons-0.23.3 → python3_commons-0.24.0}/src/python3_commons/serializers/msgpack.py
RENAMED
|
File without changes
|
{python3_commons-0.23.3 → python3_commons-0.24.0}/src/python3_commons/serializers/msgspec.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python3_commons-0.23.3 → python3_commons-0.24.0}/src/python3_commons.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
{python3_commons-0.23.3 → python3_commons-0.24.0}/src/python3_commons.egg-info/scm_file_list.json
RENAMED
|
@@ -1,76 +1,76 @@
|
|
|
1
1
|
{
|
|
2
2
|
"files": [
|
|
3
|
-
".
|
|
4
|
-
".
|
|
5
|
-
"README.md",
|
|
6
|
-
"AUTHORS.rst",
|
|
3
|
+
".pre-commit-config.yaml",
|
|
4
|
+
"README.rst",
|
|
7
5
|
"CHANGELOG.rst",
|
|
6
|
+
".python-version",
|
|
8
7
|
"pyproject.toml",
|
|
9
8
|
".env_template",
|
|
10
|
-
".
|
|
11
|
-
".pre-commit-config.yaml",
|
|
12
|
-
"uv.lock",
|
|
9
|
+
"AUTHORS.rst",
|
|
13
10
|
"LICENSE",
|
|
14
|
-
"README.
|
|
11
|
+
"README.md",
|
|
12
|
+
"uv.lock",
|
|
13
|
+
".gitignore",
|
|
14
|
+
".coveragerc",
|
|
15
|
+
".github/workflows/release-on-tag-push.yml",
|
|
16
|
+
".github/workflows/checks.yml",
|
|
17
|
+
".github/workflows/python-publish.yaml",
|
|
18
|
+
".devcontainer/docker-compose.yml",
|
|
19
|
+
".devcontainer/Dockerfile",
|
|
20
|
+
".devcontainer/devcontainer.json",
|
|
21
|
+
"tests/__init__.py",
|
|
22
|
+
"tests/integration/test_auth.py",
|
|
23
|
+
"tests/integration/test_osc.py",
|
|
24
|
+
"tests/integration/__init__.py",
|
|
25
|
+
"tests/integration/conftest.py",
|
|
26
|
+
"tests/integration/test_cache.py",
|
|
27
|
+
"tests/unit/test_helpers.py",
|
|
28
|
+
"tests/unit/test_auth.py",
|
|
29
|
+
"tests/unit/test_msgpack.py",
|
|
30
|
+
"tests/unit/test_msgspec.py",
|
|
31
|
+
"tests/unit/__init__.py",
|
|
32
|
+
"tests/unit/test_audit.py",
|
|
33
|
+
"tests/unit/test_async_functools.py",
|
|
34
|
+
"tests/unit/conftest.py",
|
|
35
|
+
"tests/unit/log/test_formatters.py",
|
|
36
|
+
"tests/unit/log/__init__.py",
|
|
37
|
+
"tests/unit/db/__init__.py",
|
|
38
|
+
"tests/unit/db/test_async_session_manager.py",
|
|
39
|
+
"src/python3_commons/helpers.py",
|
|
15
40
|
"src/python3_commons/conf.py",
|
|
16
|
-
"src/python3_commons/soap_client.py",
|
|
17
|
-
"src/python3_commons/async_functools.py",
|
|
18
|
-
"src/python3_commons/permissions.py",
|
|
19
|
-
"src/python3_commons/fs.py",
|
|
20
|
-
"src/python3_commons/api_client.py",
|
|
21
41
|
"src/python3_commons/audit.py",
|
|
22
|
-
"src/python3_commons/object_storage.py",
|
|
23
|
-
"src/python3_commons/exceptions.py",
|
|
24
|
-
"src/python3_commons/helpers.py",
|
|
25
42
|
"src/python3_commons/generators.py",
|
|
26
|
-
"src/python3_commons/cache.py",
|
|
27
43
|
"src/python3_commons/auth.py",
|
|
28
44
|
"src/python3_commons/__init__.py",
|
|
45
|
+
"src/python3_commons/fs.py",
|
|
46
|
+
"src/python3_commons/async_functools.py",
|
|
47
|
+
"src/python3_commons/exceptions.py",
|
|
48
|
+
"src/python3_commons/soap_client.py",
|
|
49
|
+
"src/python3_commons/object_storage.py",
|
|
50
|
+
"src/python3_commons/cache.py",
|
|
51
|
+
"src/python3_commons/api_client.py",
|
|
52
|
+
"src/python3_commons/permissions.py",
|
|
53
|
+
"src/python3_commons/log/__init__.py",
|
|
54
|
+
"src/python3_commons/log/filters.py",
|
|
55
|
+
"src/python3_commons/log/formatters.py",
|
|
29
56
|
"src/python3_commons/db/helpers.py",
|
|
30
57
|
"src/python3_commons/db/__init__.py",
|
|
31
58
|
"src/python3_commons/db/models/common.py",
|
|
32
|
-
"src/python3_commons/db/models/rbac.py",
|
|
33
|
-
"src/python3_commons/db/models/auth.py",
|
|
34
59
|
"src/python3_commons/db/models/users.py",
|
|
60
|
+
"src/python3_commons/db/models/auth.py",
|
|
35
61
|
"src/python3_commons/db/models/__init__.py",
|
|
36
|
-
"src/python3_commons/
|
|
37
|
-
"src/python3_commons/log/formatters.py",
|
|
38
|
-
"src/python3_commons/log/__init__.py",
|
|
62
|
+
"src/python3_commons/db/models/rbac.py",
|
|
39
63
|
"src/python3_commons/serializers/msgspec.py",
|
|
40
|
-
"src/python3_commons/serializers/json.py",
|
|
41
|
-
"src/python3_commons/serializers/common.py",
|
|
42
64
|
"src/python3_commons/serializers/msgpack.py",
|
|
65
|
+
"src/python3_commons/serializers/common.py",
|
|
43
66
|
"src/python3_commons/serializers/__init__.py",
|
|
44
|
-
"
|
|
45
|
-
".
|
|
46
|
-
"
|
|
47
|
-
".github/workflows/checks.yml",
|
|
48
|
-
".github/workflows/release-on-tag-push.yml",
|
|
49
|
-
".github/workflows/python-publish.yaml",
|
|
50
|
-
"tests/__init__.py",
|
|
51
|
-
"tests/integration/conftest.py",
|
|
52
|
-
"tests/integration/test_osc.py",
|
|
53
|
-
"tests/integration/test_cache.py",
|
|
54
|
-
"tests/integration/test_auth.py",
|
|
55
|
-
"tests/integration/__init__.py",
|
|
56
|
-
"tests/unit/test_async_functools.py",
|
|
57
|
-
"tests/unit/conftest.py",
|
|
58
|
-
"tests/unit/test_msgspec.py",
|
|
59
|
-
"tests/unit/test_audit.py",
|
|
60
|
-
"tests/unit/test_auth.py",
|
|
61
|
-
"tests/unit/test_msgpack.py",
|
|
62
|
-
"tests/unit/test_helpers.py",
|
|
63
|
-
"tests/unit/__init__.py",
|
|
64
|
-
"tests/unit/db/test_async_session_manager.py",
|
|
65
|
-
"tests/unit/db/__init__.py",
|
|
66
|
-
"tests/unit/log/test_formatters.py",
|
|
67
|
-
"tests/unit/log/__init__.py",
|
|
67
|
+
"src/python3_commons/serializers/json.py",
|
|
68
|
+
"docs/index.rst",
|
|
69
|
+
"docs/license.rst",
|
|
68
70
|
"docs/conf.py",
|
|
69
71
|
"docs/Makefile",
|
|
70
|
-
"docs/index.rst",
|
|
71
|
-
"docs/authors.rst",
|
|
72
72
|
"docs/changelog.rst",
|
|
73
|
-
"docs/
|
|
73
|
+
"docs/authors.rst",
|
|
74
74
|
"docs/_static/.gitignore"
|
|
75
75
|
]
|
|
76
76
|
}
|
{python3_commons-0.23.3 → python3_commons-0.24.0}/src/python3_commons.egg-info/top_level.txt
RENAMED
|
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
|
{python3_commons-0.23.3 → python3_commons-0.24.0}/tests/unit/db/test_async_session_manager.py
RENAMED
|
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
|