python3-commons 0.15.12__tar.gz → 0.15.13__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.15.12 → python3_commons-0.15.13}/.pre-commit-config.yaml +2 -2
- {python3_commons-0.15.12 → python3_commons-0.15.13}/PKG-INFO +2 -2
- {python3_commons-0.15.12 → python3_commons-0.15.13}/pyproject.toml +1 -1
- {python3_commons-0.15.12 → python3_commons-0.15.13}/src/python3_commons.egg-info/PKG-INFO +2 -2
- {python3_commons-0.15.12 → python3_commons-0.15.13}/src/python3_commons.egg-info/requires.txt +1 -1
- {python3_commons-0.15.12 → python3_commons-0.15.13}/uv.lock +60 -60
- {python3_commons-0.15.12 → python3_commons-0.15.13}/.coveragerc +0 -0
- {python3_commons-0.15.12 → python3_commons-0.15.13}/.devcontainer/Dockerfile +0 -0
- {python3_commons-0.15.12 → python3_commons-0.15.13}/.devcontainer/devcontainer.json +0 -0
- {python3_commons-0.15.12 → python3_commons-0.15.13}/.devcontainer/docker-compose.yml +0 -0
- {python3_commons-0.15.12 → python3_commons-0.15.13}/.env_template +0 -0
- {python3_commons-0.15.12 → python3_commons-0.15.13}/.github/workflows/checks.yml +0 -0
- {python3_commons-0.15.12 → python3_commons-0.15.13}/.github/workflows/python-publish.yaml +0 -0
- {python3_commons-0.15.12 → python3_commons-0.15.13}/.github/workflows/release-on-tag-push.yml +0 -0
- {python3_commons-0.15.12 → python3_commons-0.15.13}/.gitignore +0 -0
- {python3_commons-0.15.12 → python3_commons-0.15.13}/.python-version +0 -0
- {python3_commons-0.15.12 → python3_commons-0.15.13}/AUTHORS.rst +0 -0
- {python3_commons-0.15.12 → python3_commons-0.15.13}/CHANGELOG.rst +0 -0
- {python3_commons-0.15.12 → python3_commons-0.15.13}/LICENSE +0 -0
- {python3_commons-0.15.12 → python3_commons-0.15.13}/README.md +0 -0
- {python3_commons-0.15.12 → python3_commons-0.15.13}/README.rst +0 -0
- {python3_commons-0.15.12 → python3_commons-0.15.13}/docs/Makefile +0 -0
- {python3_commons-0.15.12 → python3_commons-0.15.13}/docs/_static/.gitignore +0 -0
- {python3_commons-0.15.12 → python3_commons-0.15.13}/docs/authors.rst +0 -0
- {python3_commons-0.15.12 → python3_commons-0.15.13}/docs/changelog.rst +0 -0
- {python3_commons-0.15.12 → python3_commons-0.15.13}/docs/conf.py +0 -0
- {python3_commons-0.15.12 → python3_commons-0.15.13}/docs/index.rst +0 -0
- {python3_commons-0.15.12 → python3_commons-0.15.13}/docs/license.rst +0 -0
- {python3_commons-0.15.12 → python3_commons-0.15.13}/setup.cfg +0 -0
- {python3_commons-0.15.12 → python3_commons-0.15.13}/src/python3_commons/__init__.py +0 -0
- {python3_commons-0.15.12 → python3_commons-0.15.13}/src/python3_commons/api_client.py +0 -0
- {python3_commons-0.15.12 → python3_commons-0.15.13}/src/python3_commons/async_functools.py +0 -0
- {python3_commons-0.15.12 → python3_commons-0.15.13}/src/python3_commons/audit.py +0 -0
- {python3_commons-0.15.12 → python3_commons-0.15.13}/src/python3_commons/auth.py +0 -0
- {python3_commons-0.15.12 → python3_commons-0.15.13}/src/python3_commons/cache.py +0 -0
- {python3_commons-0.15.12 → python3_commons-0.15.13}/src/python3_commons/conf.py +0 -0
- {python3_commons-0.15.12 → python3_commons-0.15.13}/src/python3_commons/db/__init__.py +0 -0
- {python3_commons-0.15.12 → python3_commons-0.15.13}/src/python3_commons/db/helpers.py +0 -0
- {python3_commons-0.15.12 → python3_commons-0.15.13}/src/python3_commons/db/models/__init__.py +0 -0
- {python3_commons-0.15.12 → python3_commons-0.15.13}/src/python3_commons/db/models/auth.py +0 -0
- {python3_commons-0.15.12 → python3_commons-0.15.13}/src/python3_commons/db/models/common.py +0 -0
- {python3_commons-0.15.12 → python3_commons-0.15.13}/src/python3_commons/db/models/rbac.py +0 -0
- {python3_commons-0.15.12 → python3_commons-0.15.13}/src/python3_commons/db/models/users.py +0 -0
- {python3_commons-0.15.12 → python3_commons-0.15.13}/src/python3_commons/exceptions.py +0 -0
- {python3_commons-0.15.12 → python3_commons-0.15.13}/src/python3_commons/fs.py +0 -0
- {python3_commons-0.15.12 → python3_commons-0.15.13}/src/python3_commons/generators.py +0 -0
- {python3_commons-0.15.12 → python3_commons-0.15.13}/src/python3_commons/helpers.py +0 -0
- {python3_commons-0.15.12 → python3_commons-0.15.13}/src/python3_commons/log/__init__.py +0 -0
- {python3_commons-0.15.12 → python3_commons-0.15.13}/src/python3_commons/log/filters.py +0 -0
- {python3_commons-0.15.12 → python3_commons-0.15.13}/src/python3_commons/log/formatters.py +0 -0
- {python3_commons-0.15.12 → python3_commons-0.15.13}/src/python3_commons/object_storage.py +0 -0
- {python3_commons-0.15.12 → python3_commons-0.15.13}/src/python3_commons/permissions.py +0 -0
- {python3_commons-0.15.12 → python3_commons-0.15.13}/src/python3_commons/serializers/__init__.py +0 -0
- {python3_commons-0.15.12 → python3_commons-0.15.13}/src/python3_commons/serializers/common.py +0 -0
- {python3_commons-0.15.12 → python3_commons-0.15.13}/src/python3_commons/serializers/json.py +0 -0
- {python3_commons-0.15.12 → python3_commons-0.15.13}/src/python3_commons/serializers/msgpack.py +0 -0
- {python3_commons-0.15.12 → python3_commons-0.15.13}/src/python3_commons/serializers/msgspec.py +0 -0
- {python3_commons-0.15.12 → python3_commons-0.15.13}/src/python3_commons.egg-info/SOURCES.txt +0 -0
- {python3_commons-0.15.12 → python3_commons-0.15.13}/src/python3_commons.egg-info/dependency_links.txt +0 -0
- {python3_commons-0.15.12 → python3_commons-0.15.13}/src/python3_commons.egg-info/top_level.txt +0 -0
- {python3_commons-0.15.12 → python3_commons-0.15.13}/tests/__init__.py +0 -0
- {python3_commons-0.15.12 → python3_commons-0.15.13}/tests/integration/__init__.py +0 -0
- {python3_commons-0.15.12 → python3_commons-0.15.13}/tests/integration/test_cache.py +0 -0
- {python3_commons-0.15.12 → python3_commons-0.15.13}/tests/integration/test_osc.py +0 -0
- {python3_commons-0.15.12 → python3_commons-0.15.13}/tests/unit/__init__.py +0 -0
- {python3_commons-0.15.12 → python3_commons-0.15.13}/tests/unit/conftest.py +0 -0
- {python3_commons-0.15.12 → python3_commons-0.15.13}/tests/unit/log/__init__.py +0 -0
- {python3_commons-0.15.12 → python3_commons-0.15.13}/tests/unit/log/test_formatters.py +0 -0
- {python3_commons-0.15.12 → python3_commons-0.15.13}/tests/unit/test_async_functools.py +0 -0
- {python3_commons-0.15.12 → python3_commons-0.15.13}/tests/unit/test_audit.py +0 -0
- {python3_commons-0.15.12 → python3_commons-0.15.13}/tests/unit/test_helpers.py +0 -0
- {python3_commons-0.15.12 → python3_commons-0.15.13}/tests/unit/test_msgpack.py +0 -0
- {python3_commons-0.15.12 → python3_commons-0.15.13}/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.10.
|
|
3
|
+
rev: 0.10.9
|
|
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.15.
|
|
9
|
+
rev: v0.15.6
|
|
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.15.
|
|
3
|
+
Version: 0.15.13
|
|
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
|
|
@@ -18,7 +18,7 @@ Requires-Dist: asyncpg~=0.31.0
|
|
|
18
18
|
Requires-Dist: lxml~=6.0.2
|
|
19
19
|
Requires-Dist: msgpack~=1.1.2
|
|
20
20
|
Requires-Dist: msgspec==0.20.0
|
|
21
|
-
Requires-Dist: object-storage-client==0.0.
|
|
21
|
+
Requires-Dist: object-storage-client==0.0.19
|
|
22
22
|
Requires-Dist: pydantic-settings~=2.13.1
|
|
23
23
|
Requires-Dist: SQLAlchemy[asyncio]~=2.0.48
|
|
24
24
|
Requires-Dist: valkey[libvalkey]~=6.1.1
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: python3-commons
|
|
3
|
-
Version: 0.15.
|
|
3
|
+
Version: 0.15.13
|
|
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
|
|
@@ -18,7 +18,7 @@ Requires-Dist: asyncpg~=0.31.0
|
|
|
18
18
|
Requires-Dist: lxml~=6.0.2
|
|
19
19
|
Requires-Dist: msgpack~=1.1.2
|
|
20
20
|
Requires-Dist: msgspec==0.20.0
|
|
21
|
-
Requires-Dist: object-storage-client==0.0.
|
|
21
|
+
Requires-Dist: object-storage-client==0.0.19
|
|
22
22
|
Requires-Dist: pydantic-settings~=2.13.1
|
|
23
23
|
Requires-Dist: SQLAlchemy[asyncio]~=2.0.48
|
|
24
24
|
Requires-Dist: valkey[libvalkey]~=6.1.1
|
|
@@ -376,11 +376,11 @@ wheels = [
|
|
|
376
376
|
|
|
377
377
|
[[package]]
|
|
378
378
|
name = "filelock"
|
|
379
|
-
version = "3.25.
|
|
379
|
+
version = "3.25.2"
|
|
380
380
|
source = { registry = "https://pypi.org/simple" }
|
|
381
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
381
|
+
sdist = { url = "https://files.pythonhosted.org/packages/94/b8/00651a0f559862f3bb7d6f7477b192afe3f583cc5e26403b44e59a55ab34/filelock-3.25.2.tar.gz", hash = "sha256:b64ece2b38f4ca29dd3e810287aa8c48182bbecd1ae6e9ae126c9b35f1382694", size = 40480, upload-time = "2026-03-11T20:45:38.487Z" }
|
|
382
382
|
wheels = [
|
|
383
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
383
|
+
{ url = "https://files.pythonhosted.org/packages/a4/a5/842ae8f0c08b61d6484b52f99a03510a3a72d23141942d216ebe81fefbce/filelock-3.25.2-py3-none-any.whl", hash = "sha256:ca8afb0da15f229774c9ad1b455ed96e85a81373065fb10446672f64444ddf70", size = 26759, upload-time = "2026-03-11T20:45:37.437Z" },
|
|
384
384
|
]
|
|
385
385
|
|
|
386
386
|
[[package]]
|
|
@@ -650,13 +650,13 @@ wheels = [
|
|
|
650
650
|
|
|
651
651
|
[[package]]
|
|
652
652
|
name = "object-storage-client"
|
|
653
|
-
version = "0.0.
|
|
653
|
+
version = "0.0.19"
|
|
654
654
|
source = { registry = "https://pypi.org/simple" }
|
|
655
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
655
|
+
sdist = { url = "https://files.pythonhosted.org/packages/f2/65/800546c01213e5a7781790e4191738c88b43b95fb83b613d0e20b2a541d9/object_storage_client-0.0.19.tar.gz", hash = "sha256:222ca4e6a01bd0a8890b5ba92e8dce45bb482906528059c87f262be8461af053", size = 39065, upload-time = "2026-03-09T23:07:16.004Z" }
|
|
656
656
|
wheels = [
|
|
657
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
658
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
659
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
657
|
+
{ url = "https://files.pythonhosted.org/packages/d9/40/545c1ff4b6833201730f663c4ad3caa3ae677992999f62a2290eb697693f/object_storage_client-0.0.19-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:19e53194c0bf4aa377c54c5787c49db4f740e21b318ef7fc322692fcaf9448ee", size = 1920528, upload-time = "2026-03-09T23:07:14.425Z" },
|
|
658
|
+
{ url = "https://files.pythonhosted.org/packages/1c/e3/7079a9d1ff66eeada95b7831e48608c0f4fea846d6c3ba7bb132e0b092a3/object_storage_client-0.0.19-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:02fa2499d8d53f59b2d12e0d97836305d1cea236aa1c20c46530b75c087165c8", size = 2101981, upload-time = "2026-03-09T23:07:07.387Z" },
|
|
659
|
+
{ url = "https://files.pythonhosted.org/packages/32/45/d13ebf65d35711425a0b6d0b7e0eefef989cc74dc280fd3594bd2589ef92/object_storage_client-0.0.19-cp314-cp314-win_amd64.whl", hash = "sha256:26878e1aee99b6b5e5b8218982ca9d3dad6b4297a17aedad1804882b0299b0d1", size = 2090163, upload-time = "2026-03-09T23:07:17.078Z" },
|
|
660
660
|
]
|
|
661
661
|
|
|
662
662
|
[[package]]
|
|
@@ -961,15 +961,15 @@ wheels = [
|
|
|
961
961
|
|
|
962
962
|
[[package]]
|
|
963
963
|
name = "python-discovery"
|
|
964
|
-
version = "1.1.
|
|
964
|
+
version = "1.1.3"
|
|
965
965
|
source = { registry = "https://pypi.org/simple" }
|
|
966
966
|
dependencies = [
|
|
967
967
|
{ name = "filelock" },
|
|
968
968
|
{ name = "platformdirs" },
|
|
969
969
|
]
|
|
970
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
970
|
+
sdist = { url = "https://files.pythonhosted.org/packages/d7/7e/9f3b0dd3a074a6c3e1e79f35e465b1f2ee4b262d619de00cfce523cc9b24/python_discovery-1.1.3.tar.gz", hash = "sha256:7acca36e818cd88e9b2ba03e045ad7e93e1713e29c6bbfba5d90202310b7baa5", size = 56945, upload-time = "2026-03-10T15:08:15.038Z" }
|
|
971
971
|
wheels = [
|
|
972
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
972
|
+
{ url = "https://files.pythonhosted.org/packages/e7/80/73211fc5bfbfc562369b4aa61dc1e4bf07dc7b34df7b317e4539316b809c/python_discovery-1.1.3-py3-none-any.whl", hash = "sha256:90e795f0121bc84572e737c9aa9966311b9fde44ffb88a5953b3ec9b31c6945e", size = 31485, upload-time = "2026-03-10T15:08:13.06Z" },
|
|
973
973
|
]
|
|
974
974
|
|
|
975
975
|
[[package]]
|
|
@@ -1026,7 +1026,7 @@ requires-dist = [
|
|
|
1026
1026
|
{ name = "lxml", specifier = "~=6.0.2" },
|
|
1027
1027
|
{ name = "msgpack", specifier = "~=1.1.2" },
|
|
1028
1028
|
{ name = "msgspec", specifier = "==0.20.0" },
|
|
1029
|
-
{ name = "object-storage-client", specifier = "==0.0.
|
|
1029
|
+
{ name = "object-storage-client", specifier = "==0.0.19" },
|
|
1030
1030
|
{ name = "pydantic-settings", specifier = "~=2.13.1" },
|
|
1031
1031
|
{ name = "sqlalchemy", extras = ["asyncio"], specifier = "~=2.0.48" },
|
|
1032
1032
|
{ name = "valkey", extras = ["libvalkey"], specifier = "~=6.1.1" },
|
|
@@ -1129,36 +1129,36 @@ wheels = [
|
|
|
1129
1129
|
|
|
1130
1130
|
[[package]]
|
|
1131
1131
|
name = "ruff"
|
|
1132
|
-
version = "0.15.
|
|
1133
|
-
source = { registry = "https://pypi.org/simple" }
|
|
1134
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
1135
|
-
wheels = [
|
|
1136
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1137
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1138
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1139
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1140
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1141
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1142
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1143
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1144
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1145
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1146
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1147
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1148
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1149
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1150
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1151
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1152
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1132
|
+
version = "0.15.6"
|
|
1133
|
+
source = { registry = "https://pypi.org/simple" }
|
|
1134
|
+
sdist = { url = "https://files.pythonhosted.org/packages/51/df/f8629c19c5318601d3121e230f74cbee7a3732339c52b21daa2b82ef9c7d/ruff-0.15.6.tar.gz", hash = "sha256:8394c7bb153a4e3811a4ecdacd4a8e6a4fa8097028119160dffecdcdf9b56ae4", size = 4597916, upload-time = "2026-03-12T23:05:47.51Z" }
|
|
1135
|
+
wheels = [
|
|
1136
|
+
{ url = "https://files.pythonhosted.org/packages/9e/2f/4e03a7e5ce99b517e98d3b4951f411de2b0fa8348d39cf446671adcce9a2/ruff-0.15.6-py3-none-linux_armv6l.whl", hash = "sha256:7c98c3b16407b2cf3d0f2b80c80187384bc92c6774d85fefa913ecd941256fff", size = 10508953, upload-time = "2026-03-12T23:05:17.246Z" },
|
|
1137
|
+
{ url = "https://files.pythonhosted.org/packages/70/60/55bcdc3e9f80bcf39edf0cd272da6fa511a3d94d5a0dd9e0adf76ceebdb4/ruff-0.15.6-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:ee7dcfaad8b282a284df4aa6ddc2741b3f4a18b0555d626805555a820ea181c3", size = 10942257, upload-time = "2026-03-12T23:05:23.076Z" },
|
|
1138
|
+
{ url = "https://files.pythonhosted.org/packages/e7/f9/005c29bd1726c0f492bfa215e95154cf480574140cb5f867c797c18c790b/ruff-0.15.6-py3-none-macosx_11_0_arm64.whl", hash = "sha256:3bd9967851a25f038fc8b9ae88a7fbd1b609f30349231dffaa37b6804923c4bb", size = 10322683, upload-time = "2026-03-12T23:05:33.738Z" },
|
|
1139
|
+
{ url = "https://files.pythonhosted.org/packages/5f/74/2f861f5fd7cbb2146bddb5501450300ce41562da36d21868c69b7a828169/ruff-0.15.6-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:13f4594b04e42cd24a41da653886b04d2ff87adbf57497ed4f728b0e8a4866f8", size = 10660986, upload-time = "2026-03-12T23:05:53.245Z" },
|
|
1140
|
+
{ url = "https://files.pythonhosted.org/packages/c1/a1/309f2364a424eccb763cdafc49df843c282609f47fe53aa83f38272389e0/ruff-0.15.6-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:e2ed8aea2f3fe57886d3f00ea5b8aae5bf68d5e195f487f037a955ff9fbaac9e", size = 10332177, upload-time = "2026-03-12T23:05:56.145Z" },
|
|
1141
|
+
{ url = "https://files.pythonhosted.org/packages/30/41/7ebf1d32658b4bab20f8ac80972fb19cd4e2c6b78552be263a680edc55ac/ruff-0.15.6-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:70789d3e7830b848b548aae96766431c0dc01a6c78c13381f423bf7076c66d15", size = 11170783, upload-time = "2026-03-12T23:06:01.742Z" },
|
|
1142
|
+
{ url = "https://files.pythonhosted.org/packages/76/be/6d488f6adca047df82cd62c304638bcb00821c36bd4881cfca221561fdfc/ruff-0.15.6-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:542aaf1de3154cea088ced5a819ce872611256ffe2498e750bbae5247a8114e9", size = 12044201, upload-time = "2026-03-12T23:05:28.697Z" },
|
|
1143
|
+
{ url = "https://files.pythonhosted.org/packages/71/68/e6f125df4af7e6d0b498f8d373274794bc5156b324e8ab4bf5c1b4fc0ec7/ruff-0.15.6-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1c22e6f02c16cfac3888aa636e9eba857254d15bbacc9906c9689fdecb1953ab", size = 11421561, upload-time = "2026-03-12T23:05:31.236Z" },
|
|
1144
|
+
{ url = "https://files.pythonhosted.org/packages/f1/9f/f85ef5fd01a52e0b472b26dc1b4bd228b8f6f0435975442ffa4741278703/ruff-0.15.6-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:98893c4c0aadc8e448cfa315bd0cc343a5323d740fe5f28ef8a3f9e21b381f7e", size = 11310928, upload-time = "2026-03-12T23:05:45.288Z" },
|
|
1145
|
+
{ url = "https://files.pythonhosted.org/packages/8c/26/b75f8c421f5654304b89471ed384ae8c7f42b4dff58fa6ce1626d7f2b59a/ruff-0.15.6-py3-none-manylinux_2_31_riscv64.whl", hash = "sha256:70d263770d234912374493e8cc1e7385c5d49376e41dfa51c5c3453169dc581c", size = 11235186, upload-time = "2026-03-12T23:05:50.677Z" },
|
|
1146
|
+
{ url = "https://files.pythonhosted.org/packages/fc/d4/d5a6d065962ff7a68a86c9b4f5500f7d101a0792078de636526c0edd40da/ruff-0.15.6-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:55a1ad63c5a6e54b1f21b7514dfadc0c7fb40093fa22e95143cf3f64ebdcd512", size = 10635231, upload-time = "2026-03-12T23:05:37.044Z" },
|
|
1147
|
+
{ url = "https://files.pythonhosted.org/packages/d6/56/7c3acf3d50910375349016cf33de24be021532042afbed87942858992491/ruff-0.15.6-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:8dc473ba093c5ec238bb1e7429ee676dca24643c471e11fbaa8a857925b061c0", size = 10340357, upload-time = "2026-03-12T23:06:04.748Z" },
|
|
1148
|
+
{ url = "https://files.pythonhosted.org/packages/06/54/6faa39e9c1033ff6a3b6e76b5df536931cd30caf64988e112bbf91ef5ce5/ruff-0.15.6-py3-none-musllinux_1_2_i686.whl", hash = "sha256:85b042377c2a5561131767974617006f99f7e13c63c111b998f29fc1e58a4cfb", size = 10860583, upload-time = "2026-03-12T23:05:58.978Z" },
|
|
1149
|
+
{ url = "https://files.pythonhosted.org/packages/cb/1e/509a201b843b4dfb0b32acdedf68d951d3377988cae43949ba4c4133a96a/ruff-0.15.6-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:cef49e30bc5a86a6a92098a7fbf6e467a234d90b63305d6f3ec01225a9d092e0", size = 11410976, upload-time = "2026-03-12T23:05:39.955Z" },
|
|
1150
|
+
{ url = "https://files.pythonhosted.org/packages/6c/25/3fc9114abf979a41673ce877c08016f8e660ad6cf508c3957f537d2e9fa9/ruff-0.15.6-py3-none-win32.whl", hash = "sha256:bbf67d39832404812a2d23020dda68fee7f18ce15654e96fb1d3ad21a5fe436c", size = 10616872, upload-time = "2026-03-12T23:05:42.451Z" },
|
|
1151
|
+
{ url = "https://files.pythonhosted.org/packages/89/7a/09ece68445ceac348df06e08bf75db72d0e8427765b96c9c0ffabc1be1d9/ruff-0.15.6-py3-none-win_amd64.whl", hash = "sha256:aee25bc84c2f1007ecb5037dff75cef00414fdf17c23f07dc13e577883dca406", size = 11787271, upload-time = "2026-03-12T23:05:20.168Z" },
|
|
1152
|
+
{ url = "https://files.pythonhosted.org/packages/7f/d0/578c47dd68152ddddddf31cd7fc67dc30b7cdf639a86275fda821b0d9d98/ruff-0.15.6-py3-none-win_arm64.whl", hash = "sha256:c34de3dd0b0ba203be50ae70f5910b17188556630e2178fd7d79fc030eb0d837", size = 11060497, upload-time = "2026-03-12T23:05:25.968Z" },
|
|
1153
1153
|
]
|
|
1154
1154
|
|
|
1155
1155
|
[[package]]
|
|
1156
1156
|
name = "setuptools"
|
|
1157
|
-
version = "82.0.
|
|
1157
|
+
version = "82.0.1"
|
|
1158
1158
|
source = { registry = "https://pypi.org/simple" }
|
|
1159
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
1159
|
+
sdist = { url = "https://files.pythonhosted.org/packages/4f/db/cfac1baf10650ab4d1c111714410d2fbb77ac5a616db26775db562c8fab2/setuptools-82.0.1.tar.gz", hash = "sha256:7d872682c5d01cfde07da7bccc7b65469d3dca203318515ada1de5eda35efbf9", size = 1152316, upload-time = "2026-03-09T12:47:17.221Z" }
|
|
1160
1160
|
wheels = [
|
|
1161
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1161
|
+
{ url = "https://files.pythonhosted.org/packages/9d/76/f789f7a86709c6b087c5a2f52f911838cad707cc613162401badc665acfe/setuptools-82.0.1-py3-none-any.whl", hash = "sha256:a59e362652f08dcd477c78bb6e7bd9d80a7995bc73ce773050228a348ce2e5bb", size = 1006223, upload-time = "2026-03-09T12:47:15.026Z" },
|
|
1162
1162
|
]
|
|
1163
1163
|
|
|
1164
1164
|
[[package]]
|
|
@@ -1216,26 +1216,26 @@ asyncio = [
|
|
|
1216
1216
|
|
|
1217
1217
|
[[package]]
|
|
1218
1218
|
name = "ty"
|
|
1219
|
-
version = "0.0.
|
|
1219
|
+
version = "0.0.23"
|
|
1220
1220
|
source = { registry = "https://pypi.org/simple" }
|
|
1221
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
1221
|
+
sdist = { url = "https://files.pythonhosted.org/packages/75/ba/d3c998ff4cf6b5d75b39356db55fe1b7caceecc522b9586174e6a5dee6f7/ty-0.0.23.tar.gz", hash = "sha256:5fb05db58f202af366f80ef70f806e48f5237807fe424ec787c9f289e3f3a4ef", size = 5341461, upload-time = "2026-03-13T12:34:23.125Z" }
|
|
1222
1222
|
wheels = [
|
|
1223
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1224
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1225
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1226
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1227
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1228
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1229
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1230
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1231
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1232
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1233
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1234
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1235
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1236
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1237
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1238
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1223
|
+
{ url = "https://files.pythonhosted.org/packages/f4/21/aab32603dfdfacd4819e52fa8c6074e7bd578218a5142729452fc6a62db6/ty-0.0.23-py3-none-linux_armv6l.whl", hash = "sha256:e810eef1a5f1cfc0731a58af8d2f334906a96835829767aed00026f1334a8dd7", size = 10329096, upload-time = "2026-03-13T12:34:09.432Z" },
|
|
1224
|
+
{ url = "https://files.pythonhosted.org/packages/9f/a9/dd3287a82dce3df546ec560296208d4905dcf06346b6e18c2f3c63523bd1/ty-0.0.23-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:e43d36bd89a151ddcad01acaeff7dcc507cb73ff164c1878d2d11549d39a061c", size = 10156631, upload-time = "2026-03-13T12:34:53.122Z" },
|
|
1225
|
+
{ url = "https://files.pythonhosted.org/packages/0f/01/3f25909b02fac29bb0a62b2251f8d62e65d697781ffa4cf6b47a4c075c85/ty-0.0.23-py3-none-macosx_11_0_arm64.whl", hash = "sha256:bd6a340969577b4645f231572c4e46012acba2d10d4c0c6570fe1ab74e76ae00", size = 9653211, upload-time = "2026-03-13T12:34:15.049Z" },
|
|
1226
|
+
{ url = "https://files.pythonhosted.org/packages/d5/60/bfc0479572a6f4b90501c869635faf8d84c8c68ffc5dd87d04f049affabc/ty-0.0.23-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:341441783e626eeb7b1ec2160432956aed5734932ab2d1c26f94d0c98b229937", size = 10156143, upload-time = "2026-03-13T12:34:34.468Z" },
|
|
1227
|
+
{ url = "https://files.pythonhosted.org/packages/3a/81/8a93e923535a340f54bea20ff196f6b2787782b2f2f399bd191c4bc132d6/ty-0.0.23-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8ce1dc66c26d4167e2c78d12fa870ef5a7ec9cc344d2baaa6243297cfa88bd52", size = 10136632, upload-time = "2026-03-13T12:34:28.832Z" },
|
|
1228
|
+
{ url = "https://files.pythonhosted.org/packages/da/cb/2ac81c850c58acc9f976814404d28389c9c1c939676e32287b9cff61381e/ty-0.0.23-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bae1e7a294bf8528836f7617dc5c360ea2dddb63789fc9471ae6753534adca05", size = 10655025, upload-time = "2026-03-13T12:34:37.105Z" },
|
|
1229
|
+
{ url = "https://files.pythonhosted.org/packages/b5/9b/bac771774c198c318ae699fc013d8cd99ed9caf993f661fba11238759244/ty-0.0.23-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d2b162768764d9dc177c83fb497a51532bb67cbebe57b8fa0f2668436bf53f3c", size = 11230107, upload-time = "2026-03-13T12:34:20.751Z" },
|
|
1230
|
+
{ url = "https://files.pythonhosted.org/packages/14/09/7644fb0e297265e18243f878aca343593323b9bb19ed5278dcbc63781be0/ty-0.0.23-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d28384e48ca03b34e4e2beee0e230c39bbfb68994bb44927fec61ef3642900da", size = 10934177, upload-time = "2026-03-13T12:34:17.904Z" },
|
|
1231
|
+
{ url = "https://files.pythonhosted.org/packages/18/14/69a25a0cad493fb6a947302471b579a03516a3b00e7bece77fdc6b4afb9b/ty-0.0.23-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:559d9a299df793cb7a7902caed5eda8a720ff69164c31c979673e928f02251ee", size = 10752487, upload-time = "2026-03-13T12:34:31.785Z" },
|
|
1232
|
+
{ url = "https://files.pythonhosted.org/packages/9d/2a/42fc3cbccf95af0a62308ebed67e084798ab7a85ef073c9986ef18032743/ty-0.0.23-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:32a7b8a14a98e1d20a9d8d2af23637ed7efdb297ac1fa2450b8e465d05b94482", size = 10133007, upload-time = "2026-03-13T12:34:42.838Z" },
|
|
1233
|
+
{ url = "https://files.pythonhosted.org/packages/e1/69/307833f1b52fa3670e0a1d496e43ef7df556ecde838192d3fcb9b35e360d/ty-0.0.23-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:6f803b9b9cca87af793467973b9abdd4b83e6b96d9b5e749d662cff7ead70b6d", size = 10169698, upload-time = "2026-03-13T12:34:12.351Z" },
|
|
1234
|
+
{ url = "https://files.pythonhosted.org/packages/89/ae/5dd379ec22d0b1cba410d7af31c366fcedff191d5b867145913a64889f66/ty-0.0.23-py3-none-musllinux_1_2_i686.whl", hash = "sha256:4a0bf086ec8e2197b7ea7ebfcf4be36cb6a52b235f8be61647ef1b2d99d6ffd3", size = 10346080, upload-time = "2026-03-13T12:34:40.012Z" },
|
|
1235
|
+
{ url = "https://files.pythonhosted.org/packages/98/c7/dfc83203d37998620bba9c4873a080c8850a784a8a46f56f8163c5b4e320/ty-0.0.23-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:252539c3fcd7aeb9b8d5c14e2040682c3e1d7ff640906d63fd2c4ce35865a4ba", size = 10848162, upload-time = "2026-03-13T12:34:45.421Z" },
|
|
1236
|
+
{ url = "https://files.pythonhosted.org/packages/89/08/05481511cfbcc1fd834b6c67aaae090cb609a079189ddf2032139ccfc490/ty-0.0.23-py3-none-win32.whl", hash = "sha256:51b591d19eef23bbc3807aef77d38fa1f003c354e1da908aa80ea2dca0993f77", size = 9748283, upload-time = "2026-03-13T12:34:50.607Z" },
|
|
1237
|
+
{ url = "https://files.pythonhosted.org/packages/31/2e/eaed4ff5c85e857a02415084c394e02c30476b65e158eec1938fdaa9a205/ty-0.0.23-py3-none-win_amd64.whl", hash = "sha256:1e137e955f05c501cfbb81dd2190c8fb7d01ec037c7e287024129c722a83c9ad", size = 10698355, upload-time = "2026-03-13T12:34:26.134Z" },
|
|
1238
|
+
{ url = "https://files.pythonhosted.org/packages/91/29/b32cb7b4c7d56b9ed50117f8ad6e45834aec293e4cb14749daab4e9236d5/ty-0.0.23-py3-none-win_arm64.whl", hash = "sha256:a0399bd13fd2cd6683fd0a2d59b9355155d46546d8203e152c556ddbdeb20842", size = 10155890, upload-time = "2026-03-13T12:34:48.082Z" },
|
|
1239
1239
|
]
|
|
1240
1240
|
|
|
1241
1241
|
[[package]]
|
|
@@ -1266,11 +1266,11 @@ wheels = [
|
|
|
1266
1266
|
|
|
1267
1267
|
[[package]]
|
|
1268
1268
|
name = "types-awscrt"
|
|
1269
|
-
version = "0.31.
|
|
1269
|
+
version = "0.31.3"
|
|
1270
1270
|
source = { registry = "https://pypi.org/simple" }
|
|
1271
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
1271
|
+
sdist = { url = "https://files.pythonhosted.org/packages/76/26/0aa563e229c269c528a3b8c709fc671ac2a5c564732fab0852ac6ee006cf/types_awscrt-0.31.3.tar.gz", hash = "sha256:09d3eaf00231e0f47e101bd9867e430873bc57040050e2a3bd8305cb4fc30865", size = 18178, upload-time = "2026-03-08T02:31:14.569Z" }
|
|
1272
1272
|
wheels = [
|
|
1273
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1273
|
+
{ url = "https://files.pythonhosted.org/packages/3e/e5/47a573bbbd0a790f8f9fe452f7188ea72b212d21c9be57d5fc0cbc442075/types_awscrt-0.31.3-py3-none-any.whl", hash = "sha256:e5ce65a00a2ab4f35eacc1e3d700d792338d56e4823ee7b4dbe017f94cfc4458", size = 43340, upload-time = "2026-03-08T02:31:13.38Z" },
|
|
1274
1274
|
]
|
|
1275
1275
|
|
|
1276
1276
|
[[package]]
|
|
@@ -1319,7 +1319,7 @@ libvalkey = [
|
|
|
1319
1319
|
|
|
1320
1320
|
[[package]]
|
|
1321
1321
|
name = "virtualenv"
|
|
1322
|
-
version = "21.
|
|
1322
|
+
version = "21.2.0"
|
|
1323
1323
|
source = { registry = "https://pypi.org/simple" }
|
|
1324
1324
|
dependencies = [
|
|
1325
1325
|
{ name = "distlib" },
|
|
@@ -1327,9 +1327,9 @@ dependencies = [
|
|
|
1327
1327
|
{ name = "platformdirs" },
|
|
1328
1328
|
{ name = "python-discovery" },
|
|
1329
1329
|
]
|
|
1330
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
1330
|
+
sdist = { url = "https://files.pythonhosted.org/packages/aa/92/58199fe10049f9703c2666e809c4f686c54ef0a68b0f6afccf518c0b1eb9/virtualenv-21.2.0.tar.gz", hash = "sha256:1720dc3a62ef5b443092e3f499228599045d7fea4c79199770499df8becf9098", size = 5840618, upload-time = "2026-03-09T17:24:38.013Z" }
|
|
1331
1331
|
wheels = [
|
|
1332
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1332
|
+
{ url = "https://files.pythonhosted.org/packages/c6/59/7d02447a55b2e55755011a647479041bc92a82e143f96a8195cb33bd0a1c/virtualenv-21.2.0-py3-none-any.whl", hash = "sha256:1bd755b504931164a5a496d217c014d098426cddc79363ad66ac78125f9d908f", size = 5825084, upload-time = "2026-03-09T17:24:35.378Z" },
|
|
1333
1333
|
]
|
|
1334
1334
|
|
|
1335
1335
|
[[package]]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python3_commons-0.15.12 → python3_commons-0.15.13}/.github/workflows/release-on-tag-push.yml
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
|
|
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.15.12 → python3_commons-0.15.13}/src/python3_commons/db/models/__init__.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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python3_commons-0.15.12 → python3_commons-0.15.13}/src/python3_commons/serializers/__init__.py
RENAMED
|
File without changes
|
{python3_commons-0.15.12 → python3_commons-0.15.13}/src/python3_commons/serializers/common.py
RENAMED
|
File without changes
|
|
File without changes
|
{python3_commons-0.15.12 → python3_commons-0.15.13}/src/python3_commons/serializers/msgpack.py
RENAMED
|
File without changes
|
{python3_commons-0.15.12 → python3_commons-0.15.13}/src/python3_commons/serializers/msgspec.py
RENAMED
|
File without changes
|
{python3_commons-0.15.12 → python3_commons-0.15.13}/src/python3_commons.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{python3_commons-0.15.12 → python3_commons-0.15.13}/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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|