python3-commons 0.20.14__tar.gz → 0.21.0__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.20.14 → python3_commons-0.21.0}/.pre-commit-config.yaml +1 -1
- {python3_commons-0.20.14/src/python3_commons.egg-info → python3_commons-0.21.0}/PKG-INFO +4 -4
- {python3_commons-0.20.14 → python3_commons-0.21.0}/pyproject.toml +3 -3
- {python3_commons-0.20.14 → python3_commons-0.21.0}/src/python3_commons/auth.py +3 -3
- {python3_commons-0.20.14 → python3_commons-0.21.0/src/python3_commons.egg-info}/PKG-INFO +4 -4
- {python3_commons-0.20.14 → python3_commons-0.21.0}/src/python3_commons.egg-info/requires.txt +3 -3
- {python3_commons-0.20.14 → python3_commons-0.21.0}/uv.lock +73 -66
- {python3_commons-0.20.14 → python3_commons-0.21.0}/.coveragerc +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/.devcontainer/Dockerfile +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/.devcontainer/devcontainer.json +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/.devcontainer/docker-compose.yml +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/.env_template +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/.github/workflows/checks.yml +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/.github/workflows/python-publish.yaml +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/.github/workflows/release-on-tag-push.yml +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/.gitignore +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/.python-version +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/AUTHORS.rst +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/CHANGELOG.rst +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/LICENSE +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/README.md +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/README.rst +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/docs/Makefile +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/docs/_static/.gitignore +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/docs/authors.rst +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/docs/changelog.rst +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/docs/conf.py +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/docs/index.rst +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/docs/license.rst +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/setup.cfg +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/src/python3_commons/__init__.py +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/src/python3_commons/api_client.py +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/src/python3_commons/async_functools.py +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/src/python3_commons/audit.py +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/src/python3_commons/cache.py +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/src/python3_commons/conf.py +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/src/python3_commons/db/__init__.py +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/src/python3_commons/db/helpers.py +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/src/python3_commons/db/models/__init__.py +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/src/python3_commons/db/models/auth.py +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/src/python3_commons/db/models/common.py +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/src/python3_commons/db/models/rbac.py +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/src/python3_commons/db/models/users.py +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/src/python3_commons/exceptions.py +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/src/python3_commons/fs.py +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/src/python3_commons/generators.py +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/src/python3_commons/helpers.py +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/src/python3_commons/log/__init__.py +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/src/python3_commons/log/filters.py +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/src/python3_commons/log/formatters.py +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/src/python3_commons/object_storage.py +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/src/python3_commons/permissions.py +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/src/python3_commons/serializers/__init__.py +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/src/python3_commons/serializers/common.py +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/src/python3_commons/serializers/json.py +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/src/python3_commons/serializers/msgpack.py +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/src/python3_commons/serializers/msgspec.py +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/src/python3_commons/soap_client.py +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/src/python3_commons.egg-info/SOURCES.txt +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/src/python3_commons.egg-info/dependency_links.txt +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/src/python3_commons.egg-info/top_level.txt +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/tests/__init__.py +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/tests/integration/__init__.py +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/tests/integration/conftest.py +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/tests/integration/test_auth.py +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/tests/integration/test_cache.py +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/tests/integration/test_osc.py +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/tests/unit/__init__.py +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/tests/unit/conftest.py +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/tests/unit/db/__init__.py +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/tests/unit/db/test_async_session_manager.py +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/tests/unit/log/__init__.py +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/tests/unit/log/test_formatters.py +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/tests/unit/test_async_functools.py +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/tests/unit/test_audit.py +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/tests/unit/test_helpers.py +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/tests/unit/test_msgpack.py +0 -0
- {python3_commons-0.20.14 → python3_commons-0.21.0}/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.
|
|
3
|
+
Version: 0.21.0
|
|
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: pydantic-settings~=2.14.1
|
|
|
18
18
|
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
|
-
Requires-Dist: aiohttp[speedups]<3.15.0,>=3.
|
|
21
|
+
Requires-Dist: aiohttp[speedups]<3.15.0,>=3.14.0; extra == "api-client"
|
|
22
22
|
Requires-Dist: certifi~=2026.5.20; extra == "api-client"
|
|
23
23
|
Requires-Dist: python3_commons[audit,object-storage]; extra == "api-client"
|
|
24
24
|
Provides-Extra: audit
|
|
@@ -26,7 +26,7 @@ Requires-Dist: lxml~=6.1.1; extra == "audit"
|
|
|
26
26
|
Requires-Dist: zeep[async]~=4.3.2; 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.
|
|
29
|
+
Requires-Dist: aiohttp[speedups]<3.15.0,>=3.14.0; extra == "authn"
|
|
30
30
|
Requires-Dist: certifi~=2026.5.20; extra == "authn"
|
|
31
31
|
Requires-Dist: python3_commons[api-client]; extra == "authn"
|
|
32
32
|
Provides-Extra: authz
|
|
@@ -41,7 +41,7 @@ Provides-Extra: object-storage
|
|
|
41
41
|
Requires-Dist: aiobotocore~=3.7.0; extra == "object-storage"
|
|
42
42
|
Requires-Dist: object-storage-client~=0.0.34; extra == "object-storage"
|
|
43
43
|
Provides-Extra: soap-client
|
|
44
|
-
Requires-Dist: aiohttp[speedups]<3.15.0,>=3.
|
|
44
|
+
Requires-Dist: aiohttp[speedups]<3.15.0,>=3.14.0; extra == "soap-client"
|
|
45
45
|
Requires-Dist: certifi~=2026.5.20; 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"
|
|
@@ -28,7 +28,7 @@ all = [
|
|
|
28
28
|
"python3_commons[api-client,audit,authn,authz,cache,database,object-storage,soap-client]"
|
|
29
29
|
]
|
|
30
30
|
api-client = [
|
|
31
|
-
"aiohttp[speedups]>=3.
|
|
31
|
+
"aiohttp[speedups]>=3.14.0,<3.15.0",
|
|
32
32
|
"certifi~=2026.5.20",
|
|
33
33
|
"python3_commons[audit,object-storage]"
|
|
34
34
|
]
|
|
@@ -38,7 +38,7 @@ audit = [
|
|
|
38
38
|
"python3_commons[object-storage]"
|
|
39
39
|
]
|
|
40
40
|
authn = [
|
|
41
|
-
"aiohttp[speedups]>=3.
|
|
41
|
+
"aiohttp[speedups]>=3.14.0,<3.15.0",
|
|
42
42
|
"certifi~=2026.5.20",
|
|
43
43
|
"python3_commons[api-client]"
|
|
44
44
|
]
|
|
@@ -58,7 +58,7 @@ object-storage = [
|
|
|
58
58
|
"object-storage-client~=0.0.34"
|
|
59
59
|
]
|
|
60
60
|
soap-client = [
|
|
61
|
-
"aiohttp[speedups]>=3.
|
|
61
|
+
"aiohttp[speedups]>=3.14.0,<3.15.0",
|
|
62
62
|
"certifi~=2026.5.20",
|
|
63
63
|
"lxml~=6.1.1",
|
|
64
64
|
"requests~=2.34.2",
|
|
@@ -54,13 +54,13 @@ T = TypeVar('T', bound=TokenData)
|
|
|
54
54
|
|
|
55
55
|
class OIDCTokenResponse(msgspec.Struct):
|
|
56
56
|
access_token: str
|
|
57
|
-
token_type: str
|
|
58
57
|
expires_in: int
|
|
59
|
-
refresh_token: str
|
|
60
|
-
scope: str
|
|
61
58
|
id_token: str
|
|
59
|
+
token_type: str
|
|
62
60
|
error: str | None = None
|
|
63
61
|
error_description: str | None = None
|
|
62
|
+
refresh_token: str | None = None
|
|
63
|
+
scope: str | None = None
|
|
64
64
|
|
|
65
65
|
|
|
66
66
|
class OIDCError(Exception):
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: python3-commons
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.21.0
|
|
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: pydantic-settings~=2.14.1
|
|
|
18
18
|
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
|
-
Requires-Dist: aiohttp[speedups]<3.15.0,>=3.
|
|
21
|
+
Requires-Dist: aiohttp[speedups]<3.15.0,>=3.14.0; extra == "api-client"
|
|
22
22
|
Requires-Dist: certifi~=2026.5.20; extra == "api-client"
|
|
23
23
|
Requires-Dist: python3_commons[audit,object-storage]; extra == "api-client"
|
|
24
24
|
Provides-Extra: audit
|
|
@@ -26,7 +26,7 @@ Requires-Dist: lxml~=6.1.1; extra == "audit"
|
|
|
26
26
|
Requires-Dist: zeep[async]~=4.3.2; 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.
|
|
29
|
+
Requires-Dist: aiohttp[speedups]<3.15.0,>=3.14.0; extra == "authn"
|
|
30
30
|
Requires-Dist: certifi~=2026.5.20; extra == "authn"
|
|
31
31
|
Requires-Dist: python3_commons[api-client]; extra == "authn"
|
|
32
32
|
Provides-Extra: authz
|
|
@@ -41,7 +41,7 @@ Provides-Extra: object-storage
|
|
|
41
41
|
Requires-Dist: aiobotocore~=3.7.0; extra == "object-storage"
|
|
42
42
|
Requires-Dist: object-storage-client~=0.0.34; extra == "object-storage"
|
|
43
43
|
Provides-Extra: soap-client
|
|
44
|
-
Requires-Dist: aiohttp[speedups]<3.15.0,>=3.
|
|
44
|
+
Requires-Dist: aiohttp[speedups]<3.15.0,>=3.14.0; extra == "soap-client"
|
|
45
45
|
Requires-Dist: certifi~=2026.5.20; 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"
|
{python3_commons-0.20.14 → python3_commons-0.21.0}/src/python3_commons.egg-info/requires.txt
RENAMED
|
@@ -6,7 +6,7 @@ pydantic-settings~=2.14.1
|
|
|
6
6
|
python3_commons[api-client,audit,authn,authz,cache,database,object-storage,soap-client]
|
|
7
7
|
|
|
8
8
|
[api-client]
|
|
9
|
-
aiohttp[speedups]<3.15.0,>=3.
|
|
9
|
+
aiohttp[speedups]<3.15.0,>=3.14.0
|
|
10
10
|
certifi~=2026.5.20
|
|
11
11
|
python3_commons[audit,object-storage]
|
|
12
12
|
|
|
@@ -16,7 +16,7 @@ zeep[async]~=4.3.2
|
|
|
16
16
|
python3_commons[object-storage]
|
|
17
17
|
|
|
18
18
|
[authn]
|
|
19
|
-
aiohttp[speedups]<3.15.0,>=3.
|
|
19
|
+
aiohttp[speedups]<3.15.0,>=3.14.0
|
|
20
20
|
certifi~=2026.5.20
|
|
21
21
|
python3_commons[api-client]
|
|
22
22
|
|
|
@@ -36,7 +36,7 @@ aiobotocore~=3.7.0
|
|
|
36
36
|
object-storage-client~=0.0.34
|
|
37
37
|
|
|
38
38
|
[soap-client]
|
|
39
|
-
aiohttp[speedups]<3.15.0,>=3.
|
|
39
|
+
aiohttp[speedups]<3.15.0,>=3.14.0
|
|
40
40
|
certifi~=2026.5.20
|
|
41
41
|
lxml~=6.1.1
|
|
42
42
|
requests~=2.34.2
|
|
@@ -43,7 +43,7 @@ wheels = [
|
|
|
43
43
|
|
|
44
44
|
[[package]]
|
|
45
45
|
name = "aiohttp"
|
|
46
|
-
version = "3.
|
|
46
|
+
version = "3.14.0"
|
|
47
47
|
source = { registry = "https://pypi.org/simple" }
|
|
48
48
|
dependencies = [
|
|
49
49
|
{ name = "aiohappyeyeballs" },
|
|
@@ -54,48 +54,55 @@ dependencies = [
|
|
|
54
54
|
{ name = "propcache" },
|
|
55
55
|
{ name = "yarl" },
|
|
56
56
|
]
|
|
57
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
58
|
-
wheels = [
|
|
59
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
60
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
61
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
62
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
63
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
64
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
65
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
66
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
67
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
68
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
69
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
70
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
71
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
72
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
73
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
74
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
75
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
76
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
77
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
78
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
79
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
80
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
81
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
82
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
83
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
84
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
85
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
86
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
87
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
88
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
89
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
90
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
91
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
92
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
57
|
+
sdist = { url = "https://files.pythonhosted.org/packages/ee/ab/93ce242f899b68c51b0578c027aafa791ab3614cb9345fa5d37b5f5c8e3e/aiohttp-3.14.0.tar.gz", hash = "sha256:2882de819734c715fd1b9c11c97e09fa020d14438203d1d354d8ed1702791c9b", size = 7940674, upload-time = "2026-06-01T19:41:02.763Z" }
|
|
58
|
+
wheels = [
|
|
59
|
+
{ url = "https://files.pythonhosted.org/packages/28/03/5f36ab196a88ba5e9648ae5643e6531e67a3a8c0e96f9c6510ff41540fec/aiohttp-3.14.0-cp314-cp314-android_24_arm64_v8a.whl", hash = "sha256:363ef9e91014e7891679bfb2ac0a7c6ea93435dbbfd10ecf41b9f06fcf506c5f", size = 503330, upload-time = "2026-06-01T19:39:18.195Z" },
|
|
60
|
+
{ url = "https://files.pythonhosted.org/packages/2c/ce/8b49ec2f30f68e02f314f4832186cd45e583360a5a386058be36855d23b6/aiohttp-3.14.0-cp314-cp314-android_24_x86_64.whl", hash = "sha256:884a4edbdad77be9d0ef36142c8b504351b170df0bf62b51e784fadabf311c42", size = 509822, upload-time = "2026-06-01T19:39:20.396Z" },
|
|
61
|
+
{ url = "https://files.pythonhosted.org/packages/1a/fe/6edbf5d39bf29322b6816365b17ed8ede4dace164a3aea1abcd30110eb78/aiohttp-3.14.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl", hash = "sha256:70ea956f6cc4a37620966b56c2e205d88ca3e6d85ec063277e414b1035cddad3", size = 483329, upload-time = "2026-06-01T19:39:22.607Z" },
|
|
62
|
+
{ url = "https://files.pythonhosted.org/packages/1b/5a/fae531bdbc6456fb6241f46b7b81e4d8a0dd3fc09118a0055dc7141ac1ec/aiohttp-3.14.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl", hash = "sha256:ea3b9806c89f61da22fddf1f12dd524fb368e5e28f1261fbdafe5c3cd8ce893b", size = 489502, upload-time = "2026-06-01T19:39:24.881Z" },
|
|
63
|
+
{ url = "https://files.pythonhosted.org/packages/36/f4/48a7b0414db7fed77a03d5dde34508c026afd83510ab6bca08c313855776/aiohttp-3.14.0-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl", hash = "sha256:a071be341c2bd9b0188e62d173509f024e0a35b1c342c53c50f8daaeda8c3bd8", size = 497357, upload-time = "2026-06-01T19:39:27.197Z" },
|
|
64
|
+
{ url = "https://files.pythonhosted.org/packages/75/75/e85a13a370acc007fca5feb1fd1b88ac2d8426e6dadd625479b7cadd55a3/aiohttp-3.14.0-cp314-cp314-macosx_10_15_universal2.whl", hash = "sha256:198cfe61bf253b19da1fb3e0fa122249dc4f14c12709493fed8054aa0411cc76", size = 750898, upload-time = "2026-06-01T19:39:29.563Z" },
|
|
65
|
+
{ url = "https://files.pythonhosted.org/packages/9e/e4/3d637f800c724eff0e2bed64df72557444482366fd0a35b0cec0e6968f6c/aiohttp-3.14.0-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:9dc203d6ce6b9106d54e2a93f41dfdfebfbca2d99962ba503bfd3e5921a6549e", size = 506986, upload-time = "2026-06-01T19:39:31.872Z" },
|
|
66
|
+
{ url = "https://files.pythonhosted.org/packages/1d/df/35161f3598bf7501d2b2a805b41ab4f45a2e34150c421bcb4ef8c0d281a7/aiohttp-3.14.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:9e19d17ab02bf16832a2c8c0d55a486792c5b1645665652ee9531aebcc30cb72", size = 508033, upload-time = "2026-06-01T19:39:34.137Z" },
|
|
67
|
+
{ url = "https://files.pythonhosted.org/packages/e5/39/b36e5d3d31e850fb4691dd3e941684ac490a2559249f6fa634b6b0fdf020/aiohttp-3.14.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d925fba0c14d5b498a8028b0107beebdfd16c5d48d702ff54f879cb017aaaca3", size = 1746213, upload-time = "2026-06-01T19:39:36.654Z" },
|
|
68
|
+
{ url = "https://files.pythonhosted.org/packages/b1/28/24e1409e605a9aa5d84abe0e2acb365354b70ae56d40948101cabe3341ab/aiohttp-3.14.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:d33e61021222ce7f9792bcac870d6f58d8adfceda33ab857b01264f4560f2c5f", size = 1705862, upload-time = "2026-06-01T19:39:38.968Z" },
|
|
69
|
+
{ url = "https://files.pythonhosted.org/packages/8c/d0/e5eb3ff1daeaf644c7e36a957517672494122628e067c38b263fa04eda77/aiohttp-3.14.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:44eca38755d0105bb32f47d085f5dd449846a449e1245fc105889e3279dcf8e3", size = 1798909, upload-time = "2026-06-01T19:39:41.334Z" },
|
|
70
|
+
{ url = "https://files.pythonhosted.org/packages/d3/ba/8943f906f0570342886ababb9a722a44e360f786a028c5e0b0e29e3f735b/aiohttp-3.14.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:f13087e06f68fea4941c21a0c541c00553aa16e4f8fd7bbe2b198df761e964d6", size = 1868892, upload-time = "2026-06-01T19:39:43.807Z" },
|
|
71
|
+
{ url = "https://files.pythonhosted.org/packages/3a/05/27df32c844b2156e1675a8d8ec22d963e3c8ba469ed7ceb1863320c7b521/aiohttp-3.14.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ff82be7f1ef73634cb77890a770743239bc3d487b848669be1c599889336dc0a", size = 1751659, upload-time = "2026-06-01T19:39:46.398Z" },
|
|
72
|
+
{ url = "https://files.pythonhosted.org/packages/7f/62/da182e5910ab912b2e88aa919b61a16046a37a95714a5795b02eb57b2d18/aiohttp-3.14.0-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:a150c0875ac8fd87f1c398650841308a30d65facf7416b12dbdb9cfdcbe5a48c", size = 1578775, upload-time = "2026-06-01T19:39:48.902Z" },
|
|
73
|
+
{ url = "https://files.pythonhosted.org/packages/66/e3/53c67097e8a5ce98625e91e3fa7f43c9c6940de680345d03b3509a72a078/aiohttp-3.14.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:edc01ea4e1ec5a1649a28866262bf24195889ff7b27bdd947029a6086741de9b", size = 1710090, upload-time = "2026-06-01T19:39:51.392Z" },
|
|
74
|
+
{ url = "https://files.pythonhosted.org/packages/dd/55/0e2732ca598c7a4dfe8a775662376d0ca2977cb1030e48386d4da5d9a456/aiohttp-3.14.0-cp314-cp314-musllinux_1_2_armv7l.whl", hash = "sha256:540632bf882ff8fc88f2e1697be0761578e89e0d79fb4a8a6d65dc5da7e729d4", size = 1715016, upload-time = "2026-06-01T19:39:53.807Z" },
|
|
75
|
+
{ url = "https://files.pythonhosted.org/packages/5a/96/f0b73730798c9ca525afc30b39f1f81bbe24e245d9654c54d3b39d63212d/aiohttp-3.14.0-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:860a86bc2c80237f5dff52edcf427e10a8d8352271fd84845429a3e60199e02c", size = 1763810, upload-time = "2026-06-01T19:39:56.31Z" },
|
|
76
|
+
{ url = "https://files.pythonhosted.org/packages/71/cc/11acb6c4518f448323405a7312b6f255d0f974a34373ad1db7633c4aadc8/aiohttp-3.14.0-cp314-cp314-musllinux_1_2_riscv64.whl", hash = "sha256:5cbd50e6a50d6b99283a826b18cbdebf65b0797689a7535cb0e9dd37be0f63c3", size = 1573064, upload-time = "2026-06-01T19:39:58.718Z" },
|
|
77
|
+
{ url = "https://files.pythonhosted.org/packages/de/2d/28c31dde0a7dc98c0ee7d0da2ddcec3f7688c4fc131e5989e278d0c03c0a/aiohttp-3.14.0-cp314-cp314-musllinux_1_2_s390x.whl", hash = "sha256:20144819e99db593e22bbd2f3f2691a5e149f879142d6b8670254708853ff4fb", size = 1775765, upload-time = "2026-06-01T19:40:01.195Z" },
|
|
78
|
+
{ url = "https://files.pythonhosted.org/packages/b8/69/155c4ef3aec96417d47024800472b33b16c5d8a665371dcd044c2afdf25d/aiohttp-3.14.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:26b6d79aa54cb4ed50cc7d41ed14e99e0f1fc8e7c2d42f2e05b37aea897b2b52", size = 1733716, upload-time = "2026-06-01T19:40:03.631Z" },
|
|
79
|
+
{ url = "https://files.pythonhosted.org/packages/5f/44/6126116fd8a316b712bb615660b855c78466bb67ba1bb1742427eafcf7ac/aiohttp-3.14.0-cp314-cp314-win32.whl", hash = "sha256:106ed074a856f3e21d186b8579e2c8afb6da598e267cdaab01059e13db2fc44d", size = 453684, upload-time = "2026-06-01T19:40:06.277Z" },
|
|
80
|
+
{ url = "https://files.pythonhosted.org/packages/a2/d7/eff4c58a88c5cac5e38b55f44fb8a6d3929c3cbd77356e383e094d3220bd/aiohttp-3.14.0-cp314-cp314-win_amd64.whl", hash = "sha256:4f770846edae8f00ecc57af825bce811f787f87a7dcf0e90d191790efe5b31f7", size = 481758, upload-time = "2026-06-01T19:40:08.653Z" },
|
|
81
|
+
{ url = "https://files.pythonhosted.org/packages/d7/ed/17b5bd9fbcb46e688f02e572f517754a9a75831e7b54702f027761dc4fa5/aiohttp-3.14.0-cp314-cp314-win_arm64.whl", hash = "sha256:acf1581c4f21ed4b80a2dded504d87b055a071a84d5737ea966435f768275ac6", size = 450557, upload-time = "2026-06-01T19:40:11.03Z" },
|
|
82
|
+
{ url = "https://files.pythonhosted.org/packages/12/34/6180103ce9aabc8ebff3f7bb55a1228ffe60f61042823031d9692cb7b101/aiohttp-3.14.0-cp314-cp314t-macosx_10_15_universal2.whl", hash = "sha256:6aa1a40f9cbb3da9f80714c5966b8946c21e6a2530d809b9498b33161e3c8733", size = 787878, upload-time = "2026-06-01T19:40:13.401Z" },
|
|
83
|
+
{ url = "https://files.pythonhosted.org/packages/92/e9/08954a40e8b7baa3d8beadd2b074b186e9b1e9c8ddabc288678a6265de50/aiohttp-3.14.0-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:b62af5a8cc96a194eaa01a9ed7b34a3ffa58d3d8daaa1a0d7a749353ad12d228", size = 524400, upload-time = "2026-06-01T19:40:15.972Z" },
|
|
84
|
+
{ url = "https://files.pythonhosted.org/packages/08/6a/b5965a634ac4d5ba99a463314cf4ab214ca073fcdc38a15e0294273701fc/aiohttp-3.14.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:6eb63b1417efaf7d1002a6ad034a40d44376afcc16508a57f8e74b49ad26a095", size = 527904, upload-time = "2026-06-01T19:40:18.28Z" },
|
|
85
|
+
{ url = "https://files.pythonhosted.org/packages/06/b4/932bcdd850c354d9bcca30f360e475d7852e30413fbbd44b182782ed5432/aiohttp-3.14.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c20b9ad156a79eb97be5cf9e069eec01d2f0dc8472ffbd75299a8b2d4c2cbbde", size = 1912162, upload-time = "2026-06-01T19:40:20.825Z" },
|
|
86
|
+
{ url = "https://files.pythonhosted.org/packages/c6/85/ce79bab0310d2e3fd2d7bc7e44412abeff7c8338f8a21dd0f2f1714989e5/aiohttp-3.14.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:40ae7b0642c25632c7eabc4a04754012691864d2a1b93becf7cddb76027b838a", size = 1778813, upload-time = "2026-06-01T19:40:23.726Z" },
|
|
87
|
+
{ url = "https://files.pythonhosted.org/packages/05/54/ba62ac2d1bc87e010aad23751e383b8794e45d931df67677313a2da78823/aiohttp-3.14.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:95f5217e76a046b9f228a101717ef8d42b1eb3d9d196d15202db5bf41df88936", size = 1899969, upload-time = "2026-06-01T19:40:26.406Z" },
|
|
88
|
+
{ url = "https://files.pythonhosted.org/packages/dc/82/7cc7907725d83a19f31551334061e1ab8e108b1d7ac52632a2a844a4acb5/aiohttp-3.14.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:1a4a9f17e85b80878c176695c1998c790e83731d8271881e5d356488652a1f9e", size = 1991771, upload-time = "2026-06-01T19:40:29.061Z" },
|
|
89
|
+
{ url = "https://files.pythonhosted.org/packages/d0/1c/a57de71a4508c93a830b77c28af3d08cd97f606dedfc6b94275347744508/aiohttp-3.14.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:145262119b07d7f95abc1839add35ba2bfc84551d4b4660ca11542c0b215455b", size = 1868606, upload-time = "2026-06-01T19:40:31.843Z" },
|
|
90
|
+
{ url = "https://files.pythonhosted.org/packages/9c/ae/3839726cd49150a53ed340cc24ce5ba09d4c2117020ef9d45542bec5eb2f/aiohttp-3.14.0-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:49a33ded29b0b2fa7a367a02cf0fb89af602bb87542a16177ec8ce1c9c51d12a", size = 1665437, upload-time = "2026-06-01T19:40:35.01Z" },
|
|
91
|
+
{ url = "https://files.pythonhosted.org/packages/35/1e/c237923232c7da7f0392ea25d89fc5e60c0e93f685f4ebca8e7bcdd5271c/aiohttp-3.14.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:2cc736a9c9fc2bc4dd71fd404815741b6573df27c3f985948ec4076989ac57de", size = 1834090, upload-time = "2026-06-01T19:40:37.733Z" },
|
|
92
|
+
{ url = "https://files.pythonhosted.org/packages/98/02/a5a7a2524f92d3911761b405a7c067c751891942144adc13e2ad79611e39/aiohttp-3.14.0-cp314-cp314t-musllinux_1_2_armv7l.whl", hash = "sha256:b4141a3e5342ee3053a9cab54d25b64ed28289c1041e4c54b3d99839314d90ce", size = 1816907, upload-time = "2026-06-01T19:40:40.46Z" },
|
|
93
|
+
{ url = "https://files.pythonhosted.org/packages/fa/76/a8b9f0d09234d516af9f2d7dd715557f33b5da3b0b56ead41d1170e86e3c/aiohttp-3.14.0-cp314-cp314t-musllinux_1_2_ppc64le.whl", hash = "sha256:e30871b2d58996cb81aac52d2b1d15ac05257131ef0f90f18c2115a380fbfe7c", size = 1840382, upload-time = "2026-06-01T19:40:43.48Z" },
|
|
94
|
+
{ url = "https://files.pythonhosted.org/packages/c9/8e/140e715a0a4bbc211979ea30ec8396ad2ed5bf90ab87d8058fc4668b1923/aiohttp-3.14.0-cp314-cp314t-musllinux_1_2_riscv64.whl", hash = "sha256:667b881d083ccae3900ea5a241e17e5007ca78844c53ed389bb63d48f729d9c7", size = 1659497, upload-time = "2026-06-01T19:40:46.265Z" },
|
|
95
|
+
{ url = "https://files.pythonhosted.org/packages/10/c7/7ba5de8af9650b9767b063c675427b8685f43fa7ce563673a7bc3af60f08/aiohttp-3.14.0-cp314-cp314t-musllinux_1_2_s390x.whl", hash = "sha256:b584dfe615d151e9b8f0a8ecb3aee6147f2927ec5b95ba25fe621f5377510928", size = 1870829, upload-time = "2026-06-01T19:40:49.583Z" },
|
|
96
|
+
{ url = "https://files.pythonhosted.org/packages/cc/bc/2aaab2f85cadb26ea59c091fa2b8e370d625154b5c14b478f1b489d07551/aiohttp-3.14.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:6199707cc40e0e9cd39c36fbc97bec416c704e1d0ddce03412bb3b3e6a90ccd0", size = 1832281, upload-time = "2026-06-01T19:40:52.303Z" },
|
|
97
|
+
{ url = "https://files.pythonhosted.org/packages/39/98/31b9ad9fbc01f0075ee7221002df5fd2d10b647f451ca5f30edc802d9dd6/aiohttp-3.14.0-cp314-cp314t-win32.whl", hash = "sha256:a8d93334d4961c9d566b1f046c81dee475b7c21eb730728d38237bfa70d1c8e6", size = 490597, upload-time = "2026-06-01T19:40:54.937Z" },
|
|
98
|
+
{ url = "https://files.pythonhosted.org/packages/59/1f/299b21441c8de42ff70fddc7cfe65e92f810abcf740739a09b56f7835364/aiohttp-3.14.0-cp314-cp314t-win_amd64.whl", hash = "sha256:2d2ffe9b614f50f069068b3b52e73414e4107fc10b7efc939a76acff9251fdd2", size = 525789, upload-time = "2026-06-01T19:40:57.306Z" },
|
|
99
|
+
{ url = "https://files.pythonhosted.org/packages/70/11/7f83fcba9ee05d4c54d61b3f8104da0d43a59adac44dd28effc0c9a10422/aiohttp-3.14.0-cp314-cp314t-win_arm64.whl", hash = "sha256:7a3fc4358e65826c515350f199c210de747cf669998211b1ee6c2e46de364b24", size = 467399, upload-time = "2026-06-01T19:40:59.993Z" },
|
|
93
100
|
]
|
|
94
101
|
|
|
95
102
|
[package.optional-dependencies]
|
|
96
103
|
speedups = [
|
|
97
|
-
{ name = "aiodns" },
|
|
98
|
-
{ name = "brotli", marker = "platform_python_implementation == 'CPython'" },
|
|
104
|
+
{ name = "aiodns", marker = "sys_platform != 'android' and sys_platform != 'ios'" },
|
|
105
|
+
{ name = "brotli", marker = "platform_python_implementation == 'CPython' and sys_platform != 'android' and sys_platform != 'ios'" },
|
|
99
106
|
{ name = "brotlicffi", marker = "platform_python_implementation != 'CPython'" },
|
|
100
107
|
]
|
|
101
108
|
|
|
@@ -956,15 +963,15 @@ wheels = [
|
|
|
956
963
|
|
|
957
964
|
[[package]]
|
|
958
965
|
name = "pyright"
|
|
959
|
-
version = "1.1.
|
|
966
|
+
version = "1.1.410"
|
|
960
967
|
source = { registry = "https://pypi.org/simple" }
|
|
961
968
|
dependencies = [
|
|
962
969
|
{ name = "nodeenv" },
|
|
963
970
|
{ name = "typing-extensions" },
|
|
964
971
|
]
|
|
965
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
972
|
+
sdist = { url = "https://files.pythonhosted.org/packages/10/53/e4d8ea1391bd4355231be6f91bf239479aa0014260ed3fb5526eeb12a1f2/pyright-1.1.410.tar.gz", hash = "sha256:07a073b8ba6749826773c1269773efa11b93440d9a6aa60419d9a3172d6dc488", size = 4062013, upload-time = "2026-06-01T17:35:48.894Z" }
|
|
966
973
|
wheels = [
|
|
967
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
974
|
+
{ url = "https://files.pythonhosted.org/packages/d7/33/288b5868fa00846dacf249633719d747893e54aebd196b9968ac1878a5d3/pyright-1.1.410-py3-none-any.whl", hash = "sha256:5e961bed37cacf96b3f7cd7b1da39b350a9239aa2e69138d0e88f728cfaf296c", size = 6082448, upload-time = "2026-06-01T17:35:46.387Z" },
|
|
968
975
|
]
|
|
969
976
|
|
|
970
977
|
[[package]]
|
|
@@ -1151,9 +1158,9 @@ testing = [
|
|
|
1151
1158
|
[package.metadata]
|
|
1152
1159
|
requires-dist = [
|
|
1153
1160
|
{ name = "aiobotocore", marker = "extra == 'object-storage'", specifier = "~=3.7.0" },
|
|
1154
|
-
{ name = "aiohttp", extras = ["speedups"], marker = "extra == 'api-client'", specifier = ">=3.
|
|
1155
|
-
{ name = "aiohttp", extras = ["speedups"], marker = "extra == 'authn'", specifier = ">=3.
|
|
1156
|
-
{ name = "aiohttp", extras = ["speedups"], marker = "extra == 'soap-client'", specifier = ">=3.
|
|
1161
|
+
{ name = "aiohttp", extras = ["speedups"], marker = "extra == 'api-client'", specifier = ">=3.14.0,<3.15.0" },
|
|
1162
|
+
{ name = "aiohttp", extras = ["speedups"], marker = "extra == 'authn'", specifier = ">=3.14.0,<3.15.0" },
|
|
1163
|
+
{ name = "aiohttp", extras = ["speedups"], marker = "extra == 'soap-client'", specifier = ">=3.14.0,<3.15.0" },
|
|
1157
1164
|
{ name = "asyncpg", marker = "extra == 'database'", specifier = "~=0.31.0" },
|
|
1158
1165
|
{ name = "certifi", marker = "extra == 'api-client'", specifier = "~=2026.5.20" },
|
|
1159
1166
|
{ name = "certifi", marker = "extra == 'authn'", specifier = "~=2026.5.20" },
|
|
@@ -1363,27 +1370,27 @@ asyncio = [
|
|
|
1363
1370
|
|
|
1364
1371
|
[[package]]
|
|
1365
1372
|
name = "ty"
|
|
1366
|
-
version = "0.0.
|
|
1367
|
-
source = { registry = "https://pypi.org/simple" }
|
|
1368
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
1369
|
-
wheels = [
|
|
1370
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1371
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1372
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1373
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1374
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1375
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1376
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1377
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1378
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1379
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1380
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1381
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1382
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1383
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1384
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1385
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1386
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1373
|
+
version = "0.0.42"
|
|
1374
|
+
source = { registry = "https://pypi.org/simple" }
|
|
1375
|
+
sdist = { url = "https://files.pythonhosted.org/packages/d8/91/5b5ec4ed8721c18be8d9611778d7c07723cd755676f03b41bf0ea0caa5d3/ty-0.0.42.tar.gz", hash = "sha256:70f5553ac678fc63558d4d77b08a18a68a228f44be2a2fe1afc3f5988db662e7", size = 5769116, upload-time = "2026-06-01T19:40:32.869Z" }
|
|
1376
|
+
wheels = [
|
|
1377
|
+
{ url = "https://files.pythonhosted.org/packages/d4/7c/2df5136ad7c0db69a3973b0b19da8f52bfacdc453c7dffc832d1bf7d23ff/ty-0.0.42-py3-none-linux_armv6l.whl", hash = "sha256:c08a0066610c13627b7d7ad758adb96ca99685791e641eb26837e20803851c53", size = 11544141, upload-time = "2026-06-01T19:40:41.065Z" },
|
|
1378
|
+
{ url = "https://files.pythonhosted.org/packages/0a/82/96cf406d39d8976e825361a27e332224445812793060ac9506d8a5d32b39/ty-0.0.42-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:3e944ee4e3d5cdaf70e4ea87f9dd474cc3db612837b50a3ce57afa8da400ecc2", size = 11283538, upload-time = "2026-06-01T19:40:26.758Z" },
|
|
1379
|
+
{ url = "https://files.pythonhosted.org/packages/dc/fe/813b60b9332df835c16c05859ff5aac1896593d01b638ba0e461ede415ac/ty-0.0.42-py3-none-macosx_11_0_arm64.whl", hash = "sha256:603085306e4aac2ce592b39119a4b49ebf8b780cd394e2cfc7dbf3fd8228f954", size = 10711874, upload-time = "2026-06-01T19:40:28.77Z" },
|
|
1380
|
+
{ url = "https://files.pythonhosted.org/packages/07/64/1f609265be0302ce0f51aa03a27636d018947a76100ff1405258d8445e6c/ty-0.0.42-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a58f17834d7f078c49326a01111a5aac16c979a774b98cdfd8e2350068316676", size = 11213021, upload-time = "2026-06-01T19:40:45.01Z" },
|
|
1381
|
+
{ url = "https://files.pythonhosted.org/packages/88/c0/f147b2fde7cd01b5f77682937e85a5cdfe35f48b3f1d0f41021024cbd927/ty-0.0.42-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:e6ed1027f313202c5c74e376007d1eb5d214494299beb0ea047078b8ad307d40", size = 11321604, upload-time = "2026-06-01T19:40:55.164Z" },
|
|
1382
|
+
{ url = "https://files.pythonhosted.org/packages/a9/72/74a5e68a9bd194681f15c4aac7a0dfab378e76e7a107e8ecd93971a22377/ty-0.0.42-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:063838d2360c1d2c065b45ca76a56ecd6df07fff6570813e74183236559e16d9", size = 11802178, upload-time = "2026-06-01T19:40:19.558Z" },
|
|
1383
|
+
{ url = "https://files.pythonhosted.org/packages/3c/9f/06a31dc9cc91faa2cb8a4bf2f0ba5f7a9a96a4828fb8434338682954ca86/ty-0.0.42-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c3f9ed508dfae4cbc943d7766324dd9c57ac8302c8543505fc29cae8ed425fe9", size = 12358436, upload-time = "2026-06-01T19:40:48.968Z" },
|
|
1384
|
+
{ url = "https://files.pythonhosted.org/packages/06/33/a5bb1afcb671e0b9197f007264682b22f1063bf0e83c151eeaf9958f9047/ty-0.0.42-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0fe1eb7d98472ac56ac19fec51c6ed8fe56d86ea0d232a11a127e8c62c882a66", size = 11997849, upload-time = "2026-06-01T19:40:42.951Z" },
|
|
1385
|
+
{ url = "https://files.pythonhosted.org/packages/ee/8d/560e4ec4c2f69e68fa094bb93cd19b5eb92c9732d2e0f5e7cc3accde84c4/ty-0.0.42-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:de75f9e78bfa81209f2f297528758977cfd4518ba35ef45a0acb516c892a27a5", size = 11869087, upload-time = "2026-06-01T19:40:24.38Z" },
|
|
1386
|
+
{ url = "https://files.pythonhosted.org/packages/b2/dd/3794db15199c03eda60961690046a56c4fbf5d8ef073c82fe2402c851b8c/ty-0.0.42-py3-none-manylinux_2_31_riscv64.whl", hash = "sha256:c63281f2f1d4df339117fcd4a6dfe17cb999f84eafe707b30e9ebbe26f0bb54a", size = 12059000, upload-time = "2026-06-01T19:40:34.982Z" },
|
|
1387
|
+
{ url = "https://files.pythonhosted.org/packages/98/9a/02b61cc65ecbd90f18bd02178845c5b756c78fb92643571e77df52c6eed8/ty-0.0.42-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:19e3856477f25255f772851fa7f16f5356c4e1927324d074d49c7bc9a9b211e1", size = 11195698, upload-time = "2026-06-01T19:40:37.109Z" },
|
|
1388
|
+
{ url = "https://files.pythonhosted.org/packages/7b/d6/3927335c956b06a806269dcd2e5b46bc4284b0a95ecc6b0246094a1de28c/ty-0.0.42-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:2f0f4acac9028264cee5ea0b88229df0b9b2586fc917dbadb6ee35a0e99e8b06", size = 11353487, upload-time = "2026-06-01T19:40:47.035Z" },
|
|
1389
|
+
{ url = "https://files.pythonhosted.org/packages/d6/87/79e7ae4f5f9fb3bea5f3cfac2b4f8c60e905f13962e3c0d97f8b51a5bff6/ty-0.0.42-py3-none-musllinux_1_2_i686.whl", hash = "sha256:ae244c84e30fdf2bb1a3cbf2b973da8aa535e57c701f12db44b2939604586c04", size = 11463474, upload-time = "2026-06-01T19:40:30.812Z" },
|
|
1390
|
+
{ url = "https://files.pythonhosted.org/packages/49/f9/73305ead1b3ccc3d79c04258877db2cd7908c6a6c2060d4e598deca384d2/ty-0.0.42-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:2430434f4a52bec0da552ff6a061dcc1c5d11973259248679a1146d776c12f37", size = 11961710, upload-time = "2026-06-01T19:40:39.056Z" },
|
|
1391
|
+
{ url = "https://files.pythonhosted.org/packages/e1/04/52b7325dad8d1a86653f90240208f3e3657bed5e3c8144eed367a0f736b0/ty-0.0.42-py3-none-win32.whl", hash = "sha256:984a55c2fe63b40dac03f5a144b99033c7ed720eb7611787e3f0bd49af8dcf12", size = 10783897, upload-time = "2026-06-01T19:40:22.189Z" },
|
|
1392
|
+
{ url = "https://files.pythonhosted.org/packages/94/d2/3d2d61255c76c0843766f00b39290115c23cc1cd4fcb0471d84a48f482f1/ty-0.0.42-py3-none-win_amd64.whl", hash = "sha256:f7afd81b10b377d9d4ce6aad355a4f47fd37d47f443118c01ca6e79d46fe6608", size = 11878640, upload-time = "2026-06-01T19:40:50.903Z" },
|
|
1393
|
+
{ url = "https://files.pythonhosted.org/packages/b4/91/1eb0c1e3d558707ead7424f8bfd89b58f42e576714cbed7ad46dcceef34a/ty-0.0.42-py3-none-win_arm64.whl", hash = "sha256:4068c24b0b264fc9f1901e06b97988a041fcaa36c90f18d7747f05124701c7b3", size = 11202335, upload-time = "2026-06-01T19:40:53.155Z" },
|
|
1387
1394
|
]
|
|
1388
1395
|
|
|
1389
1396
|
[[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.20.14 → python3_commons-0.21.0}/.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
|
{python3_commons-0.20.14 → python3_commons-0.21.0}/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.20.14 → python3_commons-0.21.0}/src/python3_commons/serializers/__init__.py
RENAMED
|
File without changes
|
{python3_commons-0.20.14 → python3_commons-0.21.0}/src/python3_commons/serializers/common.py
RENAMED
|
File without changes
|
|
File without changes
|
{python3_commons-0.20.14 → python3_commons-0.21.0}/src/python3_commons/serializers/msgpack.py
RENAMED
|
File without changes
|
{python3_commons-0.20.14 → python3_commons-0.21.0}/src/python3_commons/serializers/msgspec.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python3_commons-0.20.14 → python3_commons-0.21.0}/src/python3_commons.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
{python3_commons-0.20.14 → python3_commons-0.21.0}/src/python3_commons.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python3_commons-0.20.14 → python3_commons-0.21.0}/tests/unit/db/test_async_session_manager.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|