python3-commons 0.15.20__tar.gz → 0.15.21__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.20 → python3_commons-0.15.21}/PKG-INFO +2 -2
- {python3_commons-0.15.20 → python3_commons-0.15.21}/pyproject.toml +1 -1
- {python3_commons-0.15.20 → python3_commons-0.15.21}/src/python3_commons.egg-info/PKG-INFO +2 -2
- {python3_commons-0.15.20 → python3_commons-0.15.21}/src/python3_commons.egg-info/requires.txt +1 -1
- {python3_commons-0.15.20 → python3_commons-0.15.21}/uv.lock +40 -40
- {python3_commons-0.15.20 → python3_commons-0.15.21}/.coveragerc +0 -0
- {python3_commons-0.15.20 → python3_commons-0.15.21}/.devcontainer/Dockerfile +0 -0
- {python3_commons-0.15.20 → python3_commons-0.15.21}/.devcontainer/devcontainer.json +0 -0
- {python3_commons-0.15.20 → python3_commons-0.15.21}/.devcontainer/docker-compose.yml +0 -0
- {python3_commons-0.15.20 → python3_commons-0.15.21}/.env_template +0 -0
- {python3_commons-0.15.20 → python3_commons-0.15.21}/.github/workflows/checks.yml +0 -0
- {python3_commons-0.15.20 → python3_commons-0.15.21}/.github/workflows/python-publish.yaml +0 -0
- {python3_commons-0.15.20 → python3_commons-0.15.21}/.github/workflows/release-on-tag-push.yml +0 -0
- {python3_commons-0.15.20 → python3_commons-0.15.21}/.gitignore +0 -0
- {python3_commons-0.15.20 → python3_commons-0.15.21}/.pre-commit-config.yaml +0 -0
- {python3_commons-0.15.20 → python3_commons-0.15.21}/.python-version +0 -0
- {python3_commons-0.15.20 → python3_commons-0.15.21}/AUTHORS.rst +0 -0
- {python3_commons-0.15.20 → python3_commons-0.15.21}/CHANGELOG.rst +0 -0
- {python3_commons-0.15.20 → python3_commons-0.15.21}/LICENSE +0 -0
- {python3_commons-0.15.20 → python3_commons-0.15.21}/README.md +0 -0
- {python3_commons-0.15.20 → python3_commons-0.15.21}/README.rst +0 -0
- {python3_commons-0.15.20 → python3_commons-0.15.21}/docs/Makefile +0 -0
- {python3_commons-0.15.20 → python3_commons-0.15.21}/docs/_static/.gitignore +0 -0
- {python3_commons-0.15.20 → python3_commons-0.15.21}/docs/authors.rst +0 -0
- {python3_commons-0.15.20 → python3_commons-0.15.21}/docs/changelog.rst +0 -0
- {python3_commons-0.15.20 → python3_commons-0.15.21}/docs/conf.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.15.21}/docs/index.rst +0 -0
- {python3_commons-0.15.20 → python3_commons-0.15.21}/docs/license.rst +0 -0
- {python3_commons-0.15.20 → python3_commons-0.15.21}/setup.cfg +0 -0
- {python3_commons-0.15.20 → python3_commons-0.15.21}/src/python3_commons/__init__.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.15.21}/src/python3_commons/api_client.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.15.21}/src/python3_commons/async_functools.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.15.21}/src/python3_commons/audit.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.15.21}/src/python3_commons/auth.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.15.21}/src/python3_commons/cache.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.15.21}/src/python3_commons/conf.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.15.21}/src/python3_commons/db/__init__.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.15.21}/src/python3_commons/db/helpers.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.15.21}/src/python3_commons/db/models/__init__.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.15.21}/src/python3_commons/db/models/auth.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.15.21}/src/python3_commons/db/models/common.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.15.21}/src/python3_commons/db/models/rbac.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.15.21}/src/python3_commons/db/models/users.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.15.21}/src/python3_commons/exceptions.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.15.21}/src/python3_commons/fs.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.15.21}/src/python3_commons/generators.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.15.21}/src/python3_commons/helpers.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.15.21}/src/python3_commons/log/__init__.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.15.21}/src/python3_commons/log/filters.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.15.21}/src/python3_commons/log/formatters.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.15.21}/src/python3_commons/object_storage.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.15.21}/src/python3_commons/permissions.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.15.21}/src/python3_commons/serializers/__init__.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.15.21}/src/python3_commons/serializers/common.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.15.21}/src/python3_commons/serializers/json.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.15.21}/src/python3_commons/serializers/msgpack.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.15.21}/src/python3_commons/serializers/msgspec.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.15.21}/src/python3_commons.egg-info/SOURCES.txt +0 -0
- {python3_commons-0.15.20 → python3_commons-0.15.21}/src/python3_commons.egg-info/dependency_links.txt +0 -0
- {python3_commons-0.15.20 → python3_commons-0.15.21}/src/python3_commons.egg-info/top_level.txt +0 -0
- {python3_commons-0.15.20 → python3_commons-0.15.21}/tests/__init__.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.15.21}/tests/integration/__init__.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.15.21}/tests/integration/test_cache.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.15.21}/tests/integration/test_osc.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.15.21}/tests/unit/__init__.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.15.21}/tests/unit/conftest.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.15.21}/tests/unit/log/__init__.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.15.21}/tests/unit/log/test_formatters.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.15.21}/tests/unit/test_async_functools.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.15.21}/tests/unit/test_audit.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.15.21}/tests/unit/test_helpers.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.15.21}/tests/unit/test_msgpack.py +0 -0
- {python3_commons-0.15.20 → python3_commons-0.15.21}/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.21
|
|
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
|
|
@@ -19,7 +19,7 @@ Requires-Dist: lxml~=6.1.0
|
|
|
19
19
|
Requires-Dist: msgpack~=1.1.2
|
|
20
20
|
Requires-Dist: msgspec==0.21.1
|
|
21
21
|
Requires-Dist: object-storage-client==0.0.20
|
|
22
|
-
Requires-Dist: pydantic-settings~=2.
|
|
22
|
+
Requires-Dist: pydantic-settings~=2.14.0
|
|
23
23
|
Requires-Dist: SQLAlchemy[asyncio]~=2.0.49
|
|
24
24
|
Requires-Dist: valkey[libvalkey]~=6.1.1
|
|
25
25
|
Requires-Dist: zeep~=4.3.2
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: python3-commons
|
|
3
|
-
Version: 0.15.
|
|
3
|
+
Version: 0.15.21
|
|
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
|
|
@@ -19,7 +19,7 @@ Requires-Dist: lxml~=6.1.0
|
|
|
19
19
|
Requires-Dist: msgpack~=1.1.2
|
|
20
20
|
Requires-Dist: msgspec==0.21.1
|
|
21
21
|
Requires-Dist: object-storage-client==0.0.20
|
|
22
|
-
Requires-Dist: pydantic-settings~=2.
|
|
22
|
+
Requires-Dist: pydantic-settings~=2.14.0
|
|
23
23
|
Requires-Dist: SQLAlchemy[asyncio]~=2.0.49
|
|
24
24
|
Requires-Dist: valkey[libvalkey]~=6.1.1
|
|
25
25
|
Requires-Dist: zeep~=4.3.2
|
|
@@ -814,7 +814,7 @@ wheels = [
|
|
|
814
814
|
|
|
815
815
|
[[package]]
|
|
816
816
|
name = "pydantic"
|
|
817
|
-
version = "2.13.
|
|
817
|
+
version = "2.13.3"
|
|
818
818
|
source = { registry = "https://pypi.org/simple" }
|
|
819
819
|
dependencies = [
|
|
820
820
|
{ name = "annotated-types" },
|
|
@@ -822,64 +822,64 @@ dependencies = [
|
|
|
822
822
|
{ name = "typing-extensions" },
|
|
823
823
|
{ name = "typing-inspection" },
|
|
824
824
|
]
|
|
825
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
825
|
+
sdist = { url = "https://files.pythonhosted.org/packages/d9/e4/40d09941a2cebcb20609b86a559817d5b9291c49dd6f8c87e5feffbe703a/pydantic-2.13.3.tar.gz", hash = "sha256:af09e9d1d09f4e7fe37145c1f577e1d61ceb9a41924bf0094a36506285d0a84d", size = 844068, upload-time = "2026-04-20T14:46:43.632Z" }
|
|
826
826
|
wheels = [
|
|
827
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
827
|
+
{ url = "https://files.pythonhosted.org/packages/f3/0a/fd7d723f8f8153418fb40cf9c940e82004fce7e987026b08a68a36dd3fe7/pydantic-2.13.3-py3-none-any.whl", hash = "sha256:6db14ac8dfc9a1e57f87ea2c0de670c251240f43cb0c30a5130e9720dc612927", size = 471981, upload-time = "2026-04-20T14:46:41.402Z" },
|
|
828
828
|
]
|
|
829
829
|
|
|
830
830
|
[[package]]
|
|
831
831
|
name = "pydantic-core"
|
|
832
|
-
version = "2.46.
|
|
832
|
+
version = "2.46.3"
|
|
833
833
|
source = { registry = "https://pypi.org/simple" }
|
|
834
834
|
dependencies = [
|
|
835
835
|
{ name = "typing-extensions" },
|
|
836
836
|
]
|
|
837
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
838
|
-
wheels = [
|
|
839
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
840
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
841
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
842
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
843
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
844
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
845
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
846
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
847
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
848
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
849
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
850
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
851
|
-
{ url = "https://files.pythonhosted.org/packages/51/
|
|
852
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
853
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
854
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
855
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
856
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
857
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
858
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
859
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
860
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
861
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
862
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
863
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
864
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
865
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
866
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
867
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
868
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
837
|
+
sdist = { url = "https://files.pythonhosted.org/packages/2a/ef/f7abb56c49382a246fd2ce9c799691e3c3e7175ec74b14d99e798bcddb1a/pydantic_core-2.46.3.tar.gz", hash = "sha256:41c178f65b8c29807239d47e6050262eb6bf84eb695e41101e62e38df4a5bc2c", size = 471412, upload-time = "2026-04-20T14:40:56.672Z" }
|
|
838
|
+
wheels = [
|
|
839
|
+
{ url = "https://files.pythonhosted.org/packages/7f/db/a7bcb4940183fda36022cd18ba8dd12f2dff40740ec7b58ce7457befa416/pydantic_core-2.46.3-cp314-cp314-macosx_10_12_x86_64.whl", hash = "sha256:afa3aa644f74e290cdede48a7b0bee37d1c35e71b05105f6b340d484af536d9b", size = 2097614, upload-time = "2026-04-20T14:44:38.374Z" },
|
|
840
|
+
{ url = "https://files.pythonhosted.org/packages/24/35/e4066358a22e3e99519db370494c7528f5a2aa1367370e80e27e20283543/pydantic_core-2.46.3-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:ced3310e51aa425f7f77da8bbbb5212616655bedbe82c70944320bc1dbe5e018", size = 1951896, upload-time = "2026-04-20T14:40:53.996Z" },
|
|
841
|
+
{ url = "https://files.pythonhosted.org/packages/87/92/37cf4049d1636996e4b888c05a501f40a43ff218983a551d57f9d5e14f0d/pydantic_core-2.46.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e29908922ce9da1a30b4da490bd1d3d82c01dcfdf864d2a74aacee674d0bfa34", size = 1979314, upload-time = "2026-04-20T14:41:49.446Z" },
|
|
842
|
+
{ url = "https://files.pythonhosted.org/packages/d8/36/9ff4d676dfbdfb2d591cf43f3d90ded01e15b1404fd101180ed2d62a2fd3/pydantic_core-2.46.3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0c9ff69140423eea8ed2d5477df3ba037f671f5e897d206d921bc9fdc39613e7", size = 2056133, upload-time = "2026-04-20T14:42:23.574Z" },
|
|
843
|
+
{ url = "https://files.pythonhosted.org/packages/bc/f0/405b442a4d7ba855b06eec8b2bf9c617d43b8432d099dfdc7bf999293495/pydantic_core-2.46.3-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b675ab0a0d5b1c8fdb81195dc5bcefea3f3c240871cdd7ff9a2de8aa50772eb2", size = 2228726, upload-time = "2026-04-20T14:44:22.816Z" },
|
|
844
|
+
{ url = "https://files.pythonhosted.org/packages/e7/f8/65cd92dd5a0bd89ba277a98ecbfaf6fc36bbd3300973c7a4b826d6ab1391/pydantic_core-2.46.3-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0087084960f209a9a4af50ecd1fb063d9ad3658c07bb81a7a53f452dacbfb2ba", size = 2301214, upload-time = "2026-04-20T14:44:48.792Z" },
|
|
845
|
+
{ url = "https://files.pythonhosted.org/packages/fd/86/ef96a4c6e79e7a2d0410826a68fbc0eccc0fd44aa733be199d5fcac3bb87/pydantic_core-2.46.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ed42e6cc8e1b0e2b9b96e2276bad70ae625d10d6d524aed0c93de974ae029f9f", size = 2099927, upload-time = "2026-04-20T14:41:40.196Z" },
|
|
846
|
+
{ url = "https://files.pythonhosted.org/packages/6d/53/269caf30e0096e0a8a8f929d1982a27b3879872cca2d917d17c2f9fdf4fe/pydantic_core-2.46.3-cp314-cp314-manylinux_2_31_riscv64.whl", hash = "sha256:f1771ce258afb3e4201e67d154edbbae712a76a6081079fe247c2f53c6322c22", size = 2128789, upload-time = "2026-04-20T14:41:15.868Z" },
|
|
847
|
+
{ url = "https://files.pythonhosted.org/packages/00/b0/1a6d9b6a587e118482910c244a1c5acf4d192604174132efd12bf0ac486f/pydantic_core-2.46.3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:a7610b6a5242a6c736d8ad47fd5fff87fcfe8f833b281b1c409c3d6835d9227f", size = 2173815, upload-time = "2026-04-20T14:44:25.152Z" },
|
|
848
|
+
{ url = "https://files.pythonhosted.org/packages/87/56/e7e00d4041a7e62b5a40815590114db3b535bf3ca0bf4dca9f16cef25246/pydantic_core-2.46.3-cp314-cp314-musllinux_1_1_aarch64.whl", hash = "sha256:ff5e7783bcc5476e1db448bf268f11cb257b1c276d3e89f00b5727be86dd0127", size = 2181608, upload-time = "2026-04-20T14:41:28.933Z" },
|
|
849
|
+
{ url = "https://files.pythonhosted.org/packages/e8/22/4bd23c3d41f7c185d60808a1de83c76cf5aeabf792f6c636a55c3b1ec7f9/pydantic_core-2.46.3-cp314-cp314-musllinux_1_1_armv7l.whl", hash = "sha256:9d2e32edcc143bc01e95300671915d9ca052d4f745aa0a49c48d4803f8a85f2c", size = 2326968, upload-time = "2026-04-20T14:42:03.962Z" },
|
|
850
|
+
{ url = "https://files.pythonhosted.org/packages/24/ac/66cd45129e3915e5ade3b292cb3bc7fd537f58f8f8dbdaba6170f7cabb74/pydantic_core-2.46.3-cp314-cp314-musllinux_1_1_x86_64.whl", hash = "sha256:6e42d83d1c6b87fa56b521479cff237e626a292f3b31b6345c15a99121b454c1", size = 2369842, upload-time = "2026-04-20T14:41:35.52Z" },
|
|
851
|
+
{ url = "https://files.pythonhosted.org/packages/a2/51/dd4248abb84113615473aa20d5545b7c4cd73c8644003b5259686f93996c/pydantic_core-2.46.3-cp314-cp314-win32.whl", hash = "sha256:07bc6d2a28c3adb4f7c6ae46aa4f2d2929af127f587ed44057af50bf1ce0f505", size = 1959661, upload-time = "2026-04-20T14:41:00.042Z" },
|
|
852
|
+
{ url = "https://files.pythonhosted.org/packages/20/eb/59980e5f1ae54a3b86372bd9f0fa373ea2d402e8cdcd3459334430f91e91/pydantic_core-2.46.3-cp314-cp314-win_amd64.whl", hash = "sha256:8940562319bc621da30714617e6a7eaa6b98c84e8c685bcdc02d7ed5e7c7c44e", size = 2071686, upload-time = "2026-04-20T14:43:16.471Z" },
|
|
853
|
+
{ url = "https://files.pythonhosted.org/packages/8c/db/1cf77e5247047dfee34bc01fa9bca134854f528c8eb053e144298893d370/pydantic_core-2.46.3-cp314-cp314-win_arm64.whl", hash = "sha256:5dcbbcf4d22210ced8f837c96db941bdb078f419543472aca5d9a0bb7cddc7df", size = 2026907, upload-time = "2026-04-20T14:43:31.732Z" },
|
|
854
|
+
{ url = "https://files.pythonhosted.org/packages/57/c0/b3df9f6a543276eadba0a48487b082ca1f201745329d97dbfa287034a230/pydantic_core-2.46.3-cp314-cp314t-macosx_10_12_x86_64.whl", hash = "sha256:d0fe3dce1e836e418f912c1ad91c73357d03e556a4d286f441bf34fed2dbeecf", size = 2095047, upload-time = "2026-04-20T14:42:37.982Z" },
|
|
855
|
+
{ url = "https://files.pythonhosted.org/packages/66/57/886a938073b97556c168fd99e1a7305bb363cd30a6d2c76086bf0587b32a/pydantic_core-2.46.3-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:9ce92e58abc722dac1bf835a6798a60b294e48eb0e625ec9fd994b932ac5feee", size = 1934329, upload-time = "2026-04-20T14:43:49.655Z" },
|
|
856
|
+
{ url = "https://files.pythonhosted.org/packages/0b/7c/b42eaa5c34b13b07ecb51da21761297a9b8eb43044c864a035999998f328/pydantic_core-2.46.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a03e6467f0f5ab796a486146d1b887b2dc5e5f9b3288898c1b1c3ad974e53e4a", size = 1974847, upload-time = "2026-04-20T14:42:10.737Z" },
|
|
857
|
+
{ url = "https://files.pythonhosted.org/packages/e6/9b/92b42db6543e7de4f99ae977101a2967b63122d4b6cf7773812da2d7d5b5/pydantic_core-2.46.3-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:2798b6ba041b9d70acfb9071a2ea13c8456dd1e6a5555798e41ba7b0790e329c", size = 2041742, upload-time = "2026-04-20T14:40:44.262Z" },
|
|
858
|
+
{ url = "https://files.pythonhosted.org/packages/0f/19/46fbe1efabb5aa2834b43b9454e70f9a83ad9c338c1291e48bdc4fecf167/pydantic_core-2.46.3-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9be3e221bdc6d69abf294dcf7aff6af19c31a5cdcc8f0aa3b14be29df4bd03b1", size = 2236235, upload-time = "2026-04-20T14:41:27.307Z" },
|
|
859
|
+
{ url = "https://files.pythonhosted.org/packages/77/da/b3f95bc009ad60ec53120f5d16c6faa8cabdbe8a20d83849a1f2b8728148/pydantic_core-2.46.3-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f13936129ce841f2a5ddf6f126fea3c43cd128807b5a59588c37cf10178c2e64", size = 2282633, upload-time = "2026-04-20T14:44:33.271Z" },
|
|
860
|
+
{ url = "https://files.pythonhosted.org/packages/cc/6e/401336117722e28f32fb8220df676769d28ebdf08f2f4469646d404c43a3/pydantic_core-2.46.3-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:28b5f2ef03416facccb1c6ef744c69793175fd27e44ef15669201601cf423acb", size = 2109679, upload-time = "2026-04-20T14:44:41.065Z" },
|
|
861
|
+
{ url = "https://files.pythonhosted.org/packages/fc/53/b289f9bc8756a32fe718c46f55afaeaf8d489ee18d1a1e7be1db73f42cc4/pydantic_core-2.46.3-cp314-cp314t-manylinux_2_31_riscv64.whl", hash = "sha256:830d1247d77ad23852314f069e9d7ddafeec5f684baf9d7e7065ed46a049c4e6", size = 2108342, upload-time = "2026-04-20T14:42:50.144Z" },
|
|
862
|
+
{ url = "https://files.pythonhosted.org/packages/10/5b/8292fc7c1f9111f1b2b7c1b0dcf1179edcd014fc3ea4517499f50b829d71/pydantic_core-2.46.3-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d0793c90c1a3c74966e7975eaef3ed30ebdff3260a0f815a62a22adc17e4c01c", size = 2157208, upload-time = "2026-04-20T14:42:08.133Z" },
|
|
863
|
+
{ url = "https://files.pythonhosted.org/packages/2b/9e/f80044e9ec07580f057a89fc131f78dda7a58751ddf52bbe05eaf31db50f/pydantic_core-2.46.3-cp314-cp314t-musllinux_1_1_aarch64.whl", hash = "sha256:d2d0aead851b66f5245ec0c4fb2612ef457f8bbafefdf65a2bf9d6bac6140f47", size = 2167237, upload-time = "2026-04-20T14:42:25.412Z" },
|
|
864
|
+
{ url = "https://files.pythonhosted.org/packages/f8/84/6781a1b037f3b96be9227edbd1101f6d3946746056231bf4ac48cdff1a8d/pydantic_core-2.46.3-cp314-cp314t-musllinux_1_1_armv7l.whl", hash = "sha256:2f40e4246676beb31c5ce77c38a55ca4e465c6b38d11ea1bd935420568e0b1ab", size = 2312540, upload-time = "2026-04-20T14:40:40.313Z" },
|
|
865
|
+
{ url = "https://files.pythonhosted.org/packages/3e/db/19c0839feeb728e7df03255581f198dfdf1c2aeb1e174a8420b63c5252e5/pydantic_core-2.46.3-cp314-cp314t-musllinux_1_1_x86_64.whl", hash = "sha256:cf489cf8986c543939aeee17a09c04d6ffb43bfef8ca16fcbcc5cfdcbed24dba", size = 2369556, upload-time = "2026-04-20T14:41:09.427Z" },
|
|
866
|
+
{ url = "https://files.pythonhosted.org/packages/e0/15/3228774cb7cd45f5f721ddf1b2242747f4eb834d0c491f0c02d606f09fed/pydantic_core-2.46.3-cp314-cp314t-win32.whl", hash = "sha256:ffe0883b56cfc05798bf994164d2b2ff03efe2d22022a2bb080f3b626176dd56", size = 1949756, upload-time = "2026-04-20T14:41:25.717Z" },
|
|
867
|
+
{ url = "https://files.pythonhosted.org/packages/b8/2a/c79cf53fd91e5a87e30d481809f52f9a60dd221e39de66455cf04deaad37/pydantic_core-2.46.3-cp314-cp314t-win_amd64.whl", hash = "sha256:706d9d0ce9cf4593d07270d8e9f53b161f90c57d315aeec4fb4fd7a8b10240d8", size = 2051305, upload-time = "2026-04-20T14:43:18.627Z" },
|
|
868
|
+
{ url = "https://files.pythonhosted.org/packages/0b/db/d8182a7f1d9343a032265aae186eb063fe26ca4c40f256b21e8da4498e89/pydantic_core-2.46.3-cp314-cp314t-win_arm64.whl", hash = "sha256:77706aeb41df6a76568434701e0917da10692da28cb69d5fb6919ce5fdb07374", size = 2026310, upload-time = "2026-04-20T14:41:01.778Z" },
|
|
869
869
|
]
|
|
870
870
|
|
|
871
871
|
[[package]]
|
|
872
872
|
name = "pydantic-settings"
|
|
873
|
-
version = "2.
|
|
873
|
+
version = "2.14.0"
|
|
874
874
|
source = { registry = "https://pypi.org/simple" }
|
|
875
875
|
dependencies = [
|
|
876
876
|
{ name = "pydantic" },
|
|
877
877
|
{ name = "python-dotenv" },
|
|
878
878
|
{ name = "typing-inspection" },
|
|
879
879
|
]
|
|
880
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
880
|
+
sdist = { url = "https://files.pythonhosted.org/packages/42/98/c8345dccdc31de4228c039a98f6467a941e39558da41c1744fbe29fa5666/pydantic_settings-2.14.0.tar.gz", hash = "sha256:24285fd4b0e0c06507dd9fdfd331ee23794305352aaec8fc4eb92d4047aeb67d", size = 235709, upload-time = "2026-04-20T13:37:40.293Z" }
|
|
881
881
|
wheels = [
|
|
882
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
882
|
+
{ url = "https://files.pythonhosted.org/packages/01/dd/bebff3040138f00ae8a102d426b27349b9a49acc310fcae7f92112d867e3/pydantic_settings-2.14.0-py3-none-any.whl", hash = "sha256:fc8d5d692eb7092e43c8647c1c35a3ecd00e040fcf02ed86f4cb5458ca62182e", size = 60940, upload-time = "2026-04-20T13:37:38.586Z" },
|
|
883
883
|
]
|
|
884
884
|
|
|
885
885
|
[[package]]
|
|
@@ -1031,7 +1031,7 @@ requires-dist = [
|
|
|
1031
1031
|
{ name = "msgpack", specifier = "~=1.1.2" },
|
|
1032
1032
|
{ name = "msgspec", specifier = "==0.21.1" },
|
|
1033
1033
|
{ name = "object-storage-client", specifier = "==0.0.20" },
|
|
1034
|
-
{ name = "pydantic-settings", specifier = "~=2.
|
|
1034
|
+
{ name = "pydantic-settings", specifier = "~=2.14.0" },
|
|
1035
1035
|
{ name = "sqlalchemy", extras = ["asyncio"], specifier = "~=2.0.49" },
|
|
1036
1036
|
{ name = "valkey", extras = ["libvalkey"], specifier = "~=6.1.1" },
|
|
1037
1037
|
{ name = "zeep", specifier = "~=4.3.2" },
|
|
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.20 → python3_commons-0.15.21}/.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
|
|
File without changes
|
{python3_commons-0.15.20 → python3_commons-0.15.21}/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.20 → python3_commons-0.15.21}/src/python3_commons/serializers/__init__.py
RENAMED
|
File without changes
|
{python3_commons-0.15.20 → python3_commons-0.15.21}/src/python3_commons/serializers/common.py
RENAMED
|
File without changes
|
|
File without changes
|
{python3_commons-0.15.20 → python3_commons-0.15.21}/src/python3_commons/serializers/msgpack.py
RENAMED
|
File without changes
|
{python3_commons-0.15.20 → python3_commons-0.15.21}/src/python3_commons/serializers/msgspec.py
RENAMED
|
File without changes
|
{python3_commons-0.15.20 → python3_commons-0.15.21}/src/python3_commons.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{python3_commons-0.15.20 → python3_commons-0.15.21}/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
|