python3-commons 0.15.14__tar.gz → 0.15.16__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.14 → python3_commons-0.15.16}/PKG-INFO +2 -2
- {python3_commons-0.15.14 → python3_commons-0.15.16}/pyproject.toml +1 -1
- {python3_commons-0.15.14 → python3_commons-0.15.16}/src/python3_commons/auth.py +3 -0
- {python3_commons-0.15.14 → python3_commons-0.15.16}/src/python3_commons.egg-info/PKG-INFO +2 -2
- {python3_commons-0.15.14 → python3_commons-0.15.16}/src/python3_commons.egg-info/requires.txt +1 -1
- {python3_commons-0.15.14 → python3_commons-0.15.16}/uv.lock +21 -21
- {python3_commons-0.15.14 → python3_commons-0.15.16}/.coveragerc +0 -0
- {python3_commons-0.15.14 → python3_commons-0.15.16}/.devcontainer/Dockerfile +0 -0
- {python3_commons-0.15.14 → python3_commons-0.15.16}/.devcontainer/devcontainer.json +0 -0
- {python3_commons-0.15.14 → python3_commons-0.15.16}/.devcontainer/docker-compose.yml +0 -0
- {python3_commons-0.15.14 → python3_commons-0.15.16}/.env_template +0 -0
- {python3_commons-0.15.14 → python3_commons-0.15.16}/.github/workflows/checks.yml +0 -0
- {python3_commons-0.15.14 → python3_commons-0.15.16}/.github/workflows/python-publish.yaml +0 -0
- {python3_commons-0.15.14 → python3_commons-0.15.16}/.github/workflows/release-on-tag-push.yml +0 -0
- {python3_commons-0.15.14 → python3_commons-0.15.16}/.gitignore +0 -0
- {python3_commons-0.15.14 → python3_commons-0.15.16}/.pre-commit-config.yaml +0 -0
- {python3_commons-0.15.14 → python3_commons-0.15.16}/.python-version +0 -0
- {python3_commons-0.15.14 → python3_commons-0.15.16}/AUTHORS.rst +0 -0
- {python3_commons-0.15.14 → python3_commons-0.15.16}/CHANGELOG.rst +0 -0
- {python3_commons-0.15.14 → python3_commons-0.15.16}/LICENSE +0 -0
- {python3_commons-0.15.14 → python3_commons-0.15.16}/README.md +0 -0
- {python3_commons-0.15.14 → python3_commons-0.15.16}/README.rst +0 -0
- {python3_commons-0.15.14 → python3_commons-0.15.16}/docs/Makefile +0 -0
- {python3_commons-0.15.14 → python3_commons-0.15.16}/docs/_static/.gitignore +0 -0
- {python3_commons-0.15.14 → python3_commons-0.15.16}/docs/authors.rst +0 -0
- {python3_commons-0.15.14 → python3_commons-0.15.16}/docs/changelog.rst +0 -0
- {python3_commons-0.15.14 → python3_commons-0.15.16}/docs/conf.py +0 -0
- {python3_commons-0.15.14 → python3_commons-0.15.16}/docs/index.rst +0 -0
- {python3_commons-0.15.14 → python3_commons-0.15.16}/docs/license.rst +0 -0
- {python3_commons-0.15.14 → python3_commons-0.15.16}/setup.cfg +0 -0
- {python3_commons-0.15.14 → python3_commons-0.15.16}/src/python3_commons/__init__.py +0 -0
- {python3_commons-0.15.14 → python3_commons-0.15.16}/src/python3_commons/api_client.py +0 -0
- {python3_commons-0.15.14 → python3_commons-0.15.16}/src/python3_commons/async_functools.py +0 -0
- {python3_commons-0.15.14 → python3_commons-0.15.16}/src/python3_commons/audit.py +0 -0
- {python3_commons-0.15.14 → python3_commons-0.15.16}/src/python3_commons/cache.py +0 -0
- {python3_commons-0.15.14 → python3_commons-0.15.16}/src/python3_commons/conf.py +0 -0
- {python3_commons-0.15.14 → python3_commons-0.15.16}/src/python3_commons/db/__init__.py +0 -0
- {python3_commons-0.15.14 → python3_commons-0.15.16}/src/python3_commons/db/helpers.py +0 -0
- {python3_commons-0.15.14 → python3_commons-0.15.16}/src/python3_commons/db/models/__init__.py +0 -0
- {python3_commons-0.15.14 → python3_commons-0.15.16}/src/python3_commons/db/models/auth.py +0 -0
- {python3_commons-0.15.14 → python3_commons-0.15.16}/src/python3_commons/db/models/common.py +0 -0
- {python3_commons-0.15.14 → python3_commons-0.15.16}/src/python3_commons/db/models/rbac.py +0 -0
- {python3_commons-0.15.14 → python3_commons-0.15.16}/src/python3_commons/db/models/users.py +0 -0
- {python3_commons-0.15.14 → python3_commons-0.15.16}/src/python3_commons/exceptions.py +0 -0
- {python3_commons-0.15.14 → python3_commons-0.15.16}/src/python3_commons/fs.py +0 -0
- {python3_commons-0.15.14 → python3_commons-0.15.16}/src/python3_commons/generators.py +0 -0
- {python3_commons-0.15.14 → python3_commons-0.15.16}/src/python3_commons/helpers.py +0 -0
- {python3_commons-0.15.14 → python3_commons-0.15.16}/src/python3_commons/log/__init__.py +0 -0
- {python3_commons-0.15.14 → python3_commons-0.15.16}/src/python3_commons/log/filters.py +0 -0
- {python3_commons-0.15.14 → python3_commons-0.15.16}/src/python3_commons/log/formatters.py +0 -0
- {python3_commons-0.15.14 → python3_commons-0.15.16}/src/python3_commons/object_storage.py +0 -0
- {python3_commons-0.15.14 → python3_commons-0.15.16}/src/python3_commons/permissions.py +0 -0
- {python3_commons-0.15.14 → python3_commons-0.15.16}/src/python3_commons/serializers/__init__.py +0 -0
- {python3_commons-0.15.14 → python3_commons-0.15.16}/src/python3_commons/serializers/common.py +0 -0
- {python3_commons-0.15.14 → python3_commons-0.15.16}/src/python3_commons/serializers/json.py +0 -0
- {python3_commons-0.15.14 → python3_commons-0.15.16}/src/python3_commons/serializers/msgpack.py +0 -0
- {python3_commons-0.15.14 → python3_commons-0.15.16}/src/python3_commons/serializers/msgspec.py +0 -0
- {python3_commons-0.15.14 → python3_commons-0.15.16}/src/python3_commons.egg-info/SOURCES.txt +0 -0
- {python3_commons-0.15.14 → python3_commons-0.15.16}/src/python3_commons.egg-info/dependency_links.txt +0 -0
- {python3_commons-0.15.14 → python3_commons-0.15.16}/src/python3_commons.egg-info/top_level.txt +0 -0
- {python3_commons-0.15.14 → python3_commons-0.15.16}/tests/__init__.py +0 -0
- {python3_commons-0.15.14 → python3_commons-0.15.16}/tests/integration/__init__.py +0 -0
- {python3_commons-0.15.14 → python3_commons-0.15.16}/tests/integration/test_cache.py +0 -0
- {python3_commons-0.15.14 → python3_commons-0.15.16}/tests/integration/test_osc.py +0 -0
- {python3_commons-0.15.14 → python3_commons-0.15.16}/tests/unit/__init__.py +0 -0
- {python3_commons-0.15.14 → python3_commons-0.15.16}/tests/unit/conftest.py +0 -0
- {python3_commons-0.15.14 → python3_commons-0.15.16}/tests/unit/log/__init__.py +0 -0
- {python3_commons-0.15.14 → python3_commons-0.15.16}/tests/unit/log/test_formatters.py +0 -0
- {python3_commons-0.15.14 → python3_commons-0.15.16}/tests/unit/test_async_functools.py +0 -0
- {python3_commons-0.15.14 → python3_commons-0.15.16}/tests/unit/test_audit.py +0 -0
- {python3_commons-0.15.14 → python3_commons-0.15.16}/tests/unit/test_helpers.py +0 -0
- {python3_commons-0.15.14 → python3_commons-0.15.16}/tests/unit/test_msgpack.py +0 -0
- {python3_commons-0.15.14 → python3_commons-0.15.16}/tests/unit/test_msgspec.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: python3-commons
|
|
3
|
-
Version: 0.15.
|
|
3
|
+
Version: 0.15.16
|
|
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.20
|
|
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
|
|
@@ -62,6 +62,9 @@ async def fetch_jwks(jwks_uri: str) -> dict:
|
|
|
62
62
|
"""
|
|
63
63
|
Fetch the JSON Web Key Set (JWKS) for validating the token's signature.
|
|
64
64
|
"""
|
|
65
|
+
if oidc_settings.authority_internal_url:
|
|
66
|
+
jwks_uri = jwks_uri.replace(oidc_settings.authority_url, str(oidc_settings.authority_internal_url))
|
|
67
|
+
|
|
65
68
|
async with aiohttp.ClientSession() as session, session.get(jwks_uri) as response:
|
|
66
69
|
if response.status != HTTPStatus.OK:
|
|
67
70
|
msg = 'Failed to fetch JWKS'
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: python3-commons
|
|
3
|
-
Version: 0.15.
|
|
3
|
+
Version: 0.15.16
|
|
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.20
|
|
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
|
|
@@ -155,11 +155,11 @@ wheels = [
|
|
|
155
155
|
|
|
156
156
|
[[package]]
|
|
157
157
|
name = "attrs"
|
|
158
|
-
version = "
|
|
158
|
+
version = "26.1.0"
|
|
159
159
|
source = { registry = "https://pypi.org/simple" }
|
|
160
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
160
|
+
sdist = { url = "https://files.pythonhosted.org/packages/9a/8e/82a0fe20a541c03148528be8cac2408564a6c9a0cc7e9171802bc1d26985/attrs-26.1.0.tar.gz", hash = "sha256:d03ceb89cb322a8fd706d4fb91940737b6642aa36998fe130a9bc96c985eff32", size = 952055, upload-time = "2026-03-19T14:22:25.026Z" }
|
|
161
161
|
wheels = [
|
|
162
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
162
|
+
{ url = "https://files.pythonhosted.org/packages/64/b4/17d4b0b2a2dc85a6df63d1157e028ed19f90d4cd97c36717afef2bc2f395/attrs-26.1.0-py3-none-any.whl", hash = "sha256:c647aa4a12dfbad9333ca4e71fe62ddc36f4e63b2d260a37a8b83d2f043ac309", size = 67548, upload-time = "2026-03-19T14:22:23.645Z" },
|
|
163
163
|
]
|
|
164
164
|
|
|
165
165
|
[[package]]
|
|
@@ -666,13 +666,13 @@ wheels = [
|
|
|
666
666
|
|
|
667
667
|
[[package]]
|
|
668
668
|
name = "object-storage-client"
|
|
669
|
-
version = "0.0.
|
|
669
|
+
version = "0.0.20"
|
|
670
670
|
source = { registry = "https://pypi.org/simple" }
|
|
671
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
671
|
+
sdist = { url = "https://files.pythonhosted.org/packages/af/b3/c2a0c4067d829f49d6e777a9c11f28b899226e117492c6f6ed230890b327/object_storage_client-0.0.20.tar.gz", hash = "sha256:ca4bf4ce6c7061081caeb8d11e05f34ec597829a8178e94f62b17dc7e9b12498", size = 39116, upload-time = "2026-03-20T17:27:56.377Z" }
|
|
672
672
|
wheels = [
|
|
673
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
674
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
675
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
673
|
+
{ url = "https://files.pythonhosted.org/packages/30/56/5c32ba20a482dd861f6faa18372410fb4abaaca74f419d60ef925ba64d9e/object_storage_client-0.0.20-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:7fe6781539b4f29aef6836411e100a946f22ac409926ab0b0ec9362a198451fd", size = 1914810, upload-time = "2026-03-20T17:27:51.906Z" },
|
|
674
|
+
{ url = "https://files.pythonhosted.org/packages/41/2d/2e5b7b195a0e4478e4ae08efb249746c7b0df8aa25f58aa913540882617e/object_storage_client-0.0.20-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:aa0037016589a153f7c7d6e9c2b84cdd046d280420c8a4120cebe6cb1e7665a6", size = 2102642, upload-time = "2026-03-20T17:27:55.24Z" },
|
|
675
|
+
{ url = "https://files.pythonhosted.org/packages/68/84/256c571a540017429009c289b2cccf174fc0cf731bae5697a214f57e26c8/object_storage_client-0.0.20-cp314-cp314-win_amd64.whl", hash = "sha256:49003b38f22af4cdb60f62fed7b55890c93fba0e837f1c6a216f9566b4167629", size = 2095189, upload-time = "2026-03-20T17:28:00.145Z" },
|
|
676
676
|
]
|
|
677
677
|
|
|
678
678
|
[[package]]
|
|
@@ -926,16 +926,16 @@ wheels = [
|
|
|
926
926
|
|
|
927
927
|
[[package]]
|
|
928
928
|
name = "pytest-cov"
|
|
929
|
-
version = "7.
|
|
929
|
+
version = "7.1.0"
|
|
930
930
|
source = { registry = "https://pypi.org/simple" }
|
|
931
931
|
dependencies = [
|
|
932
932
|
{ name = "coverage" },
|
|
933
933
|
{ name = "pluggy" },
|
|
934
934
|
{ name = "pytest" },
|
|
935
935
|
]
|
|
936
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
936
|
+
sdist = { url = "https://files.pythonhosted.org/packages/b1/51/a849f96e117386044471c8ec2bd6cfebacda285da9525c9106aeb28da671/pytest_cov-7.1.0.tar.gz", hash = "sha256:30674f2b5f6351aa09702a9c8c364f6a01c27aae0c1366ae8016160d1efc56b2", size = 55592, upload-time = "2026-03-21T20:11:16.284Z" }
|
|
937
937
|
wheels = [
|
|
938
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
938
|
+
{ url = "https://files.pythonhosted.org/packages/9d/7a/d968e294073affff457b041c2be9868a40c1c71f4a35fcc1e45e5493067b/pytest_cov-7.1.0-py3-none-any.whl", hash = "sha256:a0461110b7865f9a271aa1b51e516c9a95de9d696734a2f71e3e78f46e1d4678", size = 22876, upload-time = "2026-03-21T20:11:14.438Z" },
|
|
939
939
|
]
|
|
940
940
|
|
|
941
941
|
[[package]]
|
|
@@ -964,15 +964,15 @@ wheels = [
|
|
|
964
964
|
|
|
965
965
|
[[package]]
|
|
966
966
|
name = "python-discovery"
|
|
967
|
-
version = "1.
|
|
967
|
+
version = "1.2.0"
|
|
968
968
|
source = { registry = "https://pypi.org/simple" }
|
|
969
969
|
dependencies = [
|
|
970
970
|
{ name = "filelock" },
|
|
971
971
|
{ name = "platformdirs" },
|
|
972
972
|
]
|
|
973
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
973
|
+
sdist = { url = "https://files.pythonhosted.org/packages/9c/90/bcce6b46823c9bec1757c964dc37ed332579be512e17a30e9698095dcae4/python_discovery-1.2.0.tar.gz", hash = "sha256:7d33e350704818b09e3da2bd419d37e21e7c30db6e0977bb438916e06b41b5b1", size = 58055, upload-time = "2026-03-19T01:43:08.248Z" }
|
|
974
974
|
wheels = [
|
|
975
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
975
|
+
{ url = "https://files.pythonhosted.org/packages/c2/3c/2005227cb951df502412de2fa781f800663cccbef8d90ec6f1b371ac2c0d/python_discovery-1.2.0-py3-none-any.whl", hash = "sha256:1e108f1bbe2ed0ef089823d28805d5ad32be8e734b86a5f212bf89b71c266e4a", size = 31524, upload-time = "2026-03-19T01:43:07.045Z" },
|
|
976
976
|
]
|
|
977
977
|
|
|
978
978
|
[[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.20" },
|
|
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" },
|
|
@@ -1188,14 +1188,14 @@ asyncio = [
|
|
|
1188
1188
|
|
|
1189
1189
|
[[package]]
|
|
1190
1190
|
name = "types-aiobotocore"
|
|
1191
|
-
version = "3.
|
|
1191
|
+
version = "3.3.0"
|
|
1192
1192
|
source = { registry = "https://pypi.org/simple" }
|
|
1193
1193
|
dependencies = [
|
|
1194
1194
|
{ name = "botocore-stubs" },
|
|
1195
1195
|
]
|
|
1196
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
1196
|
+
sdist = { url = "https://files.pythonhosted.org/packages/e7/93/e22753dc6b941093f19f0bfe87af5424e00310eaf52dd7d0d8306a6fe094/types_aiobotocore-3.3.0.tar.gz", hash = "sha256:c754c2888631d56c370cab4d2108da2bfd3afe80049303fb7132004ead3b21d6", size = 86908, upload-time = "2026-03-19T02:35:49.176Z" }
|
|
1197
1197
|
wheels = [
|
|
1198
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1198
|
+
{ url = "https://files.pythonhosted.org/packages/97/c7/53a786a82bde6307fd79059357c1d2f510667019d78dd71d8787c49bec7f/types_aiobotocore-3.3.0-py3-none-any.whl", hash = "sha256:017e9666d5cba2c26134256ad5e4efb320a68352358b9f3257b4e2aae3fb4c18", size = 54364, upload-time = "2026-03-19T02:35:45.567Z" },
|
|
1199
1199
|
]
|
|
1200
1200
|
|
|
1201
1201
|
[package.optional-dependencies]
|
|
@@ -1205,11 +1205,11 @@ s3 = [
|
|
|
1205
1205
|
|
|
1206
1206
|
[[package]]
|
|
1207
1207
|
name = "types-aiobotocore-s3"
|
|
1208
|
-
version = "3.
|
|
1208
|
+
version = "3.3.0"
|
|
1209
1209
|
source = { registry = "https://pypi.org/simple" }
|
|
1210
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
1210
|
+
sdist = { url = "https://files.pythonhosted.org/packages/3d/52/ea3c13b8141ae93985891d7876455ea5a7816da2666e6a38b7d90dd022ad/types_aiobotocore_s3-3.3.0.tar.gz", hash = "sha256:67a4aa2c3ab63d4c1df30b3d24516be822b5709d2c8413f35162b1a148211b68", size = 77002, upload-time = "2026-03-19T02:33:49.98Z" }
|
|
1211
1211
|
wheels = [
|
|
1212
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1212
|
+
{ url = "https://files.pythonhosted.org/packages/71/3f/e2c0157349024625d38d72ca5901f89f71e1dd0081a2593394bcac483b8d/types_aiobotocore_s3-3.3.0-py3-none-any.whl", hash = "sha256:eed12db234d6dc8a4faeb298c25c0b9d8e642b8741b1853d45d3249a93ca2cea", size = 84733, upload-time = "2026-03-19T02:33:48.184Z" },
|
|
1213
1213
|
]
|
|
1214
1214
|
|
|
1215
1215
|
[[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.14 → python3_commons-0.15.16}/.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.14 → python3_commons-0.15.16}/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.14 → python3_commons-0.15.16}/src/python3_commons/serializers/__init__.py
RENAMED
|
File without changes
|
{python3_commons-0.15.14 → python3_commons-0.15.16}/src/python3_commons/serializers/common.py
RENAMED
|
File without changes
|
|
File without changes
|
{python3_commons-0.15.14 → python3_commons-0.15.16}/src/python3_commons/serializers/msgpack.py
RENAMED
|
File without changes
|
{python3_commons-0.15.14 → python3_commons-0.15.16}/src/python3_commons/serializers/msgspec.py
RENAMED
|
File without changes
|
{python3_commons-0.15.14 → python3_commons-0.15.16}/src/python3_commons.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{python3_commons-0.15.14 → python3_commons-0.15.16}/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
|