python3-commons 0.23.3__tar.gz → 0.23.4__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.23.4}/.pre-commit-config.yaml +2 -2
- {python3_commons-0.23.3 → python3_commons-0.23.4}/PKG-INFO +2 -2
- {python3_commons-0.23.3 → python3_commons-0.23.4}/pyproject.toml +1 -1
- {python3_commons-0.23.3 → python3_commons-0.23.4}/src/python3_commons.egg-info/PKG-INFO +2 -2
- {python3_commons-0.23.3 → python3_commons-0.23.4}/src/python3_commons.egg-info/requires.txt +1 -1
- python3_commons-0.23.4/src/python3_commons.egg-info/scm_version.json +8 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/uv.lock +78 -78
- python3_commons-0.23.3/src/python3_commons.egg-info/scm_version.json +0 -8
- {python3_commons-0.23.3 → python3_commons-0.23.4}/.coveragerc +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/.devcontainer/Dockerfile +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/.devcontainer/devcontainer.json +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/.devcontainer/docker-compose.yml +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/.env_template +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/.github/workflows/checks.yml +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/.github/workflows/python-publish.yaml +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/.github/workflows/release-on-tag-push.yml +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/.gitignore +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/.python-version +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/AUTHORS.rst +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/CHANGELOG.rst +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/LICENSE +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/README.md +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/README.rst +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/docs/Makefile +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/docs/_static/.gitignore +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/docs/authors.rst +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/docs/changelog.rst +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/docs/conf.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/docs/index.rst +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/docs/license.rst +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/setup.cfg +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/src/python3_commons/__init__.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/src/python3_commons/api_client.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/src/python3_commons/async_functools.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/src/python3_commons/audit.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/src/python3_commons/auth.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/src/python3_commons/cache.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/src/python3_commons/conf.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/src/python3_commons/db/__init__.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/src/python3_commons/db/helpers.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/src/python3_commons/db/models/__init__.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/src/python3_commons/db/models/auth.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/src/python3_commons/db/models/common.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/src/python3_commons/db/models/rbac.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/src/python3_commons/db/models/users.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/src/python3_commons/exceptions.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/src/python3_commons/fs.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/src/python3_commons/generators.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/src/python3_commons/helpers.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/src/python3_commons/log/__init__.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/src/python3_commons/log/filters.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/src/python3_commons/log/formatters.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/src/python3_commons/object_storage.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/src/python3_commons/permissions.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/src/python3_commons/serializers/__init__.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/src/python3_commons/serializers/common.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/src/python3_commons/serializers/json.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/src/python3_commons/serializers/msgpack.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/src/python3_commons/serializers/msgspec.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/src/python3_commons/soap_client.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/src/python3_commons.egg-info/SOURCES.txt +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/src/python3_commons.egg-info/dependency_links.txt +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/src/python3_commons.egg-info/scm_file_list.json +51 -51
- {python3_commons-0.23.3 → python3_commons-0.23.4}/src/python3_commons.egg-info/top_level.txt +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/tests/__init__.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/tests/integration/__init__.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/tests/integration/conftest.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/tests/integration/test_auth.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/tests/integration/test_cache.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/tests/integration/test_osc.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/tests/unit/__init__.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/tests/unit/conftest.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/tests/unit/db/__init__.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/tests/unit/db/test_async_session_manager.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/tests/unit/log/__init__.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/tests/unit/log/test_formatters.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/tests/unit/test_async_functools.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/tests/unit/test_audit.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/tests/unit/test_auth.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/tests/unit/test_helpers.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/tests/unit/test_msgpack.py +0 -0
- {python3_commons-0.23.3 → python3_commons-0.23.4}/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.23.
|
|
3
|
+
Version: 0.23.4
|
|
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.2; 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.23.
|
|
3
|
+
Version: 0.23.4
|
|
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.2; 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]]
|
|
@@ -752,14 +752,14 @@ wheels = [
|
|
|
752
752
|
|
|
753
753
|
[[package]]
|
|
754
754
|
name = "object-storage-client"
|
|
755
|
-
version = "0.1.
|
|
755
|
+
version = "0.1.2"
|
|
756
756
|
source = { registry = "https://pypi.org/simple" }
|
|
757
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
757
|
+
sdist = { url = "https://files.pythonhosted.org/packages/ad/4d/64cb2b846325a193312f12a2a7d196120fce26046088ece503cacd13d44f/object_storage_client-0.1.2.tar.gz", hash = "sha256:c063a7ae43eea2b2456113095268bfe238b37f3f563963f1432e48a25397aa07", size = 71391, upload-time = "2026-07-28T18:12:46.981Z" }
|
|
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/69/23/88c808b2df860e95304af64a59addce30a39d6ad07c046514f952f9e6f69/object_storage_client-0.1.2-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:d26cada26cbbfca2bbedbd95812912d8fd54802a701cfa4e9caf66bb36664cb9", size = 2881264, upload-time = "2026-07-28T18:12:41.503Z" },
|
|
760
|
+
{ url = "https://files.pythonhosted.org/packages/09/d0/ab483286d03bd4a5ba41260218e123d9387c61a504e803ef0c1f3452197d/object_storage_client-0.1.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8ddfc65e1b061dc3cd18104d2f852c7729741158cbf18db06b272679993b0fe3", size = 3940156, upload-time = "2026-07-28T18:12:43.17Z" },
|
|
761
|
+
{ url = "https://files.pythonhosted.org/packages/e4/f8/4496873d0e5623b0cbb857a04205b44e45a8026c57d61ccf2ea50c678514/object_storage_client-0.1.2-cp314-cp314-manylinux_2_28_aarch64.whl", hash = "sha256:16987aaeb36c827c95125d8ff988632986ac5df95d6aa888475890ce4d06014e", size = 3699889, upload-time = "2026-07-28T18:12:44.518Z" },
|
|
762
|
+
{ url = "https://files.pythonhosted.org/packages/d8/20/47b3a46e66ee25c3d030b25be02f8466e8aed5fc7a91393993e970225530/object_storage_client-0.1.2-cp314-cp314-win_amd64.whl", hash = "sha256:a6e94887ec884e228f6deda13ec2be133cc66483b640040c5dbabe8a86781399", size = 3469820, upload-time = "2026-07-28T18:12:45.798Z" },
|
|
763
763
|
]
|
|
764
764
|
|
|
765
765
|
[[package]]
|
|
@@ -1197,7 +1197,7 @@ requires-dist = [
|
|
|
1197
1197
|
{ name = "lxml", marker = "extra == 'soap-client'", specifier = "~=6.1.1" },
|
|
1198
1198
|
{ name = "msgpack", specifier = "~=1.2.1" },
|
|
1199
1199
|
{ name = "msgspec", specifier = "~=0.21.1" },
|
|
1200
|
-
{ name = "object-storage-client", marker = "extra == 'object-storage'", specifier = "~=0.1.
|
|
1200
|
+
{ name = "object-storage-client", marker = "extra == 'object-storage'", specifier = "~=0.1.2" },
|
|
1201
1201
|
{ name = "pydantic-settings", specifier = "~=2.14.2" },
|
|
1202
1202
|
{ name = "python3-commons", extras = ["api-client"], marker = "extra == 'authn'" },
|
|
1203
1203
|
{ name = "python3-commons", extras = ["api-client"], marker = "extra == 'authz'" },
|
|
@@ -1300,27 +1300,27 @@ wheels = [
|
|
|
1300
1300
|
|
|
1301
1301
|
[[package]]
|
|
1302
1302
|
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/
|
|
1303
|
+
version = "0.16.0"
|
|
1304
|
+
source = { registry = "https://pypi.org/simple" }
|
|
1305
|
+
sdist = { url = "https://files.pythonhosted.org/packages/4d/94/1e5e4967626faf12fa56999cd6222dff6992ceb086ad7945756baf70c7a7/ruff-0.16.0.tar.gz", hash = "sha256:e460aafd5495ec89efaa6ced2e4a9a581116451e1c88b9d37ef497e0f8e93982", size = 4790557, upload-time = "2026-07-23T19:11:30.981Z" }
|
|
1306
|
+
wheels = [
|
|
1307
|
+
{ url = "https://files.pythonhosted.org/packages/4b/81/1c8818fee7ce1a04cd7d1b3172e0a8f8e4f1dc4feb7fc390e16daa8af323/ruff-0.16.0-py3-none-linux_armv6l.whl", hash = "sha256:e5115729eb08c585e5121978ba5d5b60caeae394ce21b9fb5e6cd33a1c6c9b1e", size = 10754633, upload-time = "2026-07-23T19:10:46.415Z" },
|
|
1308
|
+
{ url = "https://files.pythonhosted.org/packages/23/df/beaf59c09d68db84304d555f188b276a77132a5d5b0b67a5c762aa143628/ruff-0.16.0-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:3c954b1d580bfa035b41654f7858cc7e71d5fc3ac5b723dd62bd9133830ed522", size = 10969164, upload-time = "2026-07-23T19:10:50.271Z" },
|
|
1309
|
+
{ url = "https://files.pythonhosted.org/packages/42/ce/741cd197496a1abbf51352710fd15ed995d2a2be87189c1da26a450d6e83/ruff-0.16.0-py3-none-macosx_11_0_arm64.whl", hash = "sha256:e01c21d10eb1b29f47b7454e1f4056db9a3f0260c646aa88457c610291db9f81", size = 10488846, upload-time = "2026-07-23T19:10:52.639Z" },
|
|
1310
|
+
{ url = "https://files.pythonhosted.org/packages/52/2a/a2db8e88cade358f5cdcb05674a917751074109315d014eb6352d9a893f7/ruff-0.16.0-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6e364e5ed22ed8dc05082fd78e35308618260907ac2d3c1d637b2e682415b6c9", size = 10889729, upload-time = "2026-07-23T19:10:54.89Z" },
|
|
1311
|
+
{ url = "https://files.pythonhosted.org/packages/42/65/62a771694ebd63029dc953e27dbad40e1588bd4860ff9fe881018fddaa49/ruff-0.16.0-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d327b8fc113a1d4421a04f3839d3752057c8dd1ee320223a6f3f52d04ada462a", size = 10568275, upload-time = "2026-07-23T19:10:56.993Z" },
|
|
1312
|
+
{ url = "https://files.pythonhosted.org/packages/3f/e2/ced249fe8af5f086c5c58cc21cc3356d50f32f7401c5df87050c999620a7/ruff-0.16.0-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a9b50c55e263103586b3dcf5f73d479eb8cb5fdb6098fec59a62891dab653717", size = 11385112, upload-time = "2026-07-23T19:10:59.615Z" },
|
|
1313
|
+
{ url = "https://files.pythonhosted.org/packages/87/0b/05154977a8fd69eeb6c103271f55403bfd8711f5c0f8ed07489d95a504e7/ruff-0.16.0-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0ff4a79ce3ec0172f3241943835de1c4cb4e2dcd07f0f8c2d02603dbbbee4b17", size = 12207008, upload-time = "2026-07-23T19:11:02.154Z" },
|
|
1314
|
+
{ url = "https://files.pythonhosted.org/packages/fb/29/98225831a3a1eab0e02f4acc6ca6559a98611dcc68b6965ff4b7234627c1/ruff-0.16.0-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e95c448fca1fb2a18372a9440926c5a6ee789639bb975c72e7ae6d0b04218ab4", size = 11650842, upload-time = "2026-07-23T19:11:04.557Z" },
|
|
1315
|
+
{ url = "https://files.pythonhosted.org/packages/91/66/6bd3cf90500653d55dc0ffc8507aa8300bd49d0214b2e8cb4d3fef2943ba/ruff-0.16.0-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f11a8d11010301d0a398a2fdef67691feca7294da6aef55e2150e8fa2cd520b", size = 11400718, upload-time = "2026-07-23T19:11:09.233Z" },
|
|
1316
|
+
{ url = "https://files.pythonhosted.org/packages/8e/a2/a54eb4eae05d66364050a5d3b8a9c5ef88196531b3cbe7109d873f87f819/ruff-0.16.0-py3-none-manylinux_2_31_riscv64.whl", hash = "sha256:48044c678e9cb8698246c99b14aaccfa6601dea7379eb48a6f8f73f7a6d86cd0", size = 11426177, upload-time = "2026-07-23T19:11:11.994Z" },
|
|
1317
|
+
{ url = "https://files.pythonhosted.org/packages/1a/be/16e3eea4b2a478a496919f5e36f17c4559e54620bd3bbac5d6affa068006/ruff-0.16.0-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:7aa0959bad8eb8bef50340154fc9b58678dae31fa4293afa38b44b6e552c0213", size = 10856126, upload-time = "2026-07-23T19:11:14.221Z" },
|
|
1318
|
+
{ url = "https://files.pythonhosted.org/packages/a2/84/252eb8b868a16eec7257c14f504f77537e734b2d69c762e639e588e304a3/ruff-0.16.0-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:28ea2b7df8ebf7f9da6b7d47b230ab48f387c0a29be3b474c4d0740e197bb9af", size = 10571208, upload-time = "2026-07-23T19:11:16.378Z" },
|
|
1319
|
+
{ url = "https://files.pythonhosted.org/packages/21/09/817a482f542f7570cbb4554b26e896610c7114f539b1d9e2d2145bf6bef6/ruff-0.16.0-py3-none-musllinux_1_2_i686.whl", hash = "sha256:33a3dfac8c35f81498dea9181bccc2f4c4bc8f1521a1dd9406e77643e0f0fb09", size = 11063329, upload-time = "2026-07-23T19:11:19.173Z" },
|
|
1320
|
+
{ url = "https://files.pythonhosted.org/packages/2e/23/9403c180ca1cb9b1f7335f5c3e5305c09d49ea5b345196682a36028bde4a/ruff-0.16.0-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:a5237a0bda500d30d81b8e07a6973a5cbc772864cbf746ae2f4e8a2e01c9f4ed", size = 11489751, upload-time = "2026-07-23T19:11:21.74Z" },
|
|
1321
|
+
{ url = "https://files.pythonhosted.org/packages/b2/1d/1b2ef7bcde851c78d7f17f1cca13fd6dc695fc4b3d6197941e72cae5b132/ruff-0.16.0-py3-none-win32.whl", hash = "sha256:7fab76fa065c873f41ff744347c6e77bcc3dfec4bcc754dc26b63d23c0f7f5fb", size = 10785885, upload-time = "2026-07-23T19:11:23.947Z" },
|
|
1322
|
+
{ url = "https://files.pythonhosted.org/packages/b2/a3/d5e4ef7a56be3f928ffb90b94c25ba7d3cb9c7fe0736aeaaedf361770712/ruff-0.16.0-py3-none-win_amd64.whl", hash = "sha256:429c117f022bf481fabd9d551e7a3952b24c65e6ef44337ea09d90bebef14472", size = 11923141, upload-time = "2026-07-23T19:11:26.409Z" },
|
|
1323
|
+
{ url = "https://files.pythonhosted.org/packages/cb/9a/8415f2657cbe200f41a4531ccededf135505a92d4a012229121f885b26f9/ruff-0.16.0-py3-none-win_arm64.whl", hash = "sha256:14296fedcd2705c77ab8235439278bbb38f285cf7da5528b00b3e330c3d4872d", size = 11273407, upload-time = "2026-07-23T19:11:28.705Z" },
|
|
1324
1324
|
]
|
|
1325
1325
|
|
|
1326
1326
|
[[package]]
|
|
@@ -1389,27 +1389,27 @@ asyncio = [
|
|
|
1389
1389
|
|
|
1390
1390
|
[[package]]
|
|
1391
1391
|
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/35/
|
|
1392
|
+
version = "0.0.64"
|
|
1393
|
+
source = { registry = "https://pypi.org/simple" }
|
|
1394
|
+
sdist = { url = "https://files.pythonhosted.org/packages/8e/aa/14c9965d3b173105692473897cc89c34cd91241368b2044e43167e1c17ff/ty-0.0.64.tar.gz", hash = "sha256:d12ddbb05f15158bb518af619378b385486450def95fb06f8ab98037febe9f2c", size = 6350966, upload-time = "2026-07-27T18:32:45.403Z" }
|
|
1395
|
+
wheels = [
|
|
1396
|
+
{ url = "https://files.pythonhosted.org/packages/ae/4c/c54937e4ff3fa7b34a99ea3387ec766bf0ad98dc8df8d792e89b388e658e/ty-0.0.64-py3-none-linux_armv6l.whl", hash = "sha256:3830a6675ab43635ced1c4c557f380ac4a49e9414e03975e4e4e8db644c64944", size = 12118357, upload-time = "2026-07-27T18:32:08.702Z" },
|
|
1397
|
+
{ url = "https://files.pythonhosted.org/packages/ce/aa/a839ee2bc78e943d079e6abe199a97b4eeffb7e5c9a57326d69de452186a/ty-0.0.64-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:3ff07d7bc32a2135f58afe57393789a32ea2fed1a66216129a8e535e76043903", size = 11790882, upload-time = "2026-07-27T18:32:10.997Z" },
|
|
1398
|
+
{ url = "https://files.pythonhosted.org/packages/4c/de/19f14357888a7198438926303753cf749428e3d62e8980ff1e9a72a78402/ty-0.0.64-py3-none-macosx_11_0_arm64.whl", hash = "sha256:4f6d1c7f897cca05d12bacbf1435150d5ffa496099515aa6ed303c8b29e1d0bb", size = 11317394, upload-time = "2026-07-27T18:32:13.162Z" },
|
|
1399
|
+
{ url = "https://files.pythonhosted.org/packages/08/2f/f54462300535ab99b551eda733177be2eef5dbc2997d3fdb357c4ddd760a/ty-0.0.64-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:138d6c37ad4bf8583aa7a9b29d90954151d7856f9910a03eae3eb34b34c57215", size = 11863042, upload-time = "2026-07-27T18:32:15.307Z" },
|
|
1400
|
+
{ url = "https://files.pythonhosted.org/packages/5e/95/dbecf745520ebe8bd7b02fc55eee6441c9be312ebf6addce605eb52740dd/ty-0.0.64-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1ed9719d1b7b66fb8efe073d860208a44c40af1f6cd5c2364aa9b323a1e579b4", size = 11910730, upload-time = "2026-07-27T18:32:17.467Z" },
|
|
1401
|
+
{ url = "https://files.pythonhosted.org/packages/3b/26/12cfd40028e51ceed7b3cb645281c61c02eb64ff9fb0c09231d65c30ff25/ty-0.0.64-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d68b23e5169e2137b5f1de7169ab0cebecab6c8eda374c34c1f6394308f58242", size = 12631936, upload-time = "2026-07-27T18:32:19.533Z" },
|
|
1402
|
+
{ url = "https://files.pythonhosted.org/packages/a0/d0/65ffc2b0a686347193c6f98e9421a7fc2a96fc3cd0b1001cf7cf284baff9/ty-0.0.64-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f41cb07d89d32626fcaf3ed4d262778fcb28b2628b6ed1e172cd7b18820668d8", size = 13171049, upload-time = "2026-07-27T18:32:22.026Z" },
|
|
1403
|
+
{ url = "https://files.pythonhosted.org/packages/f6/a4/975a5961842dcd6fa60f0770a102c0bba7509da909ab652919bfcdcd4fc7/ty-0.0.64-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5f24e1504ab9e212f92356b82fe088fdeb3a39f9a2f4ff25e505d2e1d0db9056", size = 12826438, upload-time = "2026-07-27T18:32:24.178Z" },
|
|
1404
|
+
{ url = "https://files.pythonhosted.org/packages/af/ef/dfb9b7f9bcc032d3b540b0d1f55f532a336e2fb41b1bd539c05ae81a151a/ty-0.0.64-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:86db830cb914bb33bb8247b66ccea58de4496c2391bd42658aba744b439f3290", size = 12440880, upload-time = "2026-07-27T18:32:26.341Z" },
|
|
1405
|
+
{ url = "https://files.pythonhosted.org/packages/ee/d0/bedac20505e8a8f5501ad73d7d15d8e421a563fef59993909a23036929a4/ty-0.0.64-py3-none-manylinux_2_31_riscv64.whl", hash = "sha256:652ee3d6d03bea76cd2fe8949c78bb5970394ebd7c5fd270e9518c0dee1b931d", size = 12782439, upload-time = "2026-07-27T18:32:28.642Z" },
|
|
1406
|
+
{ url = "https://files.pythonhosted.org/packages/79/d5/795733f13ceff1378f08b3de0c49d0f518df220ed856b0dfac869f3b7c81/ty-0.0.64-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:4838768295774a86e95f9ec5633e739d016adbbb69dcbdc62f3549578a11f624", size = 11814821, upload-time = "2026-07-27T18:32:30.632Z" },
|
|
1407
|
+
{ url = "https://files.pythonhosted.org/packages/52/3e/9d99cd1e1831003434f508ed9f258a56543194afc3bbe051eba2545fa676/ty-0.0.64-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:5a3d700669868599edf39ce5125196682f15a8880cc8c669bc2a83b99984d99b", size = 11928678, upload-time = "2026-07-27T18:32:32.888Z" },
|
|
1408
|
+
{ url = "https://files.pythonhosted.org/packages/b8/3d/448f49a3503fb119a34348a5714bb92001f252fadbbb12d645f2e744b557/ty-0.0.64-py3-none-musllinux_1_2_i686.whl", hash = "sha256:b161f0a82a8e2f2432db3bf7702b4d3924fa9486ba0014f6710a160fc157df0d", size = 12202249, upload-time = "2026-07-27T18:32:34.905Z" },
|
|
1409
|
+
{ url = "https://files.pythonhosted.org/packages/dd/9b/75768e562cec990d189dc05807ae72890b20ffbd1e1f43597bb98db63c60/ty-0.0.64-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:39b9dd42908df47c2dc57dda87e656fab97097ffd2618474bbdea986af0d6a9d", size = 12548817, upload-time = "2026-07-27T18:32:36.995Z" },
|
|
1410
|
+
{ url = "https://files.pythonhosted.org/packages/34/89/44cc276ea6ca0245495014758ffeadde1798fb0b5840c9cf36d8d2ed3250/ty-0.0.64-py3-none-win32.whl", hash = "sha256:d0676ab0e0935795e5843baa28dd5e366dc343d7c0945a996df9eab8e0644885", size = 11545474, upload-time = "2026-07-27T18:32:39.389Z" },
|
|
1411
|
+
{ url = "https://files.pythonhosted.org/packages/01/7e/d1c8a871a38d17c8f168b9a6975f6247f7660f8334e517656a5e4b4a4858/ty-0.0.64-py3-none-win_amd64.whl", hash = "sha256:dcb9bd31f54097e362b776c26ab4564d4564cdd1355cb883481167a26c03cc3f", size = 12542987, upload-time = "2026-07-27T18:32:41.412Z" },
|
|
1412
|
+
{ url = "https://files.pythonhosted.org/packages/35/4d/6d18640d0204cacd69abbaca95ad6a34c6d7e9169e9051d0117b17b827ec/ty-0.0.64-py3-none-win_arm64.whl", hash = "sha256:82cc34c1ad9a8feb6059aef193bebcecc656e548f6fab3d518bcd8b57d198d39", size = 11899263, upload-time = "2026-07-27T18:32:43.366Z" },
|
|
1413
1413
|
]
|
|
1414
1414
|
|
|
1415
1415
|
[[package]]
|
|
@@ -1532,33 +1532,33 @@ wheels = [
|
|
|
1532
1532
|
|
|
1533
1533
|
[[package]]
|
|
1534
1534
|
name = "wrapt"
|
|
1535
|
-
version = "2.
|
|
1535
|
+
version = "2.3.0"
|
|
1536
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/
|
|
1537
|
+
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" }
|
|
1538
|
+
wheels = [
|
|
1539
|
+
{ 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" },
|
|
1540
|
+
{ 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" },
|
|
1541
|
+
{ 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" },
|
|
1542
|
+
{ 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" },
|
|
1543
|
+
{ 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" },
|
|
1544
|
+
{ 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" },
|
|
1545
|
+
{ 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" },
|
|
1546
|
+
{ 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" },
|
|
1547
|
+
{ 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" },
|
|
1548
|
+
{ 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" },
|
|
1549
|
+
{ 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" },
|
|
1550
|
+
{ 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" },
|
|
1551
|
+
{ 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" },
|
|
1552
|
+
{ 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" },
|
|
1553
|
+
{ 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" },
|
|
1554
|
+
{ 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" },
|
|
1555
|
+
{ 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" },
|
|
1556
|
+
{ 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" },
|
|
1557
|
+
{ 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" },
|
|
1558
|
+
{ 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" },
|
|
1559
|
+
{ 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" },
|
|
1560
|
+
{ 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" },
|
|
1561
|
+
{ 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
1562
|
]
|
|
1563
1563
|
|
|
1564
1564
|
[[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.23.4}/src/python3_commons/serializers/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python3_commons-0.23.3 → python3_commons-0.23.4}/src/python3_commons/serializers/msgpack.py
RENAMED
|
File without changes
|
{python3_commons-0.23.3 → python3_commons-0.23.4}/src/python3_commons/serializers/msgspec.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python3_commons-0.23.3 → python3_commons-0.23.4}/src/python3_commons.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
{python3_commons-0.23.3 → python3_commons-0.23.4}/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.23.4}/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.23.4}/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
|