python3-commons 0.23.2__tar.gz → 0.23.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {python3_commons-0.23.2 → python3_commons-0.23.3}/PKG-INFO +7 -7
- {python3_commons-0.23.2 → python3_commons-0.23.3}/pyproject.toml +7 -7
- {python3_commons-0.23.2 → python3_commons-0.23.3}/src/python3_commons.egg-info/PKG-INFO +7 -7
- {python3_commons-0.23.2 → python3_commons-0.23.3}/src/python3_commons.egg-info/requires.txt +6 -6
- python3_commons-0.23.3/src/python3_commons.egg-info/scm_version.json +8 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/uv.lock +165 -165
- python3_commons-0.23.2/src/python3_commons.egg-info/scm_version.json +0 -8
- {python3_commons-0.23.2 → python3_commons-0.23.3}/.coveragerc +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/.devcontainer/Dockerfile +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/.devcontainer/devcontainer.json +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/.devcontainer/docker-compose.yml +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/.env_template +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/.github/workflows/checks.yml +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/.github/workflows/python-publish.yaml +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/.github/workflows/release-on-tag-push.yml +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/.gitignore +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/.pre-commit-config.yaml +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/.python-version +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/AUTHORS.rst +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/CHANGELOG.rst +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/LICENSE +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/README.md +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/README.rst +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/docs/Makefile +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/docs/_static/.gitignore +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/docs/authors.rst +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/docs/changelog.rst +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/docs/conf.py +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/docs/index.rst +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/docs/license.rst +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/setup.cfg +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/src/python3_commons/__init__.py +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/src/python3_commons/api_client.py +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/src/python3_commons/async_functools.py +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/src/python3_commons/audit.py +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/src/python3_commons/auth.py +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/src/python3_commons/cache.py +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/src/python3_commons/conf.py +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/src/python3_commons/db/__init__.py +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/src/python3_commons/db/helpers.py +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/src/python3_commons/db/models/__init__.py +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/src/python3_commons/db/models/auth.py +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/src/python3_commons/db/models/common.py +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/src/python3_commons/db/models/rbac.py +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/src/python3_commons/db/models/users.py +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/src/python3_commons/exceptions.py +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/src/python3_commons/fs.py +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/src/python3_commons/generators.py +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/src/python3_commons/helpers.py +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/src/python3_commons/log/__init__.py +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/src/python3_commons/log/filters.py +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/src/python3_commons/log/formatters.py +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/src/python3_commons/object_storage.py +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/src/python3_commons/permissions.py +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/src/python3_commons/serializers/__init__.py +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/src/python3_commons/serializers/common.py +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/src/python3_commons/serializers/json.py +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/src/python3_commons/serializers/msgpack.py +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/src/python3_commons/serializers/msgspec.py +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/src/python3_commons/soap_client.py +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/src/python3_commons.egg-info/SOURCES.txt +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/src/python3_commons.egg-info/dependency_links.txt +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/src/python3_commons.egg-info/scm_file_list.json +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/src/python3_commons.egg-info/top_level.txt +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/tests/__init__.py +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/tests/integration/__init__.py +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/tests/integration/conftest.py +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/tests/integration/test_auth.py +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/tests/integration/test_cache.py +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/tests/integration/test_osc.py +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/tests/unit/__init__.py +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/tests/unit/conftest.py +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/tests/unit/db/__init__.py +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/tests/unit/db/test_async_session_manager.py +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/tests/unit/log/__init__.py +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/tests/unit/log/test_formatters.py +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/tests/unit/test_async_functools.py +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/tests/unit/test_audit.py +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/tests/unit/test_auth.py +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/tests/unit/test_helpers.py +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/tests/unit/test_msgpack.py +0 -0
- {python3_commons-0.23.2 → python3_commons-0.23.3}/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.23.
|
|
3
|
+
Version: 0.23.3
|
|
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,15 +19,15 @@ Provides-Extra: all
|
|
|
19
19
|
Requires-Dist: python3_commons[api-client,audit,authn,authz,cache,database,object-storage,soap-client]; extra == "all"
|
|
20
20
|
Provides-Extra: api-client
|
|
21
21
|
Requires-Dist: aiohttp[speedups]<3.15.0,>=3.14.1; extra == "api-client"
|
|
22
|
-
Requires-Dist: certifi~=2026.
|
|
22
|
+
Requires-Dist: certifi~=2026.7.22; extra == "api-client"
|
|
23
23
|
Requires-Dist: python3_commons[audit,object-storage]; extra == "api-client"
|
|
24
24
|
Provides-Extra: audit
|
|
25
25
|
Requires-Dist: lxml~=6.1.1; extra == "audit"
|
|
26
26
|
Requires-Dist: zeep[async]~=4.3.3; extra == "audit"
|
|
27
27
|
Requires-Dist: python3_commons[object-storage]; extra == "audit"
|
|
28
28
|
Provides-Extra: authn
|
|
29
|
-
Requires-Dist: aiohttp[speedups]<3.15.0,>=3.14.
|
|
30
|
-
Requires-Dist: certifi~=2026.
|
|
29
|
+
Requires-Dist: aiohttp[speedups]<3.15.0,>=3.14.3; extra == "authn"
|
|
30
|
+
Requires-Dist: certifi~=2026.7.22; extra == "authn"
|
|
31
31
|
Requires-Dist: python3_commons[api-client]; extra == "authn"
|
|
32
32
|
Provides-Extra: authz
|
|
33
33
|
Requires-Dist: python3_commons[database]; extra == "authz"
|
|
@@ -39,10 +39,10 @@ Requires-Dist: asyncpg~=0.31.0; extra == "database"
|
|
|
39
39
|
Requires-Dist: SQLAlchemy[asyncio]~=2.0.51; extra == "database"
|
|
40
40
|
Provides-Extra: object-storage
|
|
41
41
|
Requires-Dist: aiobotocore~=3.7.0; extra == "object-storage"
|
|
42
|
-
Requires-Dist: object-storage-client~=0.1.
|
|
42
|
+
Requires-Dist: object-storage-client~=0.1.1; extra == "object-storage"
|
|
43
43
|
Provides-Extra: soap-client
|
|
44
|
-
Requires-Dist: aiohttp[speedups]<3.15.0,>=3.14.
|
|
45
|
-
Requires-Dist: certifi~=2026.
|
|
44
|
+
Requires-Dist: aiohttp[speedups]<3.15.0,>=3.14.3; extra == "soap-client"
|
|
45
|
+
Requires-Dist: certifi~=2026.7.22; extra == "soap-client"
|
|
46
46
|
Requires-Dist: lxml~=6.1.1; extra == "soap-client"
|
|
47
47
|
Requires-Dist: requests~=2.34.2; extra == "soap-client"
|
|
48
48
|
Requires-Dist: zeep[async]~=4.3.3; extra == "soap-client"
|
|
@@ -29,7 +29,7 @@ all = [
|
|
|
29
29
|
]
|
|
30
30
|
api-client = [
|
|
31
31
|
"aiohttp[speedups]>=3.14.1,<3.15.0",
|
|
32
|
-
"certifi~=2026.
|
|
32
|
+
"certifi~=2026.7.22",
|
|
33
33
|
"python3_commons[audit,object-storage]"
|
|
34
34
|
]
|
|
35
35
|
audit = [
|
|
@@ -38,8 +38,8 @@ audit = [
|
|
|
38
38
|
"python3_commons[object-storage]"
|
|
39
39
|
]
|
|
40
40
|
authn = [
|
|
41
|
-
"aiohttp[speedups]>=3.14.
|
|
42
|
-
"certifi~=2026.
|
|
41
|
+
"aiohttp[speedups]>=3.14.3,<3.15.0",
|
|
42
|
+
"certifi~=2026.7.22",
|
|
43
43
|
"python3_commons[api-client]"
|
|
44
44
|
]
|
|
45
45
|
authz = [
|
|
@@ -51,15 +51,15 @@ cache = [
|
|
|
51
51
|
]
|
|
52
52
|
database = [
|
|
53
53
|
"asyncpg~=0.31.0",
|
|
54
|
-
"SQLAlchemy[asyncio]~=2.0.51"
|
|
54
|
+
"SQLAlchemy[asyncio]~=2.0.51",
|
|
55
55
|
]
|
|
56
56
|
object-storage = [
|
|
57
57
|
"aiobotocore~=3.7.0",
|
|
58
|
-
"object-storage-client~=0.1.
|
|
58
|
+
"object-storage-client~=0.1.1",
|
|
59
59
|
]
|
|
60
60
|
soap-client = [
|
|
61
|
-
"aiohttp[speedups]>=3.14.
|
|
62
|
-
"certifi~=2026.
|
|
61
|
+
"aiohttp[speedups]>=3.14.3,<3.15.0",
|
|
62
|
+
"certifi~=2026.7.22",
|
|
63
63
|
"lxml~=6.1.1",
|
|
64
64
|
"requests~=2.34.2",
|
|
65
65
|
"zeep[async]~=4.3.3",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: python3-commons
|
|
3
|
-
Version: 0.23.
|
|
3
|
+
Version: 0.23.3
|
|
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,15 +19,15 @@ Provides-Extra: all
|
|
|
19
19
|
Requires-Dist: python3_commons[api-client,audit,authn,authz,cache,database,object-storage,soap-client]; extra == "all"
|
|
20
20
|
Provides-Extra: api-client
|
|
21
21
|
Requires-Dist: aiohttp[speedups]<3.15.0,>=3.14.1; extra == "api-client"
|
|
22
|
-
Requires-Dist: certifi~=2026.
|
|
22
|
+
Requires-Dist: certifi~=2026.7.22; extra == "api-client"
|
|
23
23
|
Requires-Dist: python3_commons[audit,object-storage]; extra == "api-client"
|
|
24
24
|
Provides-Extra: audit
|
|
25
25
|
Requires-Dist: lxml~=6.1.1; extra == "audit"
|
|
26
26
|
Requires-Dist: zeep[async]~=4.3.3; extra == "audit"
|
|
27
27
|
Requires-Dist: python3_commons[object-storage]; extra == "audit"
|
|
28
28
|
Provides-Extra: authn
|
|
29
|
-
Requires-Dist: aiohttp[speedups]<3.15.0,>=3.14.
|
|
30
|
-
Requires-Dist: certifi~=2026.
|
|
29
|
+
Requires-Dist: aiohttp[speedups]<3.15.0,>=3.14.3; extra == "authn"
|
|
30
|
+
Requires-Dist: certifi~=2026.7.22; extra == "authn"
|
|
31
31
|
Requires-Dist: python3_commons[api-client]; extra == "authn"
|
|
32
32
|
Provides-Extra: authz
|
|
33
33
|
Requires-Dist: python3_commons[database]; extra == "authz"
|
|
@@ -39,10 +39,10 @@ Requires-Dist: asyncpg~=0.31.0; extra == "database"
|
|
|
39
39
|
Requires-Dist: SQLAlchemy[asyncio]~=2.0.51; extra == "database"
|
|
40
40
|
Provides-Extra: object-storage
|
|
41
41
|
Requires-Dist: aiobotocore~=3.7.0; extra == "object-storage"
|
|
42
|
-
Requires-Dist: object-storage-client~=0.1.
|
|
42
|
+
Requires-Dist: object-storage-client~=0.1.1; extra == "object-storage"
|
|
43
43
|
Provides-Extra: soap-client
|
|
44
|
-
Requires-Dist: aiohttp[speedups]<3.15.0,>=3.14.
|
|
45
|
-
Requires-Dist: certifi~=2026.
|
|
44
|
+
Requires-Dist: aiohttp[speedups]<3.15.0,>=3.14.3; extra == "soap-client"
|
|
45
|
+
Requires-Dist: certifi~=2026.7.22; extra == "soap-client"
|
|
46
46
|
Requires-Dist: lxml~=6.1.1; extra == "soap-client"
|
|
47
47
|
Requires-Dist: requests~=2.34.2; extra == "soap-client"
|
|
48
48
|
Requires-Dist: zeep[async]~=4.3.3; extra == "soap-client"
|
|
@@ -7,7 +7,7 @@ python3_commons[api-client,audit,authn,authz,cache,database,object-storage,soap-
|
|
|
7
7
|
|
|
8
8
|
[api-client]
|
|
9
9
|
aiohttp[speedups]<3.15.0,>=3.14.1
|
|
10
|
-
certifi~=2026.
|
|
10
|
+
certifi~=2026.7.22
|
|
11
11
|
python3_commons[audit,object-storage]
|
|
12
12
|
|
|
13
13
|
[audit]
|
|
@@ -16,8 +16,8 @@ zeep[async]~=4.3.3
|
|
|
16
16
|
python3_commons[object-storage]
|
|
17
17
|
|
|
18
18
|
[authn]
|
|
19
|
-
aiohttp[speedups]<3.15.0,>=3.14.
|
|
20
|
-
certifi~=2026.
|
|
19
|
+
aiohttp[speedups]<3.15.0,>=3.14.3
|
|
20
|
+
certifi~=2026.7.22
|
|
21
21
|
python3_commons[api-client]
|
|
22
22
|
|
|
23
23
|
[authz]
|
|
@@ -33,11 +33,11 @@ SQLAlchemy[asyncio]~=2.0.51
|
|
|
33
33
|
|
|
34
34
|
[object-storage]
|
|
35
35
|
aiobotocore~=3.7.0
|
|
36
|
-
object-storage-client~=0.1.
|
|
36
|
+
object-storage-client~=0.1.1
|
|
37
37
|
|
|
38
38
|
[soap-client]
|
|
39
|
-
aiohttp[speedups]<3.15.0,>=3.14.
|
|
40
|
-
certifi~=2026.
|
|
39
|
+
aiohttp[speedups]<3.15.0,>=3.14.3
|
|
40
|
+
certifi~=2026.7.22
|
|
41
41
|
lxml~=6.1.1
|
|
42
42
|
requests~=2.34.2
|
|
43
43
|
zeep[async]~=4.3.3
|