python3-commons 0.20.16__tar.gz → 0.21.1__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.16 → python3_commons-0.21.1}/.pre-commit-config.yaml +2 -2
- {python3_commons-0.20.16/src/python3_commons.egg-info → python3_commons-0.21.1}/PKG-INFO +6 -6
- {python3_commons-0.20.16 → python3_commons-0.21.1}/pyproject.toml +5 -5
- {python3_commons-0.20.16 → python3_commons-0.21.1/src/python3_commons.egg-info}/PKG-INFO +6 -6
- {python3_commons-0.20.16 → python3_commons-0.21.1}/src/python3_commons.egg-info/requires.txt +4 -4
- {python3_commons-0.20.16 → python3_commons-0.21.1}/uv.lock +109 -109
- {python3_commons-0.20.16 → python3_commons-0.21.1}/.coveragerc +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/.devcontainer/Dockerfile +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/.devcontainer/devcontainer.json +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/.devcontainer/docker-compose.yml +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/.env_template +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/.github/workflows/checks.yml +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/.github/workflows/python-publish.yaml +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/.github/workflows/release-on-tag-push.yml +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/.gitignore +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/.python-version +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/AUTHORS.rst +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/CHANGELOG.rst +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/LICENSE +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/README.md +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/README.rst +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/docs/Makefile +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/docs/_static/.gitignore +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/docs/authors.rst +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/docs/changelog.rst +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/docs/conf.py +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/docs/index.rst +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/docs/license.rst +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/setup.cfg +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/src/python3_commons/__init__.py +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/src/python3_commons/api_client.py +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/src/python3_commons/async_functools.py +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/src/python3_commons/audit.py +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/src/python3_commons/auth.py +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/src/python3_commons/cache.py +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/src/python3_commons/conf.py +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/src/python3_commons/db/__init__.py +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/src/python3_commons/db/helpers.py +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/src/python3_commons/db/models/__init__.py +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/src/python3_commons/db/models/auth.py +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/src/python3_commons/db/models/common.py +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/src/python3_commons/db/models/rbac.py +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/src/python3_commons/db/models/users.py +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/src/python3_commons/exceptions.py +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/src/python3_commons/fs.py +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/src/python3_commons/generators.py +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/src/python3_commons/helpers.py +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/src/python3_commons/log/__init__.py +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/src/python3_commons/log/filters.py +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/src/python3_commons/log/formatters.py +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/src/python3_commons/object_storage.py +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/src/python3_commons/permissions.py +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/src/python3_commons/serializers/__init__.py +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/src/python3_commons/serializers/common.py +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/src/python3_commons/serializers/json.py +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/src/python3_commons/serializers/msgpack.py +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/src/python3_commons/serializers/msgspec.py +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/src/python3_commons/soap_client.py +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/src/python3_commons.egg-info/SOURCES.txt +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/src/python3_commons.egg-info/dependency_links.txt +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/src/python3_commons.egg-info/top_level.txt +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/tests/__init__.py +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/tests/integration/__init__.py +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/tests/integration/conftest.py +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/tests/integration/test_auth.py +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/tests/integration/test_cache.py +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/tests/integration/test_osc.py +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/tests/unit/__init__.py +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/tests/unit/conftest.py +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/tests/unit/db/__init__.py +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/tests/unit/db/test_async_session_manager.py +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/tests/unit/log/__init__.py +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/tests/unit/log/test_formatters.py +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/tests/unit/test_async_functools.py +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/tests/unit/test_audit.py +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/tests/unit/test_helpers.py +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/tests/unit/test_msgpack.py +0 -0
- {python3_commons-0.20.16 → python3_commons-0.21.1}/tests/unit/test_msgspec.py +0 -0
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
repos:
|
|
2
2
|
- repo: https://github.com/astral-sh/uv-pre-commit
|
|
3
|
-
rev: 0.11.
|
|
3
|
+
rev: 0.11.19
|
|
4
4
|
hooks:
|
|
5
5
|
- id: uv-lock
|
|
6
6
|
# - id: uv-export
|
|
7
7
|
|
|
8
8
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
9
|
-
rev: v0.15.
|
|
9
|
+
rev: v0.15.16
|
|
10
10
|
hooks:
|
|
11
11
|
# Run the linter.
|
|
12
12
|
- id: ruff-check
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: python3-commons
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.21.1
|
|
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
|
|
@@ -8,7 +8,7 @@ Project-URL: Homepage, https://github.com/kamikaze/python3-commons
|
|
|
8
8
|
Project-URL: Documentation, https://github.com/kamikaze/python3-commons/wiki
|
|
9
9
|
Classifier: Development Status :: 4 - Beta
|
|
10
10
|
Classifier: Programming Language :: Python
|
|
11
|
-
Requires-Python: <3.15.0,>=3.14.
|
|
11
|
+
Requires-Python: <3.15.0,>=3.14.1
|
|
12
12
|
Description-Content-Type: text/x-rst
|
|
13
13
|
License-File: LICENSE
|
|
14
14
|
License-File: AUTHORS.rst
|
|
@@ -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.14.
|
|
21
|
+
Requires-Dist: aiohttp[speedups]<3.15.0,>=3.14.1; 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.14.
|
|
29
|
+
Requires-Dist: aiohttp[speedups]<3.15.0,>=3.14.1; 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
|
|
@@ -39,9 +39,9 @@ Requires-Dist: asyncpg~=0.31.0; extra == "database"
|
|
|
39
39
|
Requires-Dist: SQLAlchemy[asyncio]~=2.0.50; 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.0.
|
|
42
|
+
Requires-Dist: object-storage-client~=0.0.35; extra == "object-storage"
|
|
43
43
|
Provides-Extra: soap-client
|
|
44
|
-
Requires-Dist: aiohttp[speedups]<3.15.0,>=3.14.
|
|
44
|
+
Requires-Dist: aiohttp[speedups]<3.15.0,>=3.14.1; 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"
|
|
@@ -16,7 +16,7 @@ classifiers = [
|
|
|
16
16
|
"Programming Language :: Python"
|
|
17
17
|
]
|
|
18
18
|
keywords = []
|
|
19
|
-
requires-python = ">=3.14.
|
|
19
|
+
requires-python = ">=3.14.1,<3.15.0"
|
|
20
20
|
dependencies = [
|
|
21
21
|
"msgpack~=1.1.2",
|
|
22
22
|
"msgspec~=0.21.1",
|
|
@@ -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.14.
|
|
31
|
+
"aiohttp[speedups]>=3.14.1,<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.14.
|
|
41
|
+
"aiohttp[speedups]>=3.14.1,<3.15.0",
|
|
42
42
|
"certifi~=2026.5.20",
|
|
43
43
|
"python3_commons[api-client]"
|
|
44
44
|
]
|
|
@@ -55,10 +55,10 @@ database = [
|
|
|
55
55
|
]
|
|
56
56
|
object-storage = [
|
|
57
57
|
"aiobotocore~=3.7.0",
|
|
58
|
-
"object-storage-client~=0.0.
|
|
58
|
+
"object-storage-client~=0.0.35"
|
|
59
59
|
]
|
|
60
60
|
soap-client = [
|
|
61
|
-
"aiohttp[speedups]>=3.14.
|
|
61
|
+
"aiohttp[speedups]>=3.14.1,<3.15.0",
|
|
62
62
|
"certifi~=2026.5.20",
|
|
63
63
|
"lxml~=6.1.1",
|
|
64
64
|
"requests~=2.34.2",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: python3-commons
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.21.1
|
|
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
|
|
@@ -8,7 +8,7 @@ Project-URL: Homepage, https://github.com/kamikaze/python3-commons
|
|
|
8
8
|
Project-URL: Documentation, https://github.com/kamikaze/python3-commons/wiki
|
|
9
9
|
Classifier: Development Status :: 4 - Beta
|
|
10
10
|
Classifier: Programming Language :: Python
|
|
11
|
-
Requires-Python: <3.15.0,>=3.14.
|
|
11
|
+
Requires-Python: <3.15.0,>=3.14.1
|
|
12
12
|
Description-Content-Type: text/x-rst
|
|
13
13
|
License-File: LICENSE
|
|
14
14
|
License-File: AUTHORS.rst
|
|
@@ -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.14.
|
|
21
|
+
Requires-Dist: aiohttp[speedups]<3.15.0,>=3.14.1; 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.14.
|
|
29
|
+
Requires-Dist: aiohttp[speedups]<3.15.0,>=3.14.1; 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
|
|
@@ -39,9 +39,9 @@ Requires-Dist: asyncpg~=0.31.0; extra == "database"
|
|
|
39
39
|
Requires-Dist: SQLAlchemy[asyncio]~=2.0.50; 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.0.
|
|
42
|
+
Requires-Dist: object-storage-client~=0.0.35; extra == "object-storage"
|
|
43
43
|
Provides-Extra: soap-client
|
|
44
|
-
Requires-Dist: aiohttp[speedups]<3.15.0,>=3.14.
|
|
44
|
+
Requires-Dist: aiohttp[speedups]<3.15.0,>=3.14.1; 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.16 → python3_commons-0.21.1}/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.14.
|
|
9
|
+
aiohttp[speedups]<3.15.0,>=3.14.1
|
|
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.14.
|
|
19
|
+
aiohttp[speedups]<3.15.0,>=3.14.1
|
|
20
20
|
certifi~=2026.5.20
|
|
21
21
|
python3_commons[api-client]
|
|
22
22
|
|
|
@@ -33,10 +33,10 @@ SQLAlchemy[asyncio]~=2.0.50
|
|
|
33
33
|
|
|
34
34
|
[object-storage]
|
|
35
35
|
aiobotocore~=3.7.0
|
|
36
|
-
object-storage-client~=0.0.
|
|
36
|
+
object-storage-client~=0.0.35
|
|
37
37
|
|
|
38
38
|
[soap-client]
|
|
39
|
-
aiohttp[speedups]<3.15.0,>=3.14.
|
|
39
|
+
aiohttp[speedups]<3.15.0,>=3.14.1
|
|
40
40
|
certifi~=2026.5.20
|
|
41
41
|
lxml~=6.1.1
|
|
42
42
|
requests~=2.34.2
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
version = 1
|
|
2
2
|
revision = 3
|
|
3
|
-
requires-python = "
|
|
3
|
+
requires-python = ">=3.14.1, <3.15.0"
|
|
4
4
|
|
|
5
5
|
[[package]]
|
|
6
6
|
name = "aiobotocore"
|
|
@@ -43,7 +43,7 @@ wheels = [
|
|
|
43
43
|
|
|
44
44
|
[[package]]
|
|
45
45
|
name = "aiohttp"
|
|
46
|
-
version = "3.14.
|
|
46
|
+
version = "3.14.1"
|
|
47
47
|
source = { registry = "https://pypi.org/simple" }
|
|
48
48
|
dependencies = [
|
|
49
49
|
{ name = "aiohappyeyeballs" },
|
|
@@ -54,49 +54,49 @@ 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/5a/
|
|
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/
|
|
93
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
94
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
95
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
96
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
97
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
98
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
99
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
57
|
+
sdist = { url = "https://files.pythonhosted.org/packages/82/78/8ea7308cac6934de8c74a14f3d5f65d1c89287426688be79538d0e5c013d/aiohttp-3.14.1.tar.gz", hash = "sha256:307f2cff90a764d329e77040603fa032db89c5c24fdad50c4c15334cba744035", size = 7955794, upload-time = "2026-06-07T21:09:35.529Z" }
|
|
58
|
+
wheels = [
|
|
59
|
+
{ url = "https://files.pythonhosted.org/packages/c4/a1/5fafa04e1ca91ddb47608699d60649c1c6db3cf41c99e78fc4056f9513db/aiohttp-3.14.1-cp314-cp314-android_24_arm64_v8a.whl", hash = "sha256:7c106c26852ca1c2047c6b80384f17100b4e439af276f21ef3d4e2f450ae7e15", size = 508531, upload-time = "2026-06-07T21:08:02.093Z" },
|
|
60
|
+
{ url = "https://files.pythonhosted.org/packages/fa/2e/bfa02f699d87ffc86d5959270b28f1cb410add3ccaced8ed2e0b8a5238fc/aiohttp-3.14.1-cp314-cp314-android_24_x86_64.whl", hash = "sha256:20205f7f5ade7aaec9f4b500549bbc071b046453aed72f9c06dcab87896a83e8", size = 514718, upload-time = "2026-06-07T21:08:04.476Z" },
|
|
61
|
+
{ url = "https://files.pythonhosted.org/packages/85/a5/9594ad6289eebbc97d167c44213d557807f90e59115caad24de21ad2c3b1/aiohttp-3.14.1-cp314-cp314-ios_13_0_arm64_iphoneos.whl", hash = "sha256:62a759436b29e677181a9e76bab8b8f689a29cb9c535f45f7c48c9c830d3f8c3", size = 487918, upload-time = "2026-06-07T21:08:06.377Z" },
|
|
62
|
+
{ url = "https://files.pythonhosted.org/packages/b4/61/16a32c36c3c49edec122a3dc811f2057df2f94d3b14aa107c8017d981618/aiohttp-3.14.1-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl", hash = "sha256:2964cbf553df4d7a57348da44d961d871895fc1ee4e8c322b2a95612c7b17fba", size = 494014, upload-time = "2026-06-07T21:08:08.263Z" },
|
|
63
|
+
{ url = "https://files.pythonhosted.org/packages/9b/89/3ebcf96ed99c05bec9c434aaac6963fd3cbab4a786ae739908a144d9ce44/aiohttp-3.14.1-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl", hash = "sha256:237651caadc3a59badd39319c54642b5299e9cc98a3a194310e55d5bb9f5e397", size = 502398, upload-time = "2026-06-07T21:08:10.244Z" },
|
|
64
|
+
{ url = "https://files.pythonhosted.org/packages/fd/3d/b74870a0c2d40c355928cd5b96c7a11fa821b8a40fc41365e64479b151fb/aiohttp-3.14.1-cp314-cp314-macosx_10_15_universal2.whl", hash = "sha256:896e12dfdbbab9d8f7e16d2b28c6769a60126fa92095d1ebf9473d02593a2448", size = 758018, upload-time = "2026-06-07T21:08:12.447Z" },
|
|
65
|
+
{ url = "https://files.pythonhosted.org/packages/d3/66/f42f5c984d99e49c6cff5f26f590750f2e2f7ef1fcfb99966ab5be1b632e/aiohttp-3.14.1-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:d03f281ed22579314ba00821ce20115a7c0ac430660b4cc05704a3f818b3e004", size = 512462, upload-time = "2026-06-07T21:08:14.624Z" },
|
|
66
|
+
{ url = "https://files.pythonhosted.org/packages/e9/a7/248e1aebe0c7810b0271e021a0f2a5eb6e78a051885b3c9df49f42a5802d/aiohttp-3.14.1-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:07eabb979d236335fed927e137a928c9adfb7df3b9ec7aa31726f133a62be983", size = 512824, upload-time = "2026-06-07T21:08:16.572Z" },
|
|
67
|
+
{ url = "https://files.pythonhosted.org/packages/26/97/2aa0e5ba0727dc3bd5aaebb7ccbc510f7dfb7fb961ec87497cd496635ab1/aiohttp-3.14.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4fe1f1087cbadb280b5e1bb054a4f00d1423c74d6626c5e48400d871d34ecefe", size = 1749898, upload-time = "2026-06-07T21:08:18.635Z" },
|
|
68
|
+
{ url = "https://files.pythonhosted.org/packages/00/8d/e97f6c96c891d457c8479d92a514ba194d0412f981d72c70341ee18488ed/aiohttp-3.14.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:367a9314fdc79dab0fac96e216cb41dd73c85bdca85306ce8999118ba7e0f333", size = 1710114, upload-time = "2026-06-07T21:08:20.892Z" },
|
|
69
|
+
{ url = "https://files.pythonhosted.org/packages/6f/e6/aa8d7e863048c8fceb5cd6ce74017311cec3ead07847387e12265fb4444e/aiohttp-3.14.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:a24f677ebe83749039e7bdf862ff0bbb16818ae4193d4ef96505e269375bcce0", size = 1802541, upload-time = "2026-06-07T21:08:23.044Z" },
|
|
70
|
+
{ url = "https://files.pythonhosted.org/packages/83/a8/72193137de57fda4ebfae4563182d082c8856e3b6e9871d0b46f028fb369/aiohttp-3.14.1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:c83afe0ba876be7e943d2e0ba645809ad441575d2840c895c21ee5de93b9377a", size = 1875776, upload-time = "2026-06-07T21:08:25.288Z" },
|
|
71
|
+
{ url = "https://files.pythonhosted.org/packages/a0/18/938441025db6769a3464596b2410af3afde0b21eb2f204c6f766f68af4bd/aiohttp-3.14.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:634e385930fb6d2d479cf3aa66515955863b77a5e3c2b5894ca259a25b308602", size = 1760329, upload-time = "2026-06-07T21:08:27.363Z" },
|
|
72
|
+
{ url = "https://files.pythonhosted.org/packages/60/29/bf2496b4065e76e09fe48015aaffe5ce161d8f089b06ac6982070f653076/aiohttp-3.14.1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:eeea07c4397bbc57719c4eed8f9c284874d4f175f9b6d57f7a1546b976d455ca", size = 1587293, upload-time = "2026-06-07T21:08:29.805Z" },
|
|
73
|
+
{ url = "https://files.pythonhosted.org/packages/49/a2/2136674d52123b1354bd05dd5753c318db47dc0c927cc70b27bab3755456/aiohttp-3.14.1-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:335c0cc3e3545ce98dcb9cfcb836f40c3411f43fa03dab757597d80c89af8a35", size = 1714756, upload-time = "2026-06-07T21:08:32.094Z" },
|
|
74
|
+
{ url = "https://files.pythonhosted.org/packages/a7/b9/e5fd2e6f915503081c0f9b1e8540947037929c70c191da2e4d54b31a21a1/aiohttp-3.14.1-cp314-cp314-musllinux_1_2_armv7l.whl", hash = "sha256:ae6be797afdef264e8a84864a85b196ca06045586481b3df8a967322fd2fa844", size = 1721052, upload-time = "2026-06-07T21:08:34.167Z" },
|
|
75
|
+
{ url = "https://files.pythonhosted.org/packages/63/5a/2833e324a2263e104e31e2e91bc5bbee81bc499afd32203faee048a883f0/aiohttp-3.14.1-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:8560b4d712474335d08907db7973f71912d3a9a8f1dee992ec06b5d2fe359496", size = 1766888, upload-time = "2026-06-07T21:08:36.95Z" },
|
|
76
|
+
{ url = "https://files.pythonhosted.org/packages/57/fa/dea6511870913162f3b2e8c42a7614eb203a4540b8c2da43e0bfb0548f3c/aiohttp-3.14.1-cp314-cp314-musllinux_1_2_riscv64.whl", hash = "sha256:2b7edd08e0a5deb1e8564a2fcd8f4561014a3f05252334671bbf55ddd47db0e5", size = 1581679, upload-time = "2026-06-07T21:08:39.292Z" },
|
|
77
|
+
{ url = "https://files.pythonhosted.org/packages/14/bd/3cf0d55e71784b33534e9710a67d382d900598b4787fbce6cc7317f8c42a/aiohttp-3.14.1-cp314-cp314-musllinux_1_2_s390x.whl", hash = "sha256:b6ff7fcee63287ae57b5df3e4f5957ce032122802509246dec1a5bcc55904c95", size = 1782021, upload-time = "2026-06-07T21:08:41.407Z" },
|
|
78
|
+
{ url = "https://files.pythonhosted.org/packages/c1/af/14bb5843eccbe234f4dfb78ab73e549d99727247e62ae5d62cbd22eaf5b0/aiohttp-3.14.1-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:6ffbb2f4ec1ceaff7e07d43922954da26b223d188bf30658e561b98e23089444", size = 1742574, upload-time = "2026-06-07T21:08:43.795Z" },
|
|
79
|
+
{ url = "https://files.pythonhosted.org/packages/f2/1e/fbeb7af9210a67ac0f9c9bec0f8f4568497924e33137a3d5b48e1cf85f3f/aiohttp-3.14.1-cp314-cp314-win32.whl", hash = "sha256:a9875b46d910cff3ea2f5962f9d266b465459fe634e22556ab9bd6fc1192eea0", size = 457773, upload-time = "2026-06-07T21:08:46.168Z" },
|
|
80
|
+
{ url = "https://files.pythonhosted.org/packages/f0/2b/13e8d741a9ec5db7d900c060554cf8352ab85e44e2a4469ebb9d377bda17/aiohttp-3.14.1-cp314-cp314-win_amd64.whl", hash = "sha256:af8b4b81a960eeaf1234971ac3cd0ba5901f3cd42eae42a46b4d089a8b492719", size = 485001, upload-time = "2026-06-07T21:08:48.401Z" },
|
|
81
|
+
{ url = "https://files.pythonhosted.org/packages/df/30/491acfa2c4d6c3ff59c49a14fc1b50be3241e25bbb0c84c09e2da4d11395/aiohttp-3.14.1-cp314-cp314-win_arm64.whl", hash = "sha256:cf4491381b1b57425c315a56a439251b1bdac07b2275f19a8c44bc57744532ec", size = 453809, upload-time = "2026-06-07T21:08:50.7Z" },
|
|
82
|
+
{ url = "https://files.pythonhosted.org/packages/34/e3/19dbe1a1f4cc6230eb9e314de7fe68053b0992f9302b27d12141a0b5db53/aiohttp-3.14.1-cp314-cp314t-macosx_10_15_universal2.whl", hash = "sha256:819c054312f1af92947e6a55883d1b66feefab11531a7fc45e0fb9b63880b5c2", size = 793320, upload-time = "2026-06-07T21:08:52.775Z" },
|
|
83
|
+
{ url = "https://files.pythonhosted.org/packages/7f/20/1b7182219ba1b108430d6e4dc53d25ae02dcfcf5a045b33af4e8c5167527/aiohttp-3.14.1-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:10ee9c1753a8f706345b22496c79fbddb5be0599e0823f3738b1534058e25340", size = 529077, upload-time = "2026-06-07T21:08:55Z" },
|
|
84
|
+
{ url = "https://files.pythonhosted.org/packages/b9/c8/14ce60ec31a2e5f5274bb17d383a6f7a3aabca31ac04eee05585bbadab16/aiohttp-3.14.1-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:1601cc37baf5750ccacae618ec2daf020769581695550e3b654a911f859c563d", size = 532476, upload-time = "2026-06-07T21:08:57.176Z" },
|
|
85
|
+
{ url = "https://files.pythonhosted.org/packages/7e/02/9ac85e081e53da2e061b02fa7758fe0a12d17b8ce2d1f5e6c7cb76730328/aiohttp-3.14.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4d6e0ac9da31c9c04c84e1c0182ad8d6df35965a85cae29cd71d089621b3ae94", size = 1922347, upload-time = "2026-06-07T21:08:59.563Z" },
|
|
86
|
+
{ url = "https://files.pythonhosted.org/packages/c0/3e/d3ba07a0ab38b5389e10bec4362d21e10a4f667cba2d79ba30837b3a5059/aiohttp-3.14.1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:9e8f2d660c350b3d0e259c7a7e3d9b7fc8b41210cbcc3d4a7076ff0a5e5c2fdc", size = 1786465, upload-time = "2026-06-07T21:09:01.909Z" },
|
|
87
|
+
{ url = "https://files.pythonhosted.org/packages/0b/cb/e2ee978a00cfb2df829704a69528b18154eba5939f45bc1efa8f33aee4c5/aiohttp-3.14.1-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:4691802dda97be727f79d86818acaad7eb8e9252626a1d6b519fedbb92d5e251", size = 1909423, upload-time = "2026-06-07T21:09:04.357Z" },
|
|
88
|
+
{ url = "https://files.pythonhosted.org/packages/73/5d/1430334858b1022b58ae50399a918f0bd6fe8fa7fa183598d657ff61e040/aiohttp-3.14.1-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:c389c482a7e9b9dc3ee2701ac46c4125297a3818875b9c305ddb603c04828fd1", size = 2001906, upload-time = "2026-06-07T21:09:06.722Z" },
|
|
89
|
+
{ url = "https://files.pythonhosted.org/packages/66/4e/560c7472d3d198a23aa5c8b19a5115bf6a9b77b7d3e4bb363da320430ad2/aiohttp-3.14.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:fc0cacab7ba4e56f0f81c82a98c09bed2f39c940107b03a34b168bdf7597edd3", size = 1877095, upload-time = "2026-06-07T21:09:09.011Z" },
|
|
90
|
+
{ url = "https://files.pythonhosted.org/packages/0d/f1/4745806578d447db4a784a8591e2dae3afdfc2bcb96f8f81271b13df6543/aiohttp-3.14.1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:979ed4717f59b8bb12e3963378fa285d93d367e15bcd66c721311826d3c44a6c", size = 1676222, upload-time = "2026-06-07T21:09:11.461Z" },
|
|
91
|
+
{ url = "https://files.pythonhosted.org/packages/6a/c9/48255813cca749a229ef0ab476004ec623728ad79a9c0840616f6c076325/aiohttp-3.14.1-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:38e1e7daaea81df51c952e18483f323d878499a1e2bfe564790e0f9701d6f203", size = 1842922, upload-time = "2026-06-07T21:09:14.118Z" },
|
|
92
|
+
{ url = "https://files.pythonhosted.org/packages/3d/c0/bbd054e2bee909f529523a5af3891052606af5143c09f5f183ec3b234676/aiohttp-3.14.1-cp314-cp314t-musllinux_1_2_armv7l.whl", hash = "sha256:4132e72c608fe9fecb8f409113567605915b83e9bdd3ea56538d2f9cd35002f1", size = 1825035, upload-time = "2026-06-07T21:09:16.447Z" },
|
|
93
|
+
{ url = "https://files.pythonhosted.org/packages/a8/ae/90395d4376deceb74e09ec26b6adf7d2015a6f8802d6d84446af860fef04/aiohttp-3.14.1-cp314-cp314t-musllinux_1_2_ppc64le.whl", hash = "sha256:eefd9cc9b6d4a2db5f00a26bc3e4f9acf71926a6ec557cd56c9c6f27c290b665", size = 1849512, upload-time = "2026-06-07T21:09:18.742Z" },
|
|
94
|
+
{ url = "https://files.pythonhosted.org/packages/93/bd/fb25f3049957553d4ce0ba6ae480aa2f592a6985497fca590837d16c1be0/aiohttp-3.14.1-cp314-cp314t-musllinux_1_2_riscv64.whl", hash = "sha256:b165790117eea512d7f3fb22f1f6dad3d55a7189571993eb015591c1401276d1", size = 1668571, upload-time = "2026-06-07T21:09:21.458Z" },
|
|
95
|
+
{ url = "https://files.pythonhosted.org/packages/3f/22/7f73303d64dd567ff3addca90b556690ed1233a47b8f55d242fb90af3681/aiohttp-3.14.1-cp314-cp314t-musllinux_1_2_s390x.whl", hash = "sha256:ed09c7eb1c391271c2ed0314a51903e72a3acb653d5ccfc264cdf3ef11f8269d", size = 1881159, upload-time = "2026-06-07T21:09:23.813Z" },
|
|
96
|
+
{ url = "https://files.pythonhosted.org/packages/44/be/0474c5a8b5640e1e4aa1923430a91f4151be82e511373fe764189b89aef5/aiohttp-3.14.1-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:99abd37084b82f5830c635fddd0b4993b9742a66eb746dacf433c8590e8f9e3c", size = 1841409, upload-time = "2026-06-07T21:09:26.207Z" },
|
|
97
|
+
{ url = "https://files.pythonhosted.org/packages/7b/3c/bb4a7cba26956cb3da4553cc2056cf67be5b5ff6e6d8fa4fbdff73bfb7ae/aiohttp-3.14.1-cp314-cp314t-win32.whl", hash = "sha256:47ddf841cdecc810749921d25606dee45857d12d2ad5ddb7b5bd7eab12e4b365", size = 494166, upload-time = "2026-06-07T21:09:28.505Z" },
|
|
98
|
+
{ url = "https://files.pythonhosted.org/packages/8a/84/ec80c2c1f66a952555a9f86df6b33af65108a6febfa0471b69013a12f807/aiohttp-3.14.1-cp314-cp314t-win_amd64.whl", hash = "sha256:5e78b522b7a6e27e0b25d19b247b75039ac4c94f99823e3c9e53ae1603a9f7e9", size = 530255, upload-time = "2026-06-07T21:09:30.843Z" },
|
|
99
|
+
{ url = "https://files.pythonhosted.org/packages/2a/71/6e22be134a4061ada85a92951b842f2657f17d926b727f3f94c56ae963d6/aiohttp-3.14.1-cp314-cp314t-win_arm64.whl", hash = "sha256:90d53f1609c29ccc2193945ef732428382a28f78d0456ae4d3daf0d48b74f0f6", size = 469640, upload-time = "2026-06-07T21:09:33.028Z" },
|
|
100
100
|
]
|
|
101
101
|
|
|
102
102
|
[package.optional-dependencies]
|
|
@@ -402,20 +402,20 @@ wheels = [
|
|
|
402
402
|
|
|
403
403
|
[[package]]
|
|
404
404
|
name = "distlib"
|
|
405
|
-
version = "0.4.
|
|
405
|
+
version = "0.4.2"
|
|
406
406
|
source = { registry = "https://pypi.org/simple" }
|
|
407
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
407
|
+
sdist = { url = "https://files.pythonhosted.org/packages/46/8d/873e9252ea2c0e0c857884e0a2899ec43ade132345df1925ef24cbe64f18/distlib-0.4.2.tar.gz", hash = "sha256:baeb401c90f27acd15c4861ae0847d1e731c27ac3dbf4210643ba61fa1e813db", size = 614914, upload-time = "2026-06-08T16:24:15.439Z" }
|
|
408
408
|
wheels = [
|
|
409
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
409
|
+
{ url = "https://files.pythonhosted.org/packages/c1/60/aa891c893821d4d127292ed66c6940d1d715894bd5a0ce048056bc641773/distlib-0.4.2-py2.py3-none-any.whl", hash = "sha256:ca4cb11e5d746b5ec13c199cbf19ae27a241f89702b54e153a74332955446067", size = 470510, upload-time = "2026-06-08T16:24:13.208Z" },
|
|
410
410
|
]
|
|
411
411
|
|
|
412
412
|
[[package]]
|
|
413
413
|
name = "filelock"
|
|
414
|
-
version = "3.29.
|
|
414
|
+
version = "3.29.1"
|
|
415
415
|
source = { registry = "https://pypi.org/simple" }
|
|
416
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
416
|
+
sdist = { url = "https://files.pythonhosted.org/packages/1f/f9/f38573ed5844586db374d085911740a501ccfa373b455fc9413f09f85237/filelock-3.29.1.tar.gz", hash = "sha256:d97e6b1b9757569626c58caa07dc4beb1613f4a2938b1e8cc81afca398906c9e", size = 59335, upload-time = "2026-06-03T15:19:04.053Z" }
|
|
417
417
|
wheels = [
|
|
418
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
418
|
+
{ url = "https://files.pythonhosted.org/packages/4c/a0/614c5fe402fd88951df45f4dda2fa3b4e17a99ecd92340771929169b3b95/filelock-3.29.1-py3-none-any.whl", hash = "sha256:85199dfd706869641b72b2e8955d5416a4b2b7dc4b0e8e6d97b4cc1299a6983b", size = 40750, upload-time = "2026-06-03T15:19:02.959Z" },
|
|
419
419
|
]
|
|
420
420
|
|
|
421
421
|
[[package]]
|
|
@@ -534,11 +534,11 @@ wheels = [
|
|
|
534
534
|
|
|
535
535
|
[[package]]
|
|
536
536
|
name = "idna"
|
|
537
|
-
version = "3.
|
|
537
|
+
version = "3.18"
|
|
538
538
|
source = { registry = "https://pypi.org/simple" }
|
|
539
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
539
|
+
sdist = { url = "https://files.pythonhosted.org/packages/cd/63/9496c57188a2ee585e0f1db071d75089a11e98aa86eb99d9d7618fc1edce/idna-3.18.tar.gz", hash = "sha256:ffb385a7e039654cef1ab9ef32c6fafe283c0c0467bba1d9029738ce4a14a848", size = 196711, upload-time = "2026-06-02T14:34:07.794Z" }
|
|
540
540
|
wheels = [
|
|
541
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
541
|
+
{ url = "https://files.pythonhosted.org/packages/1e/5e/d4e9f1a599fb8e573b7b87160658329fbf28d19eac2718f51fc3def3aa5a/idna-3.18-py3-none-any.whl", hash = "sha256:7f952cbe720b688055e3f87de14f5c3e5fdaa8bc3928985c4077ca689de849a2", size = 65455, upload-time = "2026-06-02T14:34:06.319Z" },
|
|
542
542
|
]
|
|
543
543
|
|
|
544
544
|
[[package]]
|
|
@@ -724,14 +724,14 @@ wheels = [
|
|
|
724
724
|
|
|
725
725
|
[[package]]
|
|
726
726
|
name = "object-storage-client"
|
|
727
|
-
version = "0.0.
|
|
727
|
+
version = "0.0.35"
|
|
728
728
|
source = { registry = "https://pypi.org/simple" }
|
|
729
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
729
|
+
sdist = { url = "https://files.pythonhosted.org/packages/56/c0/6a0df08fba3262523e6f33b4ff26ec1d28c5da4086b0b4a6bbf867b4cfdc/object_storage_client-0.0.35.tar.gz", hash = "sha256:310a6aaeac574a54dd8c0505edde121188027190dd2123a1ce7d864604a992e3", size = 68254, upload-time = "2026-06-09T14:43:33.964Z" }
|
|
730
730
|
wheels = [
|
|
731
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
732
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
733
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
734
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
731
|
+
{ url = "https://files.pythonhosted.org/packages/3c/ed/b0981b77871c1749028630a7148c807f05f7601f0934427d7084992823d5/object_storage_client-0.0.35-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:32c6da5456cf64328f2826ea3ee66ae17caa5470742d698ad08db2a27e0c0e25", size = 3333174, upload-time = "2026-06-09T14:43:39.684Z" },
|
|
732
|
+
{ url = "https://files.pythonhosted.org/packages/f2/85/b02714a0c328845fdef44d449e7018269ea28edef71e92bdb9abe4c1cf9e/object_storage_client-0.0.35-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ac4214d4dcc0a4a06b031cd4928cdaba07dde84fa16b954d8fc74cdb7caa6d25", size = 3769024, upload-time = "2026-06-09T14:43:32.755Z" },
|
|
733
|
+
{ url = "https://files.pythonhosted.org/packages/47/45/0969f5e6dda7d3c28ef7fc12c780bfda0ebc2049501d0847387751999be6/object_storage_client-0.0.35-cp314-cp314-manylinux_2_28_aarch64.whl", hash = "sha256:cf1103d4cb477112018e37d69100f4a708243aab6bf7f83887a56fb212a1543e", size = 3504105, upload-time = "2026-06-09T14:43:29.565Z" },
|
|
734
|
+
{ url = "https://files.pythonhosted.org/packages/fa/47/d0c6a34ec5fab7c63a10f0427242769ed21169042e3d8baa3a6de9491062/object_storage_client-0.0.35-cp314-cp314-win_amd64.whl", hash = "sha256:5b313a2d2f4e1f044ae367124646435c565785d5e47c93e96aded9bbf26bbdab", size = 3270586, upload-time = "2026-06-09T14:43:35.432Z" },
|
|
735
735
|
]
|
|
736
736
|
|
|
737
737
|
[[package]]
|
|
@@ -1158,9 +1158,9 @@ testing = [
|
|
|
1158
1158
|
[package.metadata]
|
|
1159
1159
|
requires-dist = [
|
|
1160
1160
|
{ name = "aiobotocore", marker = "extra == 'object-storage'", specifier = "~=3.7.0" },
|
|
1161
|
-
{ name = "aiohttp", extras = ["speedups"], marker = "extra == 'api-client'", specifier = ">=3.14.
|
|
1162
|
-
{ name = "aiohttp", extras = ["speedups"], marker = "extra == 'authn'", specifier = ">=3.14.
|
|
1163
|
-
{ name = "aiohttp", extras = ["speedups"], marker = "extra == 'soap-client'", specifier = ">=3.14.
|
|
1161
|
+
{ name = "aiohttp", extras = ["speedups"], marker = "extra == 'api-client'", specifier = ">=3.14.1,<3.15.0" },
|
|
1162
|
+
{ name = "aiohttp", extras = ["speedups"], marker = "extra == 'authn'", specifier = ">=3.14.1,<3.15.0" },
|
|
1163
|
+
{ name = "aiohttp", extras = ["speedups"], marker = "extra == 'soap-client'", specifier = ">=3.14.1,<3.15.0" },
|
|
1164
1164
|
{ name = "asyncpg", marker = "extra == 'database'", specifier = "~=0.31.0" },
|
|
1165
1165
|
{ name = "certifi", marker = "extra == 'api-client'", specifier = "~=2026.5.20" },
|
|
1166
1166
|
{ name = "certifi", marker = "extra == 'authn'", specifier = "~=2026.5.20" },
|
|
@@ -1169,7 +1169,7 @@ requires-dist = [
|
|
|
1169
1169
|
{ name = "lxml", marker = "extra == 'soap-client'", specifier = "~=6.1.1" },
|
|
1170
1170
|
{ name = "msgpack", specifier = "~=1.1.2" },
|
|
1171
1171
|
{ name = "msgspec", specifier = "~=0.21.1" },
|
|
1172
|
-
{ name = "object-storage-client", marker = "extra == 'object-storage'", specifier = "~=0.0.
|
|
1172
|
+
{ name = "object-storage-client", marker = "extra == 'object-storage'", specifier = "~=0.0.35" },
|
|
1173
1173
|
{ name = "pydantic-settings", specifier = "~=2.14.1" },
|
|
1174
1174
|
{ name = "python3-commons", extras = ["api-client"], marker = "extra == 'authn'" },
|
|
1175
1175
|
{ name = "python3-commons", extras = ["api-client"], marker = "extra == 'authz'" },
|
|
@@ -1281,27 +1281,27 @@ wheels = [
|
|
|
1281
1281
|
|
|
1282
1282
|
[[package]]
|
|
1283
1283
|
name = "ruff"
|
|
1284
|
-
version = "0.15.
|
|
1285
|
-
source = { registry = "https://pypi.org/simple" }
|
|
1286
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
1287
|
-
wheels = [
|
|
1288
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1289
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1290
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1291
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1292
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1293
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1294
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1295
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1296
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1297
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1298
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1299
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1300
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1301
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1302
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1303
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1304
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1284
|
+
version = "0.15.16"
|
|
1285
|
+
source = { registry = "https://pypi.org/simple" }
|
|
1286
|
+
sdist = { url = "https://files.pythonhosted.org/packages/a6/bd/5f7ec371001337d8fa61701c186ff8b613ecac1651848c5950f4c4d5f2e9/ruff-0.15.16.tar.gz", hash = "sha256:d05e78d38c78caf020b03789e25106c93017db5a0cb6e2819885018c61343b78", size = 4714267, upload-time = "2026-06-04T16:33:09.974Z" }
|
|
1287
|
+
wheels = [
|
|
1288
|
+
{ url = "https://files.pythonhosted.org/packages/0c/42/53ef1c3953f157956db9bf7861e3bc50b9b887ce93300aa48cdba8336fe6/ruff-0.15.16-py3-none-linux_armv6l.whl", hash = "sha256:6ac3c0b3969cc6cf6b158c4e2f8f682acb58e7d700d8a44b65ecdc72d66ab0b2", size = 10709025, upload-time = "2026-06-04T16:32:51.935Z" },
|
|
1289
|
+
{ url = "https://files.pythonhosted.org/packages/93/9a/a79159346f19134a956607754e57d8d128f7a4c00f4ad2f7514d224c172c/ruff-0.15.16-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:197c207ed75ffba54a0dec23db4aa939a27a3053073e085e0042433cbdc58e4a", size = 11063550, upload-time = "2026-06-04T16:32:42.24Z" },
|
|
1290
|
+
{ url = "https://files.pythonhosted.org/packages/bc/72/3ce2ac000a5299ec238e01f51397b3b653c93b077d9b1bfe8715bb895f20/ruff-0.15.16-py3-none-macosx_11_0_arm64.whl", hash = "sha256:3a39fec45ab316cc23e7558f23fea4a70403ddb5648ea9a4a3854a16973d0071", size = 10421345, upload-time = "2026-06-04T16:32:37.251Z" },
|
|
1291
|
+
{ url = "https://files.pythonhosted.org/packages/b0/c2/cc7fad3ec9169373f5b6a18f1917b91080feec40c3f9658334a1d28e2f03/ruff-0.15.16-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ba93191d79003116b95128c9d306e045200fdbd0bccb782b110f3cd1d4abc5cf", size = 10757217, upload-time = "2026-06-04T16:32:54.722Z" },
|
|
1292
|
+
{ url = "https://files.pythonhosted.org/packages/69/d2/3474009eaa0a65b31fa7152a2fad5e2f050c640ceb1e6b02ee6922e94c82/ruff-0.15.16-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c6ee4b90520630120ef032aa5cc10db483852dff950e78b1d717e2993a61ac8d", size = 10507035, upload-time = "2026-06-04T16:33:05.343Z" },
|
|
1293
|
+
{ url = "https://files.pythonhosted.org/packages/ca/81/b7ae6ccbd11f0c8dc3d5d67fc4be9b57ff57ca86ba56152021378e1277f2/ruff-0.15.16-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4e4215bc938bc3c8215c1472c1aa437e310fee20cd427335fec9d7e609563628", size = 11255291, upload-time = "2026-06-04T16:32:49.49Z" },
|
|
1294
|
+
{ url = "https://files.pythonhosted.org/packages/d9/e1/46e526f1a7cc90857ce6ddf25fbb77eb6568651ac38d71b033af07076dd5/ruff-0.15.16-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7c8d26be963b090f10e29abc8b3e74a2a321f6fa34e02424e30b5af89350ecbb", size = 12124922, upload-time = "2026-06-04T16:33:07.821Z" },
|
|
1295
|
+
{ url = "https://files.pythonhosted.org/packages/1a/da/5c791b088b596b24d0deb967fa28ae02ad751a140c0b9ea81c5ab915d6c0/ruff-0.15.16-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f198cf4123602a2280ed46c307bcbafe41758d6fee5b456b6b6058ca1514b3b4", size = 11332186, upload-time = "2026-06-04T16:33:02.971Z" },
|
|
1296
|
+
{ url = "https://files.pythonhosted.org/packages/72/11/5da87abe20047c8962361473923ebb2f62b595250126aadfad8c20649c1e/ruff-0.15.16-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bb27515fa6240fb586ae82b901a59e67d24acff86f2190b433dc542fe0435aeb", size = 11373541, upload-time = "2026-06-04T16:32:47.007Z" },
|
|
1297
|
+
{ url = "https://files.pythonhosted.org/packages/fe/2a/8554754c23a854ae3fd6b507e36ad61ddb121e298c6d5d617dec94ed0f14/ruff-0.15.16-py3-none-manylinux_2_31_riscv64.whl", hash = "sha256:a267c46ba1593fc26b8eecbea050b39d40c0b6bb7781ee11c90a02cd10032951", size = 11353014, upload-time = "2026-06-04T16:32:34.795Z" },
|
|
1298
|
+
{ url = "https://files.pythonhosted.org/packages/62/25/62ea41529ec89f742ea3fed9cb1059c72877ec7cf9b9e99ac9cf3294d1d9/ruff-0.15.16-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:528c68f39a91498a8d50e91ff5985df3d105782bab49cc378e73ac26bff083e8", size = 10737467, upload-time = "2026-06-04T16:32:26.348Z" },
|
|
1299
|
+
{ url = "https://files.pythonhosted.org/packages/90/17/334d3ad9de4d40f9dd58fdd09e35ce64553bb501e2f19a839e2fb6be14fc/ruff-0.15.16-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:7ed55c58950df60589a9a7a5d2f8fa5f54ebd287163be805adfe6ee95a9de123", size = 10521910, upload-time = "2026-06-04T16:32:32.54Z" },
|
|
1300
|
+
{ url = "https://files.pythonhosted.org/packages/4d/bd/3ac7c6ae77a885c1004b3dda2446ea401768d24f851c14b4ad4b24f6639c/ruff-0.15.16-py3-none-musllinux_1_2_i686.whl", hash = "sha256:d482feaf51512b50f9790ceb417a56a61dd1e9d9bf967662b9ed27c01b34f53a", size = 10979190, upload-time = "2026-06-04T16:32:57.492Z" },
|
|
1301
|
+
{ url = "https://files.pythonhosted.org/packages/33/d7/609546e6a413c3f216fbf2a50c928f97c80939154f6a0503114094a86191/ruff-0.15.16-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:1e15bc8c94513dae2a40cc9ef07c94fdd4ecc9e29dabebeebe170f952322c9e3", size = 11477014, upload-time = "2026-06-04T16:32:44.687Z" },
|
|
1302
|
+
{ url = "https://files.pythonhosted.org/packages/74/0d/f2cd247ad32633a5c36e97141a2c21b11c6279f7957bc2ff360b1e08fddd/ruff-0.15.16-py3-none-win32.whl", hash = "sha256:580378f7bd4aa25f72e74aa54948a9622f142b1e509521dd10902e886681cc1e", size = 10735541, upload-time = "2026-06-04T16:32:30.145Z" },
|
|
1303
|
+
{ url = "https://files.pythonhosted.org/packages/8b/9e/02e845ef151b1dee585e55c4739f8e1734ae1d9f1221dff65761c162208b/ruff-0.15.16-py3-none-win_amd64.whl", hash = "sha256:408256017284eddf98fff77b29aa4fb30f586042d535b2d9befc6512f400aaec", size = 11843403, upload-time = "2026-06-04T16:32:39.76Z" },
|
|
1304
|
+
{ url = "https://files.pythonhosted.org/packages/15/19/016553f86f207450aebebc2b2b5088d086b901cc8186c02ac4284db3bd88/ruff-0.15.16-py3-none-win_arm64.whl", hash = "sha256:8cd61783afb39638a7133ef0d2dfb1e91277593962f81b5a8423eb0b888a6121", size = 11134555, upload-time = "2026-06-04T16:33:00.136Z" },
|
|
1305
1305
|
]
|
|
1306
1306
|
|
|
1307
1307
|
[[package]]
|
|
@@ -1370,27 +1370,27 @@ asyncio = [
|
|
|
1370
1370
|
|
|
1371
1371
|
[[package]]
|
|
1372
1372
|
name = "ty"
|
|
1373
|
-
version = "0.0.
|
|
1374
|
-
source = { registry = "https://pypi.org/simple" }
|
|
1375
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
1376
|
-
wheels = [
|
|
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/
|
|
1387
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1388
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1389
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1390
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1391
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1392
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1393
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1373
|
+
version = "0.0.46"
|
|
1374
|
+
source = { registry = "https://pypi.org/simple" }
|
|
1375
|
+
sdist = { url = "https://files.pythonhosted.org/packages/5a/7d/d95b5a9dea83472006be3ce5e480028c44b34138d84d0172e910f287fb69/ty-0.0.46.tar.gz", hash = "sha256:c6c2d7105b5633b49950b4c3a90d1ed2613eb9d794ad582bbbf6c4ffcb93accf", size = 5832380, upload-time = "2026-06-09T03:28:05.056Z" }
|
|
1376
|
+
wheels = [
|
|
1377
|
+
{ url = "https://files.pythonhosted.org/packages/0e/24/f9f7533c391610521f4164e6b8e37ef72d0c1ee8651bc0d9ce9e658b953b/ty-0.0.46-py3-none-linux_armv6l.whl", hash = "sha256:5e716337994699cbc1a1a7b7a3e6622306f2574c710330f9d9691c2c3d8391b0", size = 11756264, upload-time = "2026-06-09T03:28:20.112Z" },
|
|
1378
|
+
{ url = "https://files.pythonhosted.org/packages/66/49/ff3d13655b9b5cc8176f4c3446bf7ec2df43c8ad9e5272d4adc5d952fa45/ty-0.0.46-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:51d618dec5403635690d0e3e298cd0ad3d84ebc6a576652939ef30ce96fce4b2", size = 11492723, upload-time = "2026-06-09T03:28:13.23Z" },
|
|
1379
|
+
{ url = "https://files.pythonhosted.org/packages/82/4a/e7e3209e353c5835c7756339bbcdfda10852407b80fbb9ed46c17241873a/ty-0.0.46-py3-none-macosx_11_0_arm64.whl", hash = "sha256:acbafd6a2351b07a6cf4c945b0b1d47f6d2826faac2526a351dfa74d3a3cc664", size = 10892822, upload-time = "2026-06-09T03:27:51.179Z" },
|
|
1380
|
+
{ url = "https://files.pythonhosted.org/packages/6c/20/4390c90434a9ddefcecb65e8df00e4c2700e9739dc0baf58bed36d25f713/ty-0.0.46-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:de5df602ffd760612ae36602bbad69b0123ff6cffd92e62aa92b7709317d69e3", size = 11408745, upload-time = "2026-06-09T03:27:58.049Z" },
|
|
1381
|
+
{ url = "https://files.pythonhosted.org/packages/75/0c/f13a1bf9c6798530c773667095a6cf8f73ec9721db359423e7249bff7fbc/ty-0.0.46-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7abf5a10b30d8641faad90f6a19989daec941bb90261159e05cfeb04d2012046", size = 11544432, upload-time = "2026-06-09T03:27:53.519Z" },
|
|
1382
|
+
{ url = "https://files.pythonhosted.org/packages/56/69/eb3710c13dff846a0362df04fadd8a39b64ccc244c0d02ce5285ede8eae5/ty-0.0.46-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8770404139c6ccee2ce2fc226478cfa4100915133c876c257e52197b8b92051d", size = 12031228, upload-time = "2026-06-09T03:28:29.816Z" },
|
|
1383
|
+
{ url = "https://files.pythonhosted.org/packages/e9/68/5f5db9c84c1d44acdc67281089b372d9d818ee68123a60c59c66187095e2/ty-0.0.46-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f960d5a6e4860076924d2b86891d9872c4a3daa4663fb416e640b22cf3dbf68e", size = 12596073, upload-time = "2026-06-09T03:28:25.204Z" },
|
|
1384
|
+
{ url = "https://files.pythonhosted.org/packages/14/be/cfd0bb272e6a1491f6de30c60da1f39c2b3c3524ec64a5c92b71365c9185/ty-0.0.46-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1d9000a4a3ed08fc37e8a2ff0b801cde06e1c2af3bc053677744bb5a1b751030", size = 12284885, upload-time = "2026-06-09T03:28:10.58Z" },
|
|
1385
|
+
{ url = "https://files.pythonhosted.org/packages/a8/3a/2cd541f6320f5d6f70a45725c4e1016efedd5545348bb23b47ffb3e4c724/ty-0.0.46-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d1160e6dc86536109ab755f7142f36f4dda5333c8330cf230d61819494d27125", size = 12079480, upload-time = "2026-06-09T03:27:55.847Z" },
|
|
1386
|
+
{ url = "https://files.pythonhosted.org/packages/de/91/8e0075bc6568fb477e7ef4d805c67fa6902b692cb4419e0bf5ce3c04c5bc/ty-0.0.46-py3-none-manylinux_2_31_riscv64.whl", hash = "sha256:b619c0efe007731f8221fa787701bfa4402da7a83eb26c61ae25e77b6ace6384", size = 12316547, upload-time = "2026-06-09T03:28:08.28Z" },
|
|
1387
|
+
{ url = "https://files.pythonhosted.org/packages/00/28/b96cbfeda019a4044c6a8cd06ff84d08b631d4ba7d9a1e6dc0311df3563a/ty-0.0.46-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:ad98fccb6a8a94c4121b993761a0deee602f5826c4162e0a91f4f8118ddadd42", size = 11392846, upload-time = "2026-06-09T03:28:00.418Z" },
|
|
1388
|
+
{ url = "https://files.pythonhosted.org/packages/3b/d0/4d77f699a95ac7a13b94ca1a58682667cfe974f91557d9e2a9fc0b808a7f/ty-0.0.46-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:74536b13c3cc3f5944408669c202d4c57c3d19ff154732df8e6145718aef9191", size = 11559017, upload-time = "2026-06-09T03:28:17.619Z" },
|
|
1389
|
+
{ url = "https://files.pythonhosted.org/packages/88/62/1d6f6b51c2b132da8011c6a41ead0c1fd2a0b17ea72304bcf6ce084d581a/ty-0.0.46-py3-none-musllinux_1_2_i686.whl", hash = "sha256:5e50b1e96ced41b609e24ed27d9e4f508584ed7f4d0bb717ca8c8d75d2fd1b7c", size = 11666509, upload-time = "2026-06-09T03:28:22.454Z" },
|
|
1390
|
+
{ url = "https://files.pythonhosted.org/packages/fe/9a/6643894bc12cb30c281f4c8bf37f6d30c1fbd9484ef39a12b0ea6dae3c1c/ty-0.0.46-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:0a7d9f58d26d938e5d2f607481b7a412d8c00d675a1ec72004fa9d6b3b9def99", size = 12180448, upload-time = "2026-06-09T03:28:32.329Z" },
|
|
1391
|
+
{ url = "https://files.pythonhosted.org/packages/86/68/0f3b7bb03a7da676ef51b1c0af0bde1e500d69d5f0c807ed63b6f30b66dd/ty-0.0.46-py3-none-win32.whl", hash = "sha256:26db0ce89c573e60132d14e9688c9329a1633b1a8c26fe457025c7c406f7d5e6", size = 10960002, upload-time = "2026-06-09T03:28:02.832Z" },
|
|
1392
|
+
{ url = "https://files.pythonhosted.org/packages/b1/f4/91ff618b2dee39d0633d23e1adac0174aa1de80df17e270acac534034dbc/ty-0.0.46-py3-none-win_amd64.whl", hash = "sha256:90e8e6d446b9cb7cb4bede9fca7b3c99fd1e2355605ecf431c131a51db2a5e93", size = 12097413, upload-time = "2026-06-09T03:28:27.495Z" },
|
|
1393
|
+
{ url = "https://files.pythonhosted.org/packages/e5/2e/300174fca375a27a7c28dd80e990d857d7b3e3b25980c65063f980aa2f17/ty-0.0.46-py3-none-win_arm64.whl", hash = "sha256:ebd320d82605079b901a095dc4711037a0c488b4ace79a602fef4df0d3f4cf74", size = 11439595, upload-time = "2026-06-09T03:28:15.355Z" },
|
|
1394
1394
|
]
|
|
1395
1395
|
|
|
1396
1396
|
[[package]]
|
|
@@ -1421,11 +1421,11 @@ wheels = [
|
|
|
1421
1421
|
|
|
1422
1422
|
[[package]]
|
|
1423
1423
|
name = "types-awscrt"
|
|
1424
|
-
version = "0.
|
|
1424
|
+
version = "0.34.1"
|
|
1425
1425
|
source = { registry = "https://pypi.org/simple" }
|
|
1426
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
1426
|
+
sdist = { url = "https://files.pythonhosted.org/packages/3e/59/44409a8fc06b444ab1a6f71dcb29d49a6e17e02424345eb51b051bebb345/types_awscrt-0.34.1.tar.gz", hash = "sha256:559aa04250f6a419a617dfb788f3e10903aaf74700ef23e521b64a411b83b803", size = 19062, upload-time = "2026-06-05T04:40:10.689Z" }
|
|
1427
1427
|
wheels = [
|
|
1428
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1428
|
+
{ url = "https://files.pythonhosted.org/packages/e4/b1/214b12162b452ed6acd230065e6c587cde6b96871e3ce6d653f40888f8df/types_awscrt-0.34.1-py3-none-any.whl", hash = "sha256:20c752b6031544d8f694803c35174aee129f1be5ddf886ae46d22f7ffd9b7d75", size = 45688, upload-time = "2026-06-05T04:40:09.198Z" },
|
|
1429
1429
|
]
|
|
1430
1430
|
|
|
1431
1431
|
[[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.16 → python3_commons-0.21.1}/.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.20.16 → python3_commons-0.21.1}/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.16 → python3_commons-0.21.1}/src/python3_commons/serializers/__init__.py
RENAMED
|
File without changes
|
{python3_commons-0.20.16 → python3_commons-0.21.1}/src/python3_commons/serializers/common.py
RENAMED
|
File without changes
|
|
File without changes
|
{python3_commons-0.20.16 → python3_commons-0.21.1}/src/python3_commons/serializers/msgpack.py
RENAMED
|
File without changes
|
{python3_commons-0.20.16 → python3_commons-0.21.1}/src/python3_commons/serializers/msgspec.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python3_commons-0.20.16 → python3_commons-0.21.1}/src/python3_commons.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
{python3_commons-0.20.16 → python3_commons-0.21.1}/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.16 → python3_commons-0.21.1}/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
|