python3-commons 0.24.4__tar.gz → 0.24.5__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.24.4 → python3_commons-0.24.5}/.pre-commit-config.yaml +2 -2
- {python3_commons-0.24.4 → python3_commons-0.24.5}/PKG-INFO +2 -2
- {python3_commons-0.24.4 → python3_commons-0.24.5}/pyproject.toml +1 -1
- {python3_commons-0.24.4 → python3_commons-0.24.5}/src/python3_commons.egg-info/PKG-INFO +2 -2
- {python3_commons-0.24.4 → python3_commons-0.24.5}/src/python3_commons.egg-info/requires.txt +1 -1
- python3_commons-0.24.5/src/python3_commons.egg-info/scm_version.json +8 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/uv.lock +64 -64
- python3_commons-0.24.4/src/python3_commons.egg-info/scm_version.json +0 -8
- {python3_commons-0.24.4 → python3_commons-0.24.5}/.coveragerc +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/.devcontainer/Dockerfile +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/.devcontainer/devcontainer.json +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/.devcontainer/docker-compose.yml +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/.env_template +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/.github/workflows/checks.yml +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/.github/workflows/python-publish.yaml +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/.github/workflows/release-on-tag-push.yml +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/.gitignore +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/.python-version +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/AUTHORS.rst +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/CHANGELOG.rst +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/LICENSE +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/README.md +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/README.rst +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/docs/Makefile +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/docs/_static/.gitignore +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/docs/authors.rst +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/docs/changelog.rst +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/docs/conf.py +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/docs/index.rst +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/docs/license.rst +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/setup.cfg +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/src/python3_commons/__init__.py +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/src/python3_commons/api_client.py +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/src/python3_commons/async_functools.py +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/src/python3_commons/audit.py +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/src/python3_commons/auth.py +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/src/python3_commons/cache.py +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/src/python3_commons/conf.py +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/src/python3_commons/db/__init__.py +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/src/python3_commons/db/helpers.py +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/src/python3_commons/db/models/__init__.py +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/src/python3_commons/db/models/auth.py +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/src/python3_commons/db/models/common.py +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/src/python3_commons/db/models/rbac.py +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/src/python3_commons/db/models/users.py +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/src/python3_commons/exceptions.py +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/src/python3_commons/fs.py +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/src/python3_commons/generators.py +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/src/python3_commons/helpers.py +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/src/python3_commons/log/__init__.py +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/src/python3_commons/log/filters.py +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/src/python3_commons/log/formatters.py +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/src/python3_commons/object_storage.py +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/src/python3_commons/permissions.py +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/src/python3_commons/serializers/__init__.py +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/src/python3_commons/serializers/common.py +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/src/python3_commons/serializers/json.py +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/src/python3_commons/serializers/msgpack.py +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/src/python3_commons/serializers/msgspec.py +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/src/python3_commons/soap_client.py +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/src/python3_commons.egg-info/SOURCES.txt +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/src/python3_commons.egg-info/dependency_links.txt +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/src/python3_commons.egg-info/scm_file_list.json +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/src/python3_commons.egg-info/top_level.txt +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/tests/__init__.py +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/tests/integration/__init__.py +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/tests/integration/conftest.py +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/tests/integration/test_auth.py +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/tests/integration/test_cache.py +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/tests/integration/test_osc.py +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/tests/unit/__init__.py +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/tests/unit/conftest.py +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/tests/unit/db/__init__.py +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/tests/unit/db/test_async_session_manager.py +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/tests/unit/log/__init__.py +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/tests/unit/log/test_formatters.py +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/tests/unit/test_async_functools.py +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/tests/unit/test_audit.py +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/tests/unit/test_auth.py +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/tests/unit/test_helpers.py +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/tests/unit/test_msgpack.py +0 -0
- {python3_commons-0.24.4 → python3_commons-0.24.5}/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.12.
|
|
3
|
+
rev: 0.12.5
|
|
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.16.
|
|
9
|
+
rev: v0.16.4
|
|
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.24.
|
|
3
|
+
Version: 0.24.5
|
|
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.52; extra == "database"
|
|
40
40
|
Provides-Extra: object-storage
|
|
41
41
|
Requires-Dist: aiobotocore==3.9.0; extra == "object-storage"
|
|
42
|
-
Requires-Dist: object-storage-client~=0.1.
|
|
42
|
+
Requires-Dist: object-storage-client~=0.1.7; 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.24.
|
|
3
|
+
Version: 0.24.5
|
|
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.52; extra == "database"
|
|
40
40
|
Provides-Extra: object-storage
|
|
41
41
|
Requires-Dist: aiobotocore==3.9.0; extra == "object-storage"
|
|
42
|
-
Requires-Dist: object-storage-client~=0.1.
|
|
42
|
+
Requires-Dist: object-storage-client~=0.1.7; 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"
|
|
@@ -215,23 +215,23 @@ wheels = [
|
|
|
215
215
|
|
|
216
216
|
[[package]]
|
|
217
217
|
name = "brotlicffi"
|
|
218
|
-
version = "1.2.0.
|
|
218
|
+
version = "1.2.0.2"
|
|
219
219
|
source = { registry = "https://pypi.org/simple" }
|
|
220
220
|
dependencies = [
|
|
221
221
|
{ name = "cffi" },
|
|
222
222
|
]
|
|
223
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
223
|
+
sdist = { url = "https://files.pythonhosted.org/packages/71/97/7845739a36828ffe751a1c6b240692f552fd7ecf65026c51326c0a4aa369/brotlicffi-1.2.0.2.tar.gz", hash = "sha256:5e0fbd13644cf1f6015e75fa5e0ad8fdce1048d9c9ff90b0ce826174b249ee35", size = 478755, upload-time = "2026-08-21T17:29:18.415Z" }
|
|
224
224
|
wheels = [
|
|
225
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
226
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
227
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
228
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
229
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
230
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
231
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
232
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
233
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
234
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
225
|
+
{ url = "https://files.pythonhosted.org/packages/77/a2/edda4f3fc7143434402eacad1e91433fe68ae648c22738eeddb6138638ba/brotlicffi-1.2.0.2-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:ad05ca993234cf947f0ad71b1c8bc0af3d74e0410b1e2c32bb99de0cef6a994b", size = 438789, upload-time = "2026-08-21T17:28:55.708Z" },
|
|
226
|
+
{ url = "https://files.pythonhosted.org/packages/0d/9c/506dc8edabb3cf9339c89f1ecc80a218aa166bb83b9f2e9cc1da67314072/brotlicffi-1.2.0.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0636cb5a85f31c36e08953d09a226cb788be900b976f81302895e3cf35d5e707", size = 1541246, upload-time = "2026-08-21T17:28:57.669Z" },
|
|
227
|
+
{ url = "https://files.pythonhosted.org/packages/9f/d6/74cee9f9fbea8c42030a81056c64e092030a95bd2756ea83da1d1e8f5f29/brotlicffi-1.2.0.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:97bae40d45ebc2a6ac7b1c9b30825496a257192194b672ef5869e2df93467f69", size = 1542129, upload-time = "2026-08-21T17:28:59.502Z" },
|
|
228
|
+
{ url = "https://files.pythonhosted.org/packages/24/cc/c32630b042ec2a13e8342e6ecb6b9d3531b1be4647b733d6fd365976041c/brotlicffi-1.2.0.2-cp314-cp314t-win32.whl", hash = "sha256:8f3f9bd61293dc48359763e693951393f39656086315067cf97e23e23e8911ab", size = 346840, upload-time = "2026-08-21T17:29:01.085Z" },
|
|
229
|
+
{ url = "https://files.pythonhosted.org/packages/ee/0b/83cac3075721fe4c253ea1cc5310cb687c2f7d987e0fd60eb3ed769c24c0/brotlicffi-1.2.0.2-cp314-cp314t-win_amd64.whl", hash = "sha256:908add8a9c0eea00f5de799dc6de9f6d205d9ee11afabc7c03d6812c481200e2", size = 386079, upload-time = "2026-08-21T17:29:02.667Z" },
|
|
230
|
+
{ url = "https://files.pythonhosted.org/packages/2e/71/c27f24b8334f65f2492601c7764338f156cb904d2ffe0061e6004a76d9cc/brotlicffi-1.2.0.2-cp39-abi3-macosx_11_0_arm64.whl", hash = "sha256:d5a8ffa154f16660ab818d78045b55fa6f9970f1ca4c38998766e99c672071cb", size = 438885, upload-time = "2026-08-21T17:29:04.113Z" },
|
|
231
|
+
{ url = "https://files.pythonhosted.org/packages/ef/22/d8fd1a4d09b7ab563b89380395e09151d2ef1344be31594df6a6987d4028/brotlicffi-1.2.0.2-cp39-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ec6b1af7b7a8ce788354f2c603651ada0fba166ec31ab879e2eec462a3e6dbf4", size = 1534365, upload-time = "2026-08-21T17:29:05.878Z" },
|
|
232
|
+
{ url = "https://files.pythonhosted.org/packages/06/78/076419ed6c2c6aa3eaac6fd6b076502b4be89d50625fcdc513cd4aeca718/brotlicffi-1.2.0.2-cp39-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:22916101de0e7ff535f2edf54b52a85591853b8ae9a98737643defdd3c063a3a", size = 1536851, upload-time = "2026-08-21T17:29:07.599Z" },
|
|
233
|
+
{ url = "https://files.pythonhosted.org/packages/35/dd/31ae9945cbd605339fb51c9a609f7dbb182cd361adeabc1d470142357206/brotlicffi-1.2.0.2-cp39-abi3-win32.whl", hash = "sha256:df1d34c4ad9adbf7f63a6b42f7d0e4dfd259c88141b85145b57abecc1abc3b24", size = 342379, upload-time = "2026-08-21T17:29:09.05Z" },
|
|
234
|
+
{ url = "https://files.pythonhosted.org/packages/95/ae/afd54e744df93b51cc29f6a19beccf9998b25743d7177697390de10479d1/brotlicffi-1.2.0.2-cp39-abi3-win_amd64.whl", hash = "sha256:489ca4da3ee65926d72bf01584b61088a9da6bdd1bb01b2040901e1beaffa8f0", size = 379761, upload-time = "2026-08-21T17:29:10.687Z" },
|
|
235
235
|
]
|
|
236
236
|
|
|
237
237
|
[[package]]
|
|
@@ -422,11 +422,11 @@ wheels = [
|
|
|
422
422
|
|
|
423
423
|
[[package]]
|
|
424
424
|
name = "filelock"
|
|
425
|
-
version = "3.32.
|
|
425
|
+
version = "3.32.4"
|
|
426
426
|
source = { registry = "https://pypi.org/simple" }
|
|
427
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
427
|
+
sdist = { url = "https://files.pythonhosted.org/packages/6d/30/03b03951873a1a0ffc7e8ca0e10c15597b59e8d0e39260704cd2ea087bc4/filelock-3.32.4.tar.gz", hash = "sha256:2bde2e4cf732e0153406d8a7bc80620ecf5e621fe0d25e41143c4e3b4733ff30", size = 222126, upload-time = "2026-08-23T17:37:55.363Z" }
|
|
428
428
|
wheels = [
|
|
429
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
429
|
+
{ url = "https://files.pythonhosted.org/packages/01/a4/9b63d595d748e3aff8812b65eacc1a2c4bd90b7c2012e08e72373b4835eb/filelock-3.32.4-py3-none-any.whl", hash = "sha256:22e58ca3b1ae3b98993b762d7338367ae64fe50252bf78d59da3bfebcdf1cedd", size = 99864, upload-time = "2026-08-23T17:37:53.913Z" },
|
|
430
430
|
]
|
|
431
431
|
|
|
432
432
|
[[package]]
|
|
@@ -767,14 +767,14 @@ wheels = [
|
|
|
767
767
|
|
|
768
768
|
[[package]]
|
|
769
769
|
name = "object-storage-client"
|
|
770
|
-
version = "0.1.
|
|
770
|
+
version = "0.1.7"
|
|
771
771
|
source = { registry = "https://pypi.org/simple" }
|
|
772
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
772
|
+
sdist = { url = "https://files.pythonhosted.org/packages/4a/4d/8623031be4fd05bf5bb1b1460afc52e3ccbbc5f507af6659459c59e51c70/object_storage_client-0.1.7.tar.gz", hash = "sha256:b175b502955f7008cf8b11766e32ab978fb3883c8562561f9c686b17f9959175", size = 72589, upload-time = "2026-08-24T06:53:39.58Z" }
|
|
773
773
|
wheels = [
|
|
774
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
775
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
776
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
777
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
774
|
+
{ url = "https://files.pythonhosted.org/packages/38/f6/66190f6e1ec8311254d941b0f0ea7969ae0f50af0a139efa88e22c0acb19/object_storage_client-0.1.7-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:b82c55867937f82c9cb5ea606c0b704019e4044f58b65c80d494545e12099e33", size = 2910640, upload-time = "2026-08-24T06:53:33.409Z" },
|
|
775
|
+
{ url = "https://files.pythonhosted.org/packages/e4/a3/56c9c38665149d6a3452b1fa5b4b9b3e6379113326ddc06fafaf3b9a769b/object_storage_client-0.1.7-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:120180ca0b79ae35ce811ac942d83b08130e4752573abdad755f4c3d878b0793", size = 3966401, upload-time = "2026-08-24T06:53:35.435Z" },
|
|
776
|
+
{ url = "https://files.pythonhosted.org/packages/b7/16/56eb067718a97b3951c415079db5db7aa1230091942bab3373a5220ccebe/object_storage_client-0.1.7-cp314-cp314-manylinux_2_28_aarch64.whl", hash = "sha256:bb57ae306417932b2b46a74935afec99cc21cd4f0632be74b9a0a7d0230f4dff", size = 3741807, upload-time = "2026-08-24T06:53:36.787Z" },
|
|
777
|
+
{ url = "https://files.pythonhosted.org/packages/0a/d7/4f8fead6e5d604f8ef11991f94fb557a484109ef750c62d82ddfece446b9/object_storage_client-0.1.7-cp314-cp314-win_amd64.whl", hash = "sha256:4d7b3d3e19ea33382dd1c88d2855ef7316fc3bea046283b95cb1efcc59ab483e", size = 3485847, upload-time = "2026-08-24T06:53:38.148Z" },
|
|
778
778
|
]
|
|
779
779
|
|
|
780
780
|
[[package]]
|
|
@@ -1210,7 +1210,7 @@ requires-dist = [
|
|
|
1210
1210
|
{ name = "lxml", marker = "extra == 'soap-client'", specifier = "~=6.1.2" },
|
|
1211
1211
|
{ name = "msgpack", specifier = "~=1.2.1" },
|
|
1212
1212
|
{ name = "msgspec", specifier = "~=0.21.1" },
|
|
1213
|
-
{ name = "object-storage-client", marker = "extra == 'object-storage'", specifier = "~=0.1.
|
|
1213
|
+
{ name = "object-storage-client", marker = "extra == 'object-storage'", specifier = "~=0.1.7" },
|
|
1214
1214
|
{ name = "pydantic-settings", specifier = "~=2.15.0" },
|
|
1215
1215
|
{ name = "python3-commons", extras = ["api-client"], marker = "extra == 'authn'" },
|
|
1216
1216
|
{ name = "python3-commons", extras = ["api-client"], marker = "extra == 'authz'" },
|
|
@@ -1312,27 +1312,27 @@ wheels = [
|
|
|
1312
1312
|
|
|
1313
1313
|
[[package]]
|
|
1314
1314
|
name = "ruff"
|
|
1315
|
-
version = "0.16.
|
|
1316
|
-
source = { registry = "https://pypi.org/simple" }
|
|
1317
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
1318
|
-
wheels = [
|
|
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/
|
|
1324
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1325
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1326
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1327
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1328
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1329
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1330
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1331
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1332
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1333
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1334
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1335
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1315
|
+
version = "0.16.4"
|
|
1316
|
+
source = { registry = "https://pypi.org/simple" }
|
|
1317
|
+
sdist = { url = "https://files.pythonhosted.org/packages/00/8f/d8074b1f25e003164087a8bfe79a0f1a3945135764dbb6aaab04103dcaf9/ruff-0.16.4.tar.gz", hash = "sha256:13171aa9d9af2240ee3504e639de73122c67e74036de5ba2e1d01422cd17e3dc", size = 4899731, upload-time = "2026-08-20T17:43:59.196Z" }
|
|
1318
|
+
wheels = [
|
|
1319
|
+
{ url = "https://files.pythonhosted.org/packages/ff/80/779895ef584e089d22f2c6df0d0e99a65ec2df0805f1fffd439415b8c1f0/ruff-0.16.4-py3-none-linux_armv6l.whl", hash = "sha256:df4075f71ddac40b9934af60c3ec8a53047dd5a5fdc43224e6e4e8e9a27cb6f7", size = 10006909, upload-time = "2026-08-20T17:43:16.888Z" },
|
|
1320
|
+
{ url = "https://files.pythonhosted.org/packages/a9/e6/f553199b5e8927a05cb5c422d921fd0656b29ab976e91c44802107c6b0da/ruff-0.16.4-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:0c95538517af68004306b0fb3214ff2f2af67a65092aee77cd9eb86db6656604", size = 10240201, upload-time = "2026-08-20T17:43:19.337Z" },
|
|
1321
|
+
{ url = "https://files.pythonhosted.org/packages/1c/70/4a6dc4bb34da4dee35e30f09bbd1bfbdd26f33b62fb9b8df31f08a199cd2/ruff-0.16.4-py3-none-macosx_11_0_arm64.whl", hash = "sha256:963f83df8e69e575b64d67dd447ebbc917db41a14bf38d4593a4183e7aaa8255", size = 9835122, upload-time = "2026-08-20T17:43:21.708Z" },
|
|
1322
|
+
{ url = "https://files.pythonhosted.org/packages/24/12/c6e22d686372c15bcb7af99831f1a1be96df696491babf4f24e4f942c527/ruff-0.16.4-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:32a5057c7ff3f6e6480a48fccfb3a412a690f48a3d03ac5cf08177d6c2da3ade", size = 9977162, upload-time = "2026-08-20T17:43:24.236Z" },
|
|
1323
|
+
{ url = "https://files.pythonhosted.org/packages/46/49/72b10ec912f5ab5854992eaf7aa7cd36729b6937d9dc4e0fb41b3bf428ec/ruff-0.16.4-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:b3dce8d9b0c57c265b91885a66a567d8ea1372e8eb4e250fa8e5e3f579e99cff", size = 9829789, upload-time = "2026-08-20T17:43:26.966Z" },
|
|
1324
|
+
{ url = "https://files.pythonhosted.org/packages/fa/80/0f30e32e7f6ee26edc39075502db9d368d788a44a79b55f763eb4ab03796/ruff-0.16.4-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7dc651db49283c69f8e72c834eec4fe5573e4c646856aebece0ce385dceb2a80", size = 10527949, upload-time = "2026-08-20T17:43:29.384Z" },
|
|
1325
|
+
{ url = "https://files.pythonhosted.org/packages/52/3d/86e8ad3542169e56cac3859a343afdb9df2ad54d35a59ce1e67baee83421/ruff-0.16.4-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3817b87dbcabc92f13b05019257c5b89b5b4d51b5fb20f56fb5235ceb723cd07", size = 11333695, upload-time = "2026-08-20T17:43:31.872Z" },
|
|
1326
|
+
{ url = "https://files.pythonhosted.org/packages/d0/16/481c29b380c20a0054a8261066665e1b3488e23636c49d0a43e75975b9bb/ruff-0.16.4-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e9fce1499134b2c8c68e5166f95705a5812062bb93aacc5f9873bb1a27084bc7", size = 10727741, upload-time = "2026-08-20T17:43:34.596Z" },
|
|
1327
|
+
{ url = "https://files.pythonhosted.org/packages/5e/b6/56bc0b8cf45b54b28b3a5e6381c8945d51b5b18adf659454c32295209a31/ruff-0.16.4-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f2d812e482f5a7e02eee26cd73d2a37ebbdf47d795ea63ba1b89110ae93e9fb3", size = 10286522, upload-time = "2026-08-20T17:43:37.288Z" },
|
|
1328
|
+
{ url = "https://files.pythonhosted.org/packages/e8/8b/b345b4fb110f2fbe2bd31eabd271e5e8b3b7e4ee6c0e02f2dc6be78db000/ruff-0.16.4-py3-none-manylinux_2_31_riscv64.whl", hash = "sha256:6baaf984aa7976edf93d3b627fe2d1d22ee94bbca05fa6f90fc76d73924e3454", size = 10584182, upload-time = "2026-08-20T17:43:39.984Z" },
|
|
1329
|
+
{ url = "https://files.pythonhosted.org/packages/29/e5/827b34041c35f58774a9681a4213994c164fc987800f4dddabcf451da0bf/ruff-0.16.4-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:bdfcf0b28662eb890372d50f92c283bb94e67e7635ed93c7fd533970acff7b2b", size = 10134195, upload-time = "2026-08-20T17:43:42.351Z" },
|
|
1330
|
+
{ url = "https://files.pythonhosted.org/packages/0f/10/d0bffcdd6729b87afc82ba0ef377173356a7dc8e972f5179968cf2fdf98c/ruff-0.16.4-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:b66b02cb9b04f537643cadf5768e5f98dc461890d530cb67113d71c8c76e605d", size = 9825821, upload-time = "2026-08-20T17:43:44.532Z" },
|
|
1331
|
+
{ url = "https://files.pythonhosted.org/packages/f5/32/0db2a863b796ca62d83e92a07a3ccf00921b14db02059347576a2fda3d4b/ruff-0.16.4-py3-none-musllinux_1_2_i686.whl", hash = "sha256:8528bf9a4b291a60bf02ea453511e8ce6215bd2b982ee80405b66b008b6c30a0", size = 10267658, upload-time = "2026-08-20T17:43:46.989Z" },
|
|
1332
|
+
{ url = "https://files.pythonhosted.org/packages/b2/a0/fbdeb59e48c6261f523e56c8f12e9c08fbe693786595cc7e3959207a9232/ruff-0.16.4-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:fbd85d2875fdd67e833213a651f613bbf25303abf6aa822a5121f4531195678d", size = 10697071, upload-time = "2026-08-20T17:43:49.891Z" },
|
|
1333
|
+
{ url = "https://files.pythonhosted.org/packages/aa/28/0c6dd865859c6d17bc8ccc34cb72b0e02d6c7eb25e8a1e22b5bea681e2c0/ruff-0.16.4-py3-none-win32.whl", hash = "sha256:312769988007aaeb8e189b443ccdd03c0e6374489e053467be6d96518ebff76e", size = 10021687, upload-time = "2026-08-20T17:43:52.281Z" },
|
|
1334
|
+
{ url = "https://files.pythonhosted.org/packages/a3/03/e724450f621698117f9aa6dd241c94d0274ae96781378dc86745ae29f0e7/ruff-0.16.4-py3-none-win_amd64.whl", hash = "sha256:05d9d27a18c4bcbefada602480ec9e01e0bc949d432e0ced5df77edac195919c", size = 10567657, upload-time = "2026-08-20T17:43:54.78Z" },
|
|
1335
|
+
{ url = "https://files.pythonhosted.org/packages/0e/fe/da8b9e1347696bb22120b77280ec5ce25d500ca5cb39d5ad6e5c18de19c1/ruff-0.16.4-py3-none-win_arm64.whl", hash = "sha256:a3a61621c9b6f6a89573e938a080e648f1695baa3f58570a3a707bc51ff65a21", size = 10451579, upload-time = "2026-08-20T17:43:57.135Z" },
|
|
1336
1336
|
]
|
|
1337
1337
|
|
|
1338
1338
|
[[package]]
|
|
@@ -1395,27 +1395,27 @@ asyncio = [
|
|
|
1395
1395
|
|
|
1396
1396
|
[[package]]
|
|
1397
1397
|
name = "ty"
|
|
1398
|
-
version = "0.0.
|
|
1399
|
-
source = { registry = "https://pypi.org/simple" }
|
|
1400
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
1401
|
-
wheels = [
|
|
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/
|
|
1413
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1414
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1415
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1416
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1417
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1418
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1398
|
+
version = "0.0.74"
|
|
1399
|
+
source = { registry = "https://pypi.org/simple" }
|
|
1400
|
+
sdist = { url = "https://files.pythonhosted.org/packages/88/0f/c767853e88567a2ec7e996dd95e3105b1bc62c95d103689311ef0f4a603c/ty-0.0.74.tar.gz", hash = "sha256:da14344fc8625fc9ff359bafb856ad575636ea86d9bb6a629b146bff27b380e6", size = 6786318, upload-time = "2026-08-22T15:05:54.054Z" }
|
|
1401
|
+
wheels = [
|
|
1402
|
+
{ url = "https://files.pythonhosted.org/packages/2c/95/6ded58bc97885c6d88fa1f9cd815031489200738f961cbf0466663213f80/ty-0.0.74-py3-none-linux_armv6l.whl", hash = "sha256:8969ef4e508debf00cf58f9ea85a539f799b1732c59cdfcecd037630b9755b30", size = 12790043, upload-time = "2026-08-22T15:05:05.015Z" },
|
|
1403
|
+
{ url = "https://files.pythonhosted.org/packages/d9/8a/5e323603b6ab8731144421877ee8a0f8ac5a5511e67857127caa09f6730e/ty-0.0.74-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:51fb6cf5b98e1e1140825b2430943f78d744876a735231656eafbb4c3f7eca3c", size = 12371748, upload-time = "2026-08-22T15:05:08.609Z" },
|
|
1404
|
+
{ url = "https://files.pythonhosted.org/packages/d0/44/ee72e08cb705281e8d8c42917dd577aa598a8a098008495fda5176ee3f6e/ty-0.0.74-py3-none-macosx_11_0_arm64.whl", hash = "sha256:8ebe60b1f0a948c793d6c77fc9e9ddda599e4f023c04ab16e8e03bcb428c3fa0", size = 12282403, upload-time = "2026-08-22T15:05:11.448Z" },
|
|
1405
|
+
{ url = "https://files.pythonhosted.org/packages/da/b3/fd935b694ff68bc278af50f7ad04770b36ce6306399baef7e1847b553a9d/ty-0.0.74-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aa97f407a695c890a53615966a663c7d2167e2cabe88db7ca1a24d62635cdfc8", size = 12345164, upload-time = "2026-08-22T15:05:14.19Z" },
|
|
1406
|
+
{ url = "https://files.pythonhosted.org/packages/54/5c/5b5825268e029ebb164c909780103dbbae367f069801410068bf1cef29b3/ty-0.0.74-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:673ddb733d4a0db31385ba1ed9ff1f6bd9dc5565413ce57b1ca5ac4c7803da5d", size = 12556646, upload-time = "2026-08-22T15:05:16.994Z" },
|
|
1407
|
+
{ url = "https://files.pythonhosted.org/packages/56/e7/515914e571d62ce0101744fed3f881936eeb1b30dc37beb72b4f7ca1e289/ty-0.0.74-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1028e7c6b4f6145e9704552f43a5fffdcd51b42263ffdcd9c9677762bc395a4a", size = 13311653, upload-time = "2026-08-22T15:05:20.254Z" },
|
|
1408
|
+
{ url = "https://files.pythonhosted.org/packages/b0/07/d1452babb6f9266c2122cabc095180b70ed306fb770b2996753814d2237d/ty-0.0.74-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:79841a8890493021fb308772474983316eb91f7b56cb227a6a05a06b262a36f0", size = 13768284, upload-time = "2026-08-22T15:05:23.197Z" },
|
|
1409
|
+
{ url = "https://files.pythonhosted.org/packages/b1/60/8d4a2fc7842a47210a1cb0a16a187d9de39ad5d509a00fb74c1c073afcde/ty-0.0.74-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:94859d321f3c6a6c8f7bfc3f40e8319cda7e6e012e613440f3dfd145d5010e2e", size = 13422306, upload-time = "2026-08-22T15:05:26.248Z" },
|
|
1410
|
+
{ url = "https://files.pythonhosted.org/packages/de/76/ebbc269a8c4efcc4d44624993bd188145f20d60ebda9680b15aaec42cc50/ty-0.0.74-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:970a8b2c09ff3be04c8a1c6767332d861be4fce85efe7bb205e4ade7c8655274", size = 12970637, upload-time = "2026-08-22T15:05:29.15Z" },
|
|
1411
|
+
{ url = "https://files.pythonhosted.org/packages/9e/dd/b99f7236acbf856780ca1779a48143d2d9f2c24d7f531a0ce15a022b8a87/ty-0.0.74-py3-none-manylinux_2_31_riscv64.whl", hash = "sha256:795f763b3ded85574c2c2846a6fb8acf2aa76e9e83d761143e92b1f0c7ffa2cd", size = 13344891, upload-time = "2026-08-22T15:05:32.033Z" },
|
|
1412
|
+
{ url = "https://files.pythonhosted.org/packages/0b/d7/9ff7449a4c7e6428f2c6f298e74cf24b70668f29d45c249507a723ff3782/ty-0.0.74-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:dc086db5367d912c31c0cc872deb7387290e779a4b9b54fcb944673a7cd52c7b", size = 12395272, upload-time = "2026-08-22T15:05:34.702Z" },
|
|
1413
|
+
{ url = "https://files.pythonhosted.org/packages/b1/dd/b23a5b6b35d37df89dc8dc5daa09efd9245a668b50c4c81c25de21567dc1/ty-0.0.74-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:0314d7b391cf684e47c2fa093d2ce4c597cfc9b01d9a315fe204aed6359b271b", size = 12573079, upload-time = "2026-08-22T15:05:37.683Z" },
|
|
1414
|
+
{ url = "https://files.pythonhosted.org/packages/23/c5/ccba16239d6129533c8b3603458d0f4dd2ba69478e47059073968e74261d/ty-0.0.74-py3-none-musllinux_1_2_i686.whl", hash = "sha256:c4a45dd2e991e8bdae82ba78c8cd051b253f60bc71a6536598fa3ef580b4fc9b", size = 12832506, upload-time = "2026-08-22T15:05:40.505Z" },
|
|
1415
|
+
{ url = "https://files.pythonhosted.org/packages/6d/1c/2390912634dff4f341f97b397f2aee341ff062be0a66cda37d59375454f2/ty-0.0.74-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:210e2eac6b018fb934e2b8dac3956a0ba076a3fb1fa6f135058c825e5b759b81", size = 13154752, upload-time = "2026-08-22T15:05:43.355Z" },
|
|
1416
|
+
{ url = "https://files.pythonhosted.org/packages/c4/33/a8c12188227e6f74f91853a7374e01ed81d6ad21c16c8b70e92dbebfe46a/ty-0.0.74-py3-none-win32.whl", hash = "sha256:db0bb6a8f098ef9bd1be861f73b4f7c0320d40d4c05c7ae0a8677d4e7aa4f6e5", size = 12130002, upload-time = "2026-08-22T15:05:46.058Z" },
|
|
1417
|
+
{ url = "https://files.pythonhosted.org/packages/21/5c/064f28ccb9c234cfce5a2f7aa69a256663d5ae5bb0290b3a9706cc4d1e4c/ty-0.0.74-py3-none-win_amd64.whl", hash = "sha256:bebff181515255b3c78bd2e7693ae66fab6064ad4feea2065c68bc01022aa678", size = 12771435, upload-time = "2026-08-22T15:05:48.811Z" },
|
|
1418
|
+
{ url = "https://files.pythonhosted.org/packages/fe/06/d6becdaca0315346c26b6df97cb0eafa81de4f870945d6989e88704374ed/ty-0.0.74-py3-none-win_arm64.whl", hash = "sha256:1a3469eaaf8c85b1c0a15bede25d36daea4b09fce1d913e965b24e24b3f1d6c6", size = 12558299, upload-time = "2026-08-22T15:05:51.543Z" },
|
|
1419
1419
|
]
|
|
1420
1420
|
|
|
1421
1421
|
[[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.24.4 → python3_commons-0.24.5}/src/python3_commons/serializers/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python3_commons-0.24.4 → python3_commons-0.24.5}/src/python3_commons/serializers/msgpack.py
RENAMED
|
File without changes
|
{python3_commons-0.24.4 → python3_commons-0.24.5}/src/python3_commons/serializers/msgspec.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python3_commons-0.24.4 → python3_commons-0.24.5}/src/python3_commons.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
{python3_commons-0.24.4 → python3_commons-0.24.5}/src/python3_commons.egg-info/scm_file_list.json
RENAMED
|
File without changes
|
{python3_commons-0.24.4 → python3_commons-0.24.5}/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.24.4 → python3_commons-0.24.5}/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
|