python3-commons 0.15.10__tar.gz → 0.15.11__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {python3_commons-0.15.10 → python3_commons-0.15.11}/.pre-commit-config.yaml +2 -2
- {python3_commons-0.15.10 → python3_commons-0.15.11}/PKG-INFO +2 -2
- {python3_commons-0.15.10 → python3_commons-0.15.11}/pyproject.toml +1 -1
- {python3_commons-0.15.10 → python3_commons-0.15.11}/src/python3_commons.egg-info/PKG-INFO +2 -2
- {python3_commons-0.15.10 → python3_commons-0.15.11}/src/python3_commons.egg-info/requires.txt +1 -1
- {python3_commons-0.15.10 → python3_commons-0.15.11}/uv.lock +131 -111
- {python3_commons-0.15.10 → python3_commons-0.15.11}/.coveragerc +0 -0
- {python3_commons-0.15.10 → python3_commons-0.15.11}/.devcontainer/Dockerfile +0 -0
- {python3_commons-0.15.10 → python3_commons-0.15.11}/.devcontainer/devcontainer.json +0 -0
- {python3_commons-0.15.10 → python3_commons-0.15.11}/.devcontainer/docker-compose.yml +0 -0
- {python3_commons-0.15.10 → python3_commons-0.15.11}/.env_template +0 -0
- {python3_commons-0.15.10 → python3_commons-0.15.11}/.github/workflows/checks.yml +0 -0
- {python3_commons-0.15.10 → python3_commons-0.15.11}/.github/workflows/python-publish.yaml +0 -0
- {python3_commons-0.15.10 → python3_commons-0.15.11}/.github/workflows/release-on-tag-push.yml +0 -0
- {python3_commons-0.15.10 → python3_commons-0.15.11}/.gitignore +0 -0
- {python3_commons-0.15.10 → python3_commons-0.15.11}/.python-version +0 -0
- {python3_commons-0.15.10 → python3_commons-0.15.11}/AUTHORS.rst +0 -0
- {python3_commons-0.15.10 → python3_commons-0.15.11}/CHANGELOG.rst +0 -0
- {python3_commons-0.15.10 → python3_commons-0.15.11}/LICENSE +0 -0
- {python3_commons-0.15.10 → python3_commons-0.15.11}/README.md +0 -0
- {python3_commons-0.15.10 → python3_commons-0.15.11}/README.rst +0 -0
- {python3_commons-0.15.10 → python3_commons-0.15.11}/docs/Makefile +0 -0
- {python3_commons-0.15.10 → python3_commons-0.15.11}/docs/_static/.gitignore +0 -0
- {python3_commons-0.15.10 → python3_commons-0.15.11}/docs/authors.rst +0 -0
- {python3_commons-0.15.10 → python3_commons-0.15.11}/docs/changelog.rst +0 -0
- {python3_commons-0.15.10 → python3_commons-0.15.11}/docs/conf.py +0 -0
- {python3_commons-0.15.10 → python3_commons-0.15.11}/docs/index.rst +0 -0
- {python3_commons-0.15.10 → python3_commons-0.15.11}/docs/license.rst +0 -0
- {python3_commons-0.15.10 → python3_commons-0.15.11}/setup.cfg +0 -0
- {python3_commons-0.15.10 → python3_commons-0.15.11}/src/python3_commons/__init__.py +0 -0
- {python3_commons-0.15.10 → python3_commons-0.15.11}/src/python3_commons/api_client.py +0 -0
- {python3_commons-0.15.10 → python3_commons-0.15.11}/src/python3_commons/async_functools.py +0 -0
- {python3_commons-0.15.10 → python3_commons-0.15.11}/src/python3_commons/audit.py +0 -0
- {python3_commons-0.15.10 → python3_commons-0.15.11}/src/python3_commons/auth.py +0 -0
- {python3_commons-0.15.10 → python3_commons-0.15.11}/src/python3_commons/cache.py +0 -0
- {python3_commons-0.15.10 → python3_commons-0.15.11}/src/python3_commons/conf.py +0 -0
- {python3_commons-0.15.10 → python3_commons-0.15.11}/src/python3_commons/db/__init__.py +0 -0
- {python3_commons-0.15.10 → python3_commons-0.15.11}/src/python3_commons/db/helpers.py +0 -0
- {python3_commons-0.15.10 → python3_commons-0.15.11}/src/python3_commons/db/models/__init__.py +0 -0
- {python3_commons-0.15.10 → python3_commons-0.15.11}/src/python3_commons/db/models/auth.py +0 -0
- {python3_commons-0.15.10 → python3_commons-0.15.11}/src/python3_commons/db/models/common.py +0 -0
- {python3_commons-0.15.10 → python3_commons-0.15.11}/src/python3_commons/db/models/rbac.py +0 -0
- {python3_commons-0.15.10 → python3_commons-0.15.11}/src/python3_commons/db/models/users.py +0 -0
- {python3_commons-0.15.10 → python3_commons-0.15.11}/src/python3_commons/exceptions.py +0 -0
- {python3_commons-0.15.10 → python3_commons-0.15.11}/src/python3_commons/fs.py +0 -0
- {python3_commons-0.15.10 → python3_commons-0.15.11}/src/python3_commons/generators.py +0 -0
- {python3_commons-0.15.10 → python3_commons-0.15.11}/src/python3_commons/helpers.py +0 -0
- {python3_commons-0.15.10 → python3_commons-0.15.11}/src/python3_commons/log/__init__.py +0 -0
- {python3_commons-0.15.10 → python3_commons-0.15.11}/src/python3_commons/log/filters.py +0 -0
- {python3_commons-0.15.10 → python3_commons-0.15.11}/src/python3_commons/log/formatters.py +0 -0
- {python3_commons-0.15.10 → python3_commons-0.15.11}/src/python3_commons/object_storage.py +0 -0
- {python3_commons-0.15.10 → python3_commons-0.15.11}/src/python3_commons/permissions.py +0 -0
- {python3_commons-0.15.10 → python3_commons-0.15.11}/src/python3_commons/serializers/__init__.py +0 -0
- {python3_commons-0.15.10 → python3_commons-0.15.11}/src/python3_commons/serializers/common.py +0 -0
- {python3_commons-0.15.10 → python3_commons-0.15.11}/src/python3_commons/serializers/json.py +0 -0
- {python3_commons-0.15.10 → python3_commons-0.15.11}/src/python3_commons/serializers/msgpack.py +0 -0
- {python3_commons-0.15.10 → python3_commons-0.15.11}/src/python3_commons/serializers/msgspec.py +0 -0
- {python3_commons-0.15.10 → python3_commons-0.15.11}/src/python3_commons.egg-info/SOURCES.txt +0 -0
- {python3_commons-0.15.10 → python3_commons-0.15.11}/src/python3_commons.egg-info/dependency_links.txt +0 -0
- {python3_commons-0.15.10 → python3_commons-0.15.11}/src/python3_commons.egg-info/top_level.txt +0 -0
- {python3_commons-0.15.10 → python3_commons-0.15.11}/tests/__init__.py +0 -0
- {python3_commons-0.15.10 → python3_commons-0.15.11}/tests/integration/__init__.py +0 -0
- {python3_commons-0.15.10 → python3_commons-0.15.11}/tests/integration/test_cache.py +0 -0
- {python3_commons-0.15.10 → python3_commons-0.15.11}/tests/unit/__init__.py +0 -0
- {python3_commons-0.15.10 → python3_commons-0.15.11}/tests/unit/conftest.py +0 -0
- {python3_commons-0.15.10 → python3_commons-0.15.11}/tests/unit/log/__init__.py +0 -0
- {python3_commons-0.15.10 → python3_commons-0.15.11}/tests/unit/log/test_formatters.py +0 -0
- {python3_commons-0.15.10 → python3_commons-0.15.11}/tests/unit/test_async_functools.py +0 -0
- {python3_commons-0.15.10 → python3_commons-0.15.11}/tests/unit/test_audit.py +0 -0
- {python3_commons-0.15.10 → python3_commons-0.15.11}/tests/unit/test_helpers.py +0 -0
- {python3_commons-0.15.10 → python3_commons-0.15.11}/tests/unit/test_msgpack.py +0 -0
- {python3_commons-0.15.10 → python3_commons-0.15.11}/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.10.
|
|
3
|
+
rev: 0.10.7
|
|
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.4
|
|
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.15.
|
|
3
|
+
Version: 0.15.11
|
|
4
4
|
Summary: Re-usable Python3 code
|
|
5
5
|
Author-email: Oleg Korsak <kamikaze.is.waiting.you@gmail.com>
|
|
6
6
|
License-Expression: GPL-3.0
|
|
@@ -19,7 +19,7 @@ Requires-Dist: lxml~=6.0.2
|
|
|
19
19
|
Requires-Dist: msgpack~=1.1.2
|
|
20
20
|
Requires-Dist: msgspec==0.20.0
|
|
21
21
|
Requires-Dist: pydantic-settings~=2.13.1
|
|
22
|
-
Requires-Dist: SQLAlchemy[asyncio]~=2.0.
|
|
22
|
+
Requires-Dist: SQLAlchemy[asyncio]~=2.0.48
|
|
23
23
|
Requires-Dist: valkey[libvalkey]~=6.1.1
|
|
24
24
|
Requires-Dist: zeep~=4.3.2
|
|
25
25
|
Dynamic: license-file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: python3-commons
|
|
3
|
-
Version: 0.15.
|
|
3
|
+
Version: 0.15.11
|
|
4
4
|
Summary: Re-usable Python3 code
|
|
5
5
|
Author-email: Oleg Korsak <kamikaze.is.waiting.you@gmail.com>
|
|
6
6
|
License-Expression: GPL-3.0
|
|
@@ -19,7 +19,7 @@ Requires-Dist: lxml~=6.0.2
|
|
|
19
19
|
Requires-Dist: msgpack~=1.1.2
|
|
20
20
|
Requires-Dist: msgspec==0.20.0
|
|
21
21
|
Requires-Dist: pydantic-settings~=2.13.1
|
|
22
|
-
Requires-Dist: SQLAlchemy[asyncio]~=2.0.
|
|
22
|
+
Requires-Dist: SQLAlchemy[asyncio]~=2.0.48
|
|
23
23
|
Requires-Dist: valkey[libvalkey]~=6.1.1
|
|
24
24
|
Requires-Dist: zeep~=4.3.2
|
|
25
25
|
Dynamic: license-file
|
|
@@ -238,11 +238,11 @@ wheels = [
|
|
|
238
238
|
|
|
239
239
|
[[package]]
|
|
240
240
|
name = "certifi"
|
|
241
|
-
version = "2026.
|
|
241
|
+
version = "2026.2.25"
|
|
242
242
|
source = { registry = "https://pypi.org/simple" }
|
|
243
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
243
|
+
sdist = { url = "https://files.pythonhosted.org/packages/af/2d/7bf41579a8986e348fa033a31cdd0e4121114f6bce2457e8876010b092dd/certifi-2026.2.25.tar.gz", hash = "sha256:e887ab5cee78ea814d3472169153c2d12cd43b14bd03329a39a9c6e2e80bfba7", size = 155029, upload-time = "2026-02-25T02:54:17.342Z" }
|
|
244
244
|
wheels = [
|
|
245
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
245
|
+
{ url = "https://files.pythonhosted.org/packages/9a/3c/c17fb3ca2d9c3acff52e30b309f538586f9f5b9c9cf454f3845fc9af4881/certifi-2026.2.25-py3-none-any.whl", hash = "sha256:027692e4402ad994f1c42e52a4997a9763c646b73e4096e4d5d6db8af1d6f0fa", size = 153684, upload-time = "2026-02-25T02:54:15.766Z" },
|
|
246
246
|
]
|
|
247
247
|
|
|
248
248
|
[[package]]
|
|
@@ -371,11 +371,11 @@ wheels = [
|
|
|
371
371
|
|
|
372
372
|
[[package]]
|
|
373
373
|
name = "filelock"
|
|
374
|
-
version = "3.
|
|
374
|
+
version = "3.25.0"
|
|
375
375
|
source = { registry = "https://pypi.org/simple" }
|
|
376
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
376
|
+
sdist = { url = "https://files.pythonhosted.org/packages/77/18/a1fd2231c679dcb9726204645721b12498aeac28e1ad0601038f94b42556/filelock-3.25.0.tar.gz", hash = "sha256:8f00faf3abf9dc730a1ffe9c354ae5c04e079ab7d3a683b7c32da5dd05f26af3", size = 40158, upload-time = "2026-03-01T15:08:45.916Z" }
|
|
377
377
|
wheels = [
|
|
378
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
378
|
+
{ url = "https://files.pythonhosted.org/packages/f9/0b/de6f54d4a8bedfe8645c41497f3c18d749f0bd3218170c667bf4b81d0cdd/filelock-3.25.0-py3-none-any.whl", hash = "sha256:5ccf8069f7948f494968fc0713c10e5c182a9c9d9eef3a636307a20c2490f047", size = 26427, upload-time = "2026-03-01T15:08:44.593Z" },
|
|
379
379
|
]
|
|
380
380
|
|
|
381
381
|
[[package]]
|
|
@@ -446,11 +446,11 @@ wheels = [
|
|
|
446
446
|
|
|
447
447
|
[[package]]
|
|
448
448
|
name = "identify"
|
|
449
|
-
version = "2.6.
|
|
449
|
+
version = "2.6.17"
|
|
450
450
|
source = { registry = "https://pypi.org/simple" }
|
|
451
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
451
|
+
sdist = { url = "https://files.pythonhosted.org/packages/57/84/376a3b96e5a8d33a7aa2c5b3b31a4b3c364117184bf0b17418055f6ace66/identify-2.6.17.tar.gz", hash = "sha256:f816b0b596b204c9fdf076ded172322f2723cf958d02f9c3587504834c8ff04d", size = 99579, upload-time = "2026-03-01T20:04:12.702Z" }
|
|
452
452
|
wheels = [
|
|
453
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
453
|
+
{ url = "https://files.pythonhosted.org/packages/40/66/71c1227dff78aaeb942fed29dd5651f2aec166cc7c9aeea3e8b26a539b7d/identify-2.6.17-py2.py3-none-any.whl", hash = "sha256:be5f8412d5ed4b20f2bd41a65f920990bdccaa6a4a18a08f1eefdcd0bdd885f0", size = 99382, upload-time = "2026-03-01T20:04:11.439Z" },
|
|
454
454
|
]
|
|
455
455
|
|
|
456
456
|
[[package]]
|
|
@@ -943,13 +943,26 @@ wheels = [
|
|
|
943
943
|
{ url = "https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427", size = 229892, upload-time = "2024-03-01T18:36:18.57Z" },
|
|
944
944
|
]
|
|
945
945
|
|
|
946
|
+
[[package]]
|
|
947
|
+
name = "python-discovery"
|
|
948
|
+
version = "1.1.0"
|
|
949
|
+
source = { registry = "https://pypi.org/simple" }
|
|
950
|
+
dependencies = [
|
|
951
|
+
{ name = "filelock" },
|
|
952
|
+
{ name = "platformdirs" },
|
|
953
|
+
]
|
|
954
|
+
sdist = { url = "https://files.pythonhosted.org/packages/82/bb/93a3e83bdf9322c7e21cafd092e56a4a17c4d8ef4277b6eb01af1a540a6f/python_discovery-1.1.0.tar.gz", hash = "sha256:447941ba1aed8cc2ab7ee3cb91be5fc137c5bdbb05b7e6ea62fbdcb66e50b268", size = 55674, upload-time = "2026-02-26T09:42:49.668Z" }
|
|
955
|
+
wheels = [
|
|
956
|
+
{ url = "https://files.pythonhosted.org/packages/06/54/82a6e2ef37f0f23dccac604b9585bdcbd0698604feb64807dcb72853693e/python_discovery-1.1.0-py3-none-any.whl", hash = "sha256:a162893b8809727f54594a99ad2179d2ede4bf953e12d4c7abc3cc9cdbd1437b", size = 30687, upload-time = "2026-02-26T09:42:48.548Z" },
|
|
957
|
+
]
|
|
958
|
+
|
|
946
959
|
[[package]]
|
|
947
960
|
name = "python-dotenv"
|
|
948
|
-
version = "1.2.
|
|
961
|
+
version = "1.2.2"
|
|
949
962
|
source = { registry = "https://pypi.org/simple" }
|
|
950
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
963
|
+
sdist = { url = "https://files.pythonhosted.org/packages/82/ed/0301aeeac3e5353ef3d94b6ec08bbcabd04a72018415dcb29e588514bba8/python_dotenv-1.2.2.tar.gz", hash = "sha256:2c371a91fbd7ba082c2c1dc1f8bf89ca22564a087c2c287cd9b662adde799cf3", size = 50135, upload-time = "2026-03-01T16:00:26.196Z" }
|
|
951
964
|
wheels = [
|
|
952
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
965
|
+
{ url = "https://files.pythonhosted.org/packages/0b/d7/1959b9648791274998a9c3526f6d0ec8fd2233e4d4acce81bbae76b44b2a/python_dotenv-1.2.2-py3-none-any.whl", hash = "sha256:1d8214789a24de455a8b8bd8ae6fe3c6b69a5e3d64aa8a8e5d68e694bbcb285a", size = 22101, upload-time = "2026-03-01T16:00:25.09Z" },
|
|
953
966
|
]
|
|
954
967
|
|
|
955
968
|
[[package]]
|
|
@@ -997,7 +1010,7 @@ requires-dist = [
|
|
|
997
1010
|
{ name = "msgpack", specifier = "~=1.1.2" },
|
|
998
1011
|
{ name = "msgspec", specifier = "==0.20.0" },
|
|
999
1012
|
{ name = "pydantic-settings", specifier = "~=2.13.1" },
|
|
1000
|
-
{ name = "sqlalchemy", extras = ["asyncio"], specifier = "~=2.0.
|
|
1013
|
+
{ name = "sqlalchemy", extras = ["asyncio"], specifier = "~=2.0.48" },
|
|
1001
1014
|
{ name = "valkey", extras = ["libvalkey"], specifier = "~=6.1.1" },
|
|
1002
1015
|
{ name = "zeep", specifier = "~=4.3.2" },
|
|
1003
1016
|
]
|
|
@@ -1098,27 +1111,27 @@ wheels = [
|
|
|
1098
1111
|
|
|
1099
1112
|
[[package]]
|
|
1100
1113
|
name = "ruff"
|
|
1101
|
-
version = "0.15.
|
|
1102
|
-
source = { registry = "https://pypi.org/simple" }
|
|
1103
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
1104
|
-
wheels = [
|
|
1105
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1106
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1107
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1108
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1109
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1110
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1111
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1112
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1113
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1114
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1115
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1116
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1117
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1118
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1119
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1120
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1121
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1114
|
+
version = "0.15.4"
|
|
1115
|
+
source = { registry = "https://pypi.org/simple" }
|
|
1116
|
+
sdist = { url = "https://files.pythonhosted.org/packages/da/31/d6e536cdebb6568ae75a7f00e4b4819ae0ad2640c3604c305a0428680b0c/ruff-0.15.4.tar.gz", hash = "sha256:3412195319e42d634470cc97aa9803d07e9d5c9223b99bcb1518f0c725f26ae1", size = 4569550, upload-time = "2026-02-26T20:04:14.959Z" }
|
|
1117
|
+
wheels = [
|
|
1118
|
+
{ url = "https://files.pythonhosted.org/packages/f2/82/c11a03cfec3a4d26a0ea1e571f0f44be5993b923f905eeddfc397c13d360/ruff-0.15.4-py3-none-linux_armv6l.whl", hash = "sha256:a1810931c41606c686bae8b5b9a8072adac2f611bb433c0ba476acba17a332e0", size = 10453333, upload-time = "2026-02-26T20:04:20.093Z" },
|
|
1119
|
+
{ url = "https://files.pythonhosted.org/packages/ce/5d/6a1f271f6e31dffb31855996493641edc3eef8077b883eaf007a2f1c2976/ruff-0.15.4-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:5a1632c66672b8b4d3e1d1782859e98d6e0b4e70829530666644286600a33992", size = 10853356, upload-time = "2026-02-26T20:04:05.808Z" },
|
|
1120
|
+
{ url = "https://files.pythonhosted.org/packages/b1/d8/0fab9f8842b83b1a9c2bf81b85063f65e93fb512e60effa95b0be49bfc54/ruff-0.15.4-py3-none-macosx_11_0_arm64.whl", hash = "sha256:a4386ba2cd6c0f4ff75252845906acc7c7c8e1ac567b7bc3d373686ac8c222ba", size = 10187434, upload-time = "2026-02-26T20:03:54.656Z" },
|
|
1121
|
+
{ url = "https://files.pythonhosted.org/packages/85/cc/cc220fd9394eff5db8d94dec199eec56dd6c9f3651d8869d024867a91030/ruff-0.15.4-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b2496488bdfd3732747558b6f95ae427ff066d1fcd054daf75f5a50674411e75", size = 10535456, upload-time = "2026-02-26T20:03:52.738Z" },
|
|
1122
|
+
{ url = "https://files.pythonhosted.org/packages/fa/0f/bced38fa5cf24373ec767713c8e4cadc90247f3863605fb030e597878661/ruff-0.15.4-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:3f1c4893841ff2d54cbda1b2860fa3260173df5ddd7b95d370186f8a5e66a4ac", size = 10287772, upload-time = "2026-02-26T20:04:08.138Z" },
|
|
1123
|
+
{ url = "https://files.pythonhosted.org/packages/2b/90/58a1802d84fed15f8f281925b21ab3cecd813bde52a8ca033a4de8ab0e7a/ruff-0.15.4-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:820b8766bd65503b6c30aaa6331e8ef3a6e564f7999c844e9a547c40179e440a", size = 11049051, upload-time = "2026-02-26T20:04:03.53Z" },
|
|
1124
|
+
{ url = "https://files.pythonhosted.org/packages/d2/ac/b7ad36703c35f3866584564dc15f12f91cb1a26a897dc2fd13d7cb3ae1af/ruff-0.15.4-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c9fb74bab47139c1751f900f857fa503987253c3ef89129b24ed375e72873e85", size = 11890494, upload-time = "2026-02-26T20:04:10.497Z" },
|
|
1125
|
+
{ url = "https://files.pythonhosted.org/packages/93/3d/3eb2f47a39a8b0da99faf9c54d3eb24720add1e886a5309d4d1be73a6380/ruff-0.15.4-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f80c98765949c518142b3a50a5db89343aa90f2c2bf7799de9986498ae6176db", size = 11326221, upload-time = "2026-02-26T20:04:12.84Z" },
|
|
1126
|
+
{ url = "https://files.pythonhosted.org/packages/ff/90/bf134f4c1e5243e62690e09d63c55df948a74084c8ac3e48a88468314da6/ruff-0.15.4-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:451a2e224151729b3b6c9ffb36aed9091b2996fe4bdbd11f47e27d8f2e8888ec", size = 11168459, upload-time = "2026-02-26T20:04:00.969Z" },
|
|
1127
|
+
{ url = "https://files.pythonhosted.org/packages/b5/e5/a64d27688789b06b5d55162aafc32059bb8c989c61a5139a36e1368285eb/ruff-0.15.4-py3-none-manylinux_2_31_riscv64.whl", hash = "sha256:a8f157f2e583c513c4f5f896163a93198297371f34c04220daf40d133fdd4f7f", size = 11104366, upload-time = "2026-02-26T20:03:48.099Z" },
|
|
1128
|
+
{ url = "https://files.pythonhosted.org/packages/f1/f6/32d1dcb66a2559763fc3027bdd65836cad9eb09d90f2ed6a63d8e9252b02/ruff-0.15.4-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:917cc68503357021f541e69b35361c99387cdbbf99bd0ea4aa6f28ca99ff5338", size = 10510887, upload-time = "2026-02-26T20:03:45.771Z" },
|
|
1129
|
+
{ url = "https://files.pythonhosted.org/packages/ff/92/22d1ced50971c5b6433aed166fcef8c9343f567a94cf2b9d9089f6aa80fe/ruff-0.15.4-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:e9737c8161da79fd7cfec19f1e35620375bd8b2a50c3e77fa3d2c16f574105cc", size = 10285939, upload-time = "2026-02-26T20:04:22.42Z" },
|
|
1130
|
+
{ url = "https://files.pythonhosted.org/packages/e6/f4/7c20aec3143837641a02509a4668fb146a642fd1211846634edc17eb5563/ruff-0.15.4-py3-none-musllinux_1_2_i686.whl", hash = "sha256:291258c917539e18f6ba40482fe31d6f5ac023994ee11d7bdafd716f2aab8a68", size = 10765471, upload-time = "2026-02-26T20:03:58.924Z" },
|
|
1131
|
+
{ url = "https://files.pythonhosted.org/packages/d0/09/6d2f7586f09a16120aebdff8f64d962d7c4348313c77ebb29c566cefc357/ruff-0.15.4-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:3f83c45911da6f2cd5936c436cf86b9f09f09165f033a99dcf7477e34041cbc3", size = 11263382, upload-time = "2026-02-26T20:04:24.424Z" },
|
|
1132
|
+
{ url = "https://files.pythonhosted.org/packages/1b/fa/2ef715a1cd329ef47c1a050e10dee91a9054b7ce2fcfdd6a06d139afb7ec/ruff-0.15.4-py3-none-win32.whl", hash = "sha256:65594a2d557d4ee9f02834fcdf0a28daa8b3b9f6cb2cb93846025a36db47ef22", size = 10506664, upload-time = "2026-02-26T20:03:50.56Z" },
|
|
1133
|
+
{ url = "https://files.pythonhosted.org/packages/d0/a8/c688ef7e29983976820d18710f955751d9f4d4eb69df658af3d006e2ba3e/ruff-0.15.4-py3-none-win_amd64.whl", hash = "sha256:04196ad44f0df220c2ece5b0e959c2f37c777375ec744397d21d15b50a75264f", size = 11651048, upload-time = "2026-02-26T20:04:17.191Z" },
|
|
1134
|
+
{ url = "https://files.pythonhosted.org/packages/3e/0a/9e1be9035b37448ce2e68c978f0591da94389ade5a5abafa4cf99985d1b2/ruff-0.15.4-py3-none-win_arm64.whl", hash = "sha256:60d5177e8cfc70e51b9c5fad936c634872a74209f934c1e79107d11787ad5453", size = 10966776, upload-time = "2026-02-26T20:03:56.908Z" },
|
|
1122
1135
|
]
|
|
1123
1136
|
|
|
1124
1137
|
[[package]]
|
|
@@ -1154,26 +1167,28 @@ wheels = [
|
|
|
1154
1167
|
|
|
1155
1168
|
[[package]]
|
|
1156
1169
|
name = "sqlalchemy"
|
|
1157
|
-
version = "2.0.
|
|
1170
|
+
version = "2.0.48"
|
|
1158
1171
|
source = { registry = "https://pypi.org/simple" }
|
|
1159
1172
|
dependencies = [
|
|
1160
1173
|
{ name = "greenlet", marker = "platform_machine == 'AMD64' or platform_machine == 'WIN32' or platform_machine == 'aarch64' or platform_machine == 'amd64' or platform_machine == 'ppc64le' or platform_machine == 'win32' or platform_machine == 'x86_64'" },
|
|
1161
1174
|
{ name = "typing-extensions" },
|
|
1162
1175
|
]
|
|
1163
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
1176
|
+
sdist = { url = "https://files.pythonhosted.org/packages/1f/73/b4a9737255583b5fa858e0bb8e116eb94b88c910164ed2ed719147bde3de/sqlalchemy-2.0.48.tar.gz", hash = "sha256:5ca74f37f3369b45e1f6b7b06afb182af1fd5dde009e4ffd831830d98cbe5fe7", size = 9886075, upload-time = "2026-03-02T15:28:51.474Z" }
|
|
1164
1177
|
wheels = [
|
|
1165
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1166
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1167
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1168
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1169
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1170
|
-
{ url = "https://files.pythonhosted.org/packages/a8/
|
|
1171
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1172
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1173
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1174
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1175
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1176
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1178
|
+
{ url = "https://files.pythonhosted.org/packages/f7/b3/f437eaa1cf028bb3c927172c7272366393e73ccd104dcf5b6963f4ab5318/sqlalchemy-2.0.48-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:e2d0d88686e3d35a76f3e15a34e8c12d73fc94c1dea1cd55782e695cc14086dd", size = 2154401, upload-time = "2026-03-02T15:49:17.24Z" },
|
|
1179
|
+
{ url = "https://files.pythonhosted.org/packages/6c/1c/b3abdf0f402aa3f60f0df6ea53d92a162b458fca2321d8f1f00278506402/sqlalchemy-2.0.48-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:49b7bddc1eebf011ea5ab722fdbe67a401caa34a350d278cc7733c0e88fecb1f", size = 3274528, upload-time = "2026-03-02T15:50:41.489Z" },
|
|
1180
|
+
{ url = "https://files.pythonhosted.org/packages/f2/5e/327428a034407651a048f5e624361adf3f9fbac9d0fa98e981e9c6ff2f5e/sqlalchemy-2.0.48-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:426c5ca86415d9b8945c7073597e10de9644802e2ff502b8e1f11a7a2642856b", size = 3279523, upload-time = "2026-03-02T15:53:32.962Z" },
|
|
1181
|
+
{ url = "https://files.pythonhosted.org/packages/2a/ca/ece73c81a918add0965b76b868b7b5359e068380b90ef1656ee995940c02/sqlalchemy-2.0.48-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:288937433bd44e3990e7da2402fabc44a3c6c25d3704da066b85b89a85474ae0", size = 3224312, upload-time = "2026-03-02T15:50:42.996Z" },
|
|
1182
|
+
{ url = "https://files.pythonhosted.org/packages/88/11/fbaf1ae91fa4ee43f4fe79661cead6358644824419c26adb004941bdce7c/sqlalchemy-2.0.48-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:8183dc57ae7d9edc1346e007e840a9f3d6aa7b7f165203a99e16f447150140d2", size = 3246304, upload-time = "2026-03-02T15:53:34.937Z" },
|
|
1183
|
+
{ url = "https://files.pythonhosted.org/packages/fa/a8/5fb0deb13930b4f2f698c5541ae076c18981173e27dd00376dbaea7a9c82/sqlalchemy-2.0.48-cp314-cp314-win32.whl", hash = "sha256:1182437cb2d97988cfea04cf6cdc0b0bb9c74f4d56ec3d08b81e23d621a28cc6", size = 2116565, upload-time = "2026-03-02T15:54:38.321Z" },
|
|
1184
|
+
{ url = "https://files.pythonhosted.org/packages/95/7e/e83615cb63f80047f18e61e31e8e32257d39458426c23006deeaf48f463b/sqlalchemy-2.0.48-cp314-cp314-win_amd64.whl", hash = "sha256:144921da96c08feb9e2b052c5c5c1d0d151a292c6135623c6b2c041f2a45f9e0", size = 2142205, upload-time = "2026-03-02T15:54:39.831Z" },
|
|
1185
|
+
{ url = "https://files.pythonhosted.org/packages/83/e3/69d8711b3f2c5135e9cde5f063bc1605860f0b2c53086d40c04017eb1f77/sqlalchemy-2.0.48-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5aee45fd2c6c0f2b9cdddf48c48535e7471e42d6fb81adfde801da0bd5b93241", size = 3563519, upload-time = "2026-03-02T15:57:52.387Z" },
|
|
1186
|
+
{ url = "https://files.pythonhosted.org/packages/f8/4f/a7cce98facca73c149ea4578981594aaa5fd841e956834931de503359336/sqlalchemy-2.0.48-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7cddca31edf8b0653090cbb54562ca027c421c58ddde2c0685f49ff56a1690e0", size = 3528611, upload-time = "2026-03-02T16:04:42.097Z" },
|
|
1187
|
+
{ url = "https://files.pythonhosted.org/packages/cd/7d/5936c7a03a0b0cb0fa0cc425998821c6029756b0855a8f7ee70fba1de955/sqlalchemy-2.0.48-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:7a936f1bb23d370b7c8cc079d5fce4c7d18da87a33c6744e51a93b0f9e97e9b3", size = 3472326, upload-time = "2026-03-02T15:57:54.423Z" },
|
|
1188
|
+
{ url = "https://files.pythonhosted.org/packages/f4/33/cea7dfc31b52904efe3dcdc169eb4514078887dff1f5ae28a7f4c5d54b3c/sqlalchemy-2.0.48-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:e004aa9248e8cb0a5f9b96d003ca7c1c0a5da8decd1066e7b53f59eb8ce7c62b", size = 3478453, upload-time = "2026-03-02T16:04:44.584Z" },
|
|
1189
|
+
{ url = "https://files.pythonhosted.org/packages/c8/95/32107c4d13be077a9cae61e9ae49966a35dc4bf442a8852dd871db31f62e/sqlalchemy-2.0.48-cp314-cp314t-win32.whl", hash = "sha256:b8438ec5594980d405251451c5b7ea9aa58dda38eb7ac35fb7e4c696712ee24f", size = 2147209, upload-time = "2026-03-02T15:52:54.274Z" },
|
|
1190
|
+
{ url = "https://files.pythonhosted.org/packages/d2/d7/1e073da7a4bc645eb83c76067284a0374e643bc4be57f14cc6414656f92c/sqlalchemy-2.0.48-cp314-cp314t-win_amd64.whl", hash = "sha256:d854b3970067297f3a7fbd7a4683587134aa9b3877ee15aa29eea478dc68f933", size = 2182198, upload-time = "2026-03-02T15:52:55.606Z" },
|
|
1191
|
+
{ url = "https://files.pythonhosted.org/packages/46/2c/9664130905f03db57961b8980b05cab624afd114bf2be2576628a9f22da4/sqlalchemy-2.0.48-py3-none-any.whl", hash = "sha256:a66fe406437dd65cacd96a72689a3aaaecaebbcd62d81c5ac1c0fdbeac835096", size = 1940202, upload-time = "2026-03-02T15:52:43.285Z" },
|
|
1177
1192
|
]
|
|
1178
1193
|
|
|
1179
1194
|
[package.optional-dependencies]
|
|
@@ -1183,38 +1198,38 @@ asyncio = [
|
|
|
1183
1198
|
|
|
1184
1199
|
[[package]]
|
|
1185
1200
|
name = "ty"
|
|
1186
|
-
version = "0.0.
|
|
1201
|
+
version = "0.0.20"
|
|
1187
1202
|
source = { registry = "https://pypi.org/simple" }
|
|
1188
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
1203
|
+
sdist = { url = "https://files.pythonhosted.org/packages/56/95/8de69bb98417227b01f1b1d743c819d6456c9fd140255b6124b05b17dfd6/ty-0.0.20.tar.gz", hash = "sha256:ebba6be7974c14efbb2a9adda6ac59848f880d7259f089dfa72a093039f1dcc6", size = 5262529, upload-time = "2026-03-02T15:51:36.587Z" }
|
|
1189
1204
|
wheels = [
|
|
1190
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1191
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1192
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1193
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1194
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1195
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1196
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1197
|
-
{ url = "https://files.pythonhosted.org/packages/68/
|
|
1198
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1199
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1200
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1201
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1202
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1203
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1204
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1205
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1205
|
+
{ url = "https://files.pythonhosted.org/packages/0b/2c/718abe48393e521bf852cd6b0f984766869b09c258d6e38a118768a91731/ty-0.0.20-py3-none-linux_armv6l.whl", hash = "sha256:7cc12769c169c9709a829c2248ee2826b7aae82e92caeac813d856f07c021eae", size = 10333656, upload-time = "2026-03-02T15:51:56.461Z" },
|
|
1206
|
+
{ url = "https://files.pythonhosted.org/packages/41/0e/eb1c4cc4a12862e2327b72657bcebb10b7d9f17046f1bdcd6457a0211615/ty-0.0.20-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:3b777c1bf13bc0a95985ebb8a324b8668a4a9b2e514dde5ccf09e4d55d2ff232", size = 10168505, upload-time = "2026-03-02T15:51:51.895Z" },
|
|
1207
|
+
{ url = "https://files.pythonhosted.org/packages/89/7f/10230798e673f0dd3094dfd16e43bfd90e9494e7af6e8e7db516fb431ddf/ty-0.0.20-py3-none-macosx_11_0_arm64.whl", hash = "sha256:b2a4a7db48bf8cba30365001bc2cad7fd13c1a5aacdd704cc4b7925de8ca5eb3", size = 9678510, upload-time = "2026-03-02T15:51:48.451Z" },
|
|
1208
|
+
{ url = "https://files.pythonhosted.org/packages/7a/3d/59d9159577494edd1728f7db77b51bb07884bd21384f517963114e3ab5f6/ty-0.0.20-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6846427b8b353a43483e9c19936dc6a25612573b44c8f7d983dfa317e7f00d4c", size = 10162926, upload-time = "2026-03-02T15:51:40.558Z" },
|
|
1209
|
+
{ url = "https://files.pythonhosted.org/packages/9c/a8/b7273eec3e802f78eb913fbe0ce0c16ef263723173e06a5776a8359b2c66/ty-0.0.20-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:245ceef5bd88df366869385cf96411cb14696334f8daa75597cf7e41c3012eb8", size = 10171702, upload-time = "2026-03-02T15:51:44.069Z" },
|
|
1210
|
+
{ url = "https://files.pythonhosted.org/packages/9f/32/5f1144f2f04a275109db06e3498450c4721554215b80ae73652ef412eeab/ty-0.0.20-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c4d21d1cdf67a444d3c37583c17291ddba9382a9871021f3f5d5735e09e85efe", size = 10682552, upload-time = "2026-03-02T15:51:33.102Z" },
|
|
1211
|
+
{ url = "https://files.pythonhosted.org/packages/6a/db/9f1f637310792f12bd6ed37d5fc8ab39ba1a9b0c6c55a33865e9f1cad840/ty-0.0.20-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bd4ffd907d1bd70e46af9e9a2f88622f215e1bf44658ea43b32c2c0b357299e4", size = 11242605, upload-time = "2026-03-02T15:51:34.895Z" },
|
|
1212
|
+
{ url = "https://files.pythonhosted.org/packages/1a/68/cc9cae2e732fcfd20ccdffc508407905a023fc8493b8771c392d915528dc/ty-0.0.20-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b6594b58d8b0e9d16a22b3045fc1305db4b132c8d70c17784ab8c7a7cc986807", size = 10974655, upload-time = "2026-03-02T15:51:46.011Z" },
|
|
1213
|
+
{ url = "https://files.pythonhosted.org/packages/1c/c1/b9e3e3f28fe63486331e653f6aeb4184af8b1fe80542fcf74d2dda40a93d/ty-0.0.20-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3662f890518ce6cf4d7568f57d03906912d2afbf948a01089a28e325b1ef198c", size = 10761325, upload-time = "2026-03-02T15:51:26.818Z" },
|
|
1214
|
+
{ url = "https://files.pythonhosted.org/packages/39/9e/67db935bdedf219a00fb69ec5437ba24dab66e0f2e706dd54a4eca234b84/ty-0.0.20-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:0e3ffbae58f9f0d17cdc4ac6d175ceae560b7ed7d54f9ddfb1c9f31054bcdc2c", size = 10145793, upload-time = "2026-03-02T15:51:38.562Z" },
|
|
1215
|
+
{ url = "https://files.pythonhosted.org/packages/c7/de/b0eb815d4dc5a819c7e4faddc2a79058611169f7eef07ccc006531ce228c/ty-0.0.20-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:176e52bc8bb00b0e84efd34583962878a447a3a0e34ecc45fd7097a37554261b", size = 10189640, upload-time = "2026-03-02T15:51:50.202Z" },
|
|
1216
|
+
{ url = "https://files.pythonhosted.org/packages/b8/71/63734923965cbb70df1da3e93e4b8875434e326b89e9f850611122f279bf/ty-0.0.20-py3-none-musllinux_1_2_i686.whl", hash = "sha256:b2bc73025418e976ca4143dde71fb9025a90754a08ac03e6aa9b80d4bed1294b", size = 10370568, upload-time = "2026-03-02T15:51:42.295Z" },
|
|
1217
|
+
{ url = "https://files.pythonhosted.org/packages/32/a0/a532c2048533347dff48e9ca98bd86d2c224356e101688a8edaf8d6973fb/ty-0.0.20-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:d52f7c9ec6e363e094b3c389c344d5a140401f14a77f0625e3f28c21918552f5", size = 10853999, upload-time = "2026-03-02T15:51:58.963Z" },
|
|
1218
|
+
{ url = "https://files.pythonhosted.org/packages/48/88/36c652c658fe96658043e4abc8ea97801de6fb6e63ab50aaa82807bff1d8/ty-0.0.20-py3-none-win32.whl", hash = "sha256:c7d32bfe93f8fcaa52b6eef3f1b930fd7da410c2c94e96f7412c30cfbabf1d17", size = 9744206, upload-time = "2026-03-02T15:51:54.183Z" },
|
|
1219
|
+
{ url = "https://files.pythonhosted.org/packages/ff/a7/a4a13bed1d7fd9d97aaa3c5bb5e6d3e9a689e6984806cbca2ab4c9233cac/ty-0.0.20-py3-none-win_amd64.whl", hash = "sha256:a5e10f40fc4a0a1cbcb740a4aad5c7ce35d79f030836ea3183b7a28f43170248", size = 10711999, upload-time = "2026-03-02T15:51:29.212Z" },
|
|
1220
|
+
{ url = "https://files.pythonhosted.org/packages/8d/7e/6bfd748a9f4ff9267ed3329b86a0f02cdf6ab49f87bc36c8a164852f99fc/ty-0.0.20-py3-none-win_arm64.whl", hash = "sha256:53f7a5c12c960e71f160b734f328eff9a35d578af4b67a36b0bb5990ac5cdc27", size = 10150143, upload-time = "2026-03-02T15:51:31.283Z" },
|
|
1206
1221
|
]
|
|
1207
1222
|
|
|
1208
1223
|
[[package]]
|
|
1209
1224
|
name = "types-aiobotocore"
|
|
1210
|
-
version = "3.
|
|
1225
|
+
version = "3.2.0"
|
|
1211
1226
|
source = { registry = "https://pypi.org/simple" }
|
|
1212
1227
|
dependencies = [
|
|
1213
1228
|
{ name = "botocore-stubs" },
|
|
1214
1229
|
]
|
|
1215
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
1230
|
+
sdist = { url = "https://files.pythonhosted.org/packages/d4/4c/8010f4d975a6c9ef05760619153d20c15e1ff4bd1c52f213d065cf5f676f/types_aiobotocore-3.2.0.tar.gz", hash = "sha256:79199e9cb564352dc9ef987fa1bff753a3757fdc1cc5439ab421e6db5ee90ea6", size = 86250, upload-time = "2026-02-26T02:18:27.408Z" }
|
|
1216
1231
|
wheels = [
|
|
1217
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1232
|
+
{ url = "https://files.pythonhosted.org/packages/c3/61/dd7fc266b32dd5be864aee3e993442e0fde1149a4cd1618bce1878eccab6/types_aiobotocore-3.2.0-py3-none-any.whl", hash = "sha256:07bd9bb89655109856cf26a207e07fe9256521ac82d09656961c62594edfeee3", size = 54129, upload-time = "2026-02-26T02:18:20.829Z" },
|
|
1218
1233
|
]
|
|
1219
1234
|
|
|
1220
1235
|
[package.optional-dependencies]
|
|
@@ -1224,11 +1239,11 @@ s3 = [
|
|
|
1224
1239
|
|
|
1225
1240
|
[[package]]
|
|
1226
1241
|
name = "types-aiobotocore-s3"
|
|
1227
|
-
version = "3.
|
|
1242
|
+
version = "3.2.0"
|
|
1228
1243
|
source = { registry = "https://pypi.org/simple" }
|
|
1229
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
1244
|
+
sdist = { url = "https://files.pythonhosted.org/packages/03/51/bbe7ebdf2c566ecf73ce432e2c2f7419d887a94f840f4c03a92fc0ff5a8e/types_aiobotocore_s3-3.2.0.tar.gz", hash = "sha256:23d03c3f468f47191eb74f0052d6c1ec6a9b49c1b5765fcd5a93b3c06d78e621", size = 76886, upload-time = "2026-02-25T02:31:29.001Z" }
|
|
1230
1245
|
wheels = [
|
|
1231
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1246
|
+
{ url = "https://files.pythonhosted.org/packages/11/8f/77133f7b8682ad35a79ac644602083f3a1a7a3bf6e2613a8eaad45c84663/types_aiobotocore_s3-3.2.0-py3-none-any.whl", hash = "sha256:07e6093b776e1c4e6801b02bea550a556ecc22f044219d60d57b72b4b2c8b74f", size = 84605, upload-time = "2026-02-25T02:31:27.925Z" },
|
|
1232
1247
|
]
|
|
1233
1248
|
|
|
1234
1249
|
[[package]]
|
|
@@ -1286,16 +1301,17 @@ libvalkey = [
|
|
|
1286
1301
|
|
|
1287
1302
|
[[package]]
|
|
1288
1303
|
name = "virtualenv"
|
|
1289
|
-
version = "
|
|
1304
|
+
version = "21.1.0"
|
|
1290
1305
|
source = { registry = "https://pypi.org/simple" }
|
|
1291
1306
|
dependencies = [
|
|
1292
1307
|
{ name = "distlib" },
|
|
1293
1308
|
{ name = "filelock" },
|
|
1294
1309
|
{ name = "platformdirs" },
|
|
1310
|
+
{ name = "python-discovery" },
|
|
1295
1311
|
]
|
|
1296
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
1312
|
+
sdist = { url = "https://files.pythonhosted.org/packages/2f/c9/18d4b36606d6091844daa3bd93cf7dc78e6f5da21d9f21d06c221104b684/virtualenv-21.1.0.tar.gz", hash = "sha256:1990a0188c8f16b6b9cf65c9183049007375b26aad415514d377ccacf1e4fb44", size = 5840471, upload-time = "2026-02-27T08:49:29.702Z" }
|
|
1297
1313
|
wheels = [
|
|
1298
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1314
|
+
{ url = "https://files.pythonhosted.org/packages/78/55/896b06bf93a49bec0f4ae2a6f1ed12bd05c8860744ac3a70eda041064e4d/virtualenv-21.1.0-py3-none-any.whl", hash = "sha256:164f5e14c5587d170cf98e60378eb91ea35bf037be313811905d3a24ea33cc07", size = 5825072, upload-time = "2026-02-27T08:49:27.516Z" },
|
|
1299
1315
|
]
|
|
1300
1316
|
|
|
1301
1317
|
[[package]]
|
|
@@ -1339,48 +1355,52 @@ wheels = [
|
|
|
1339
1355
|
|
|
1340
1356
|
[[package]]
|
|
1341
1357
|
name = "yarl"
|
|
1342
|
-
version = "1.
|
|
1358
|
+
version = "1.23.0"
|
|
1343
1359
|
source = { registry = "https://pypi.org/simple" }
|
|
1344
1360
|
dependencies = [
|
|
1345
1361
|
{ name = "idna" },
|
|
1346
1362
|
{ name = "multidict" },
|
|
1347
1363
|
{ name = "propcache" },
|
|
1348
1364
|
]
|
|
1349
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
1350
|
-
wheels = [
|
|
1351
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1352
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1353
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1354
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1355
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1356
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1357
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1358
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1359
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1360
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1361
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1362
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1363
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1364
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1365
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1366
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1367
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1368
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1369
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
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/
|
|
1365
|
+
sdist = { url = "https://files.pythonhosted.org/packages/23/6e/beb1beec874a72f23815c1434518bfc4ed2175065173fb138c3705f658d4/yarl-1.23.0.tar.gz", hash = "sha256:53b1ea6ca88ebd4420379c330aea57e258408dd0df9af0992e5de2078dc9f5d5", size = 194676, upload-time = "2026-03-01T22:07:53.373Z" }
|
|
1366
|
+
wheels = [
|
|
1367
|
+
{ url = "https://files.pythonhosted.org/packages/90/98/b85a038d65d1b92c3903ab89444f48d3cee490a883477b716d7a24b1a78c/yarl-1.23.0-cp314-cp314-macosx_10_15_universal2.whl", hash = "sha256:21d1b7305a71a15b4794b5ff22e8eef96ff4a6d7f9657155e5aa419444b28912", size = 124455, upload-time = "2026-03-01T22:06:43.615Z" },
|
|
1368
|
+
{ url = "https://files.pythonhosted.org/packages/39/54/bc2b45559f86543d163b6e294417a107bb87557609007c007ad889afec18/yarl-1.23.0-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:85610b4f27f69984932a7abbe52703688de3724d9f72bceb1cca667deff27474", size = 86752, upload-time = "2026-03-01T22:06:45.425Z" },
|
|
1369
|
+
{ url = "https://files.pythonhosted.org/packages/24/f9/e8242b68362bffe6fb536c8db5076861466fc780f0f1b479fc4ffbebb128/yarl-1.23.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:23f371bd662cf44a7630d4d113101eafc0cfa7518a2760d20760b26021454719", size = 86291, upload-time = "2026-03-01T22:06:46.974Z" },
|
|
1370
|
+
{ url = "https://files.pythonhosted.org/packages/ea/d8/d1cb2378c81dd729e98c716582b1ccb08357e8488e4c24714658cc6630e8/yarl-1.23.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c4a80f77dc1acaaa61f0934176fccca7096d9b1ff08c8ba9cddf5ae034a24319", size = 99026, upload-time = "2026-03-01T22:06:48.459Z" },
|
|
1371
|
+
{ url = "https://files.pythonhosted.org/packages/0a/ff/7196790538f31debe3341283b5b0707e7feb947620fc5e8236ef28d44f72/yarl-1.23.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:bd654fad46d8d9e823afbb4f87c79160b5a374ed1ff5bde24e542e6ba8f41434", size = 92355, upload-time = "2026-03-01T22:06:50.306Z" },
|
|
1372
|
+
{ url = "https://files.pythonhosted.org/packages/c1/56/25d58c3eddde825890a5fe6aa1866228377354a3c39262235234ab5f616b/yarl-1.23.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:682bae25f0a0dd23a056739f23a134db9f52a63e2afd6bfb37ddc76292bbd723", size = 106417, upload-time = "2026-03-01T22:06:52.1Z" },
|
|
1373
|
+
{ url = "https://files.pythonhosted.org/packages/51/8a/882c0e7bc8277eb895b31bce0138f51a1ba551fc2e1ec6753ffc1e7c1377/yarl-1.23.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:a82836cab5f197a0514235aaf7ffccdc886ccdaa2324bc0aafdd4ae898103039", size = 106422, upload-time = "2026-03-01T22:06:54.424Z" },
|
|
1374
|
+
{ url = "https://files.pythonhosted.org/packages/42/2b/fef67d616931055bf3d6764885990a3ac647d68734a2d6a9e1d13de437a2/yarl-1.23.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1c57676bdedc94cd3bc37724cf6f8cd2779f02f6aba48de45feca073e714fe52", size = 101915, upload-time = "2026-03-01T22:06:55.895Z" },
|
|
1375
|
+
{ url = "https://files.pythonhosted.org/packages/18/6a/530e16aebce27c5937920f3431c628a29a4b6b430fab3fd1c117b26ff3f6/yarl-1.23.0-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:c7f8dc16c498ff06497c015642333219871effba93e4a2e8604a06264aca5c5c", size = 100690, upload-time = "2026-03-01T22:06:58.21Z" },
|
|
1376
|
+
{ url = "https://files.pythonhosted.org/packages/88/08/93749219179a45e27b036e03260fda05190b911de8e18225c294ac95bbc9/yarl-1.23.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:5ee586fb17ff8f90c91cf73c6108a434b02d69925f44f5f8e0d7f2f260607eae", size = 98750, upload-time = "2026-03-01T22:06:59.794Z" },
|
|
1377
|
+
{ url = "https://files.pythonhosted.org/packages/d9/cf/ea424a004969f5d81a362110a6ac1496d79efdc6d50c2c4b2e3ea0fc2519/yarl-1.23.0-cp314-cp314-musllinux_1_2_armv7l.whl", hash = "sha256:17235362f580149742739cc3828b80e24029d08cbb9c4bda0242c7b5bc610a8e", size = 94685, upload-time = "2026-03-01T22:07:01.375Z" },
|
|
1378
|
+
{ url = "https://files.pythonhosted.org/packages/e2/b7/14341481fe568e2b0408bcf1484c652accafe06a0ade9387b5d3fd9df446/yarl-1.23.0-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:0793e2bd0cf14234983bbb371591e6bea9e876ddf6896cdcc93450996b0b5c85", size = 106009, upload-time = "2026-03-01T22:07:03.151Z" },
|
|
1379
|
+
{ url = "https://files.pythonhosted.org/packages/0a/e6/5c744a9b54f4e8007ad35bce96fbc9218338e84812d36f3390cea616881a/yarl-1.23.0-cp314-cp314-musllinux_1_2_riscv64.whl", hash = "sha256:3650dc2480f94f7116c364096bc84b1d602f44224ef7d5c7208425915c0475dd", size = 100033, upload-time = "2026-03-01T22:07:04.701Z" },
|
|
1380
|
+
{ url = "https://files.pythonhosted.org/packages/0c/23/e3bfc188d0b400f025bc49d99793d02c9abe15752138dcc27e4eaf0c4a9e/yarl-1.23.0-cp314-cp314-musllinux_1_2_s390x.whl", hash = "sha256:f40e782d49630ad384db66d4d8b73ff4f1b8955dc12e26b09a3e3af064b3b9d6", size = 106483, upload-time = "2026-03-01T22:07:06.231Z" },
|
|
1381
|
+
{ url = "https://files.pythonhosted.org/packages/72/42/f0505f949a90b3f8b7a363d6cbdf398f6e6c58946d85c6d3a3bc70595b26/yarl-1.23.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:94f8575fbdf81749008d980c17796097e645574a3b8c28ee313931068dad14fe", size = 102175, upload-time = "2026-03-01T22:07:08.4Z" },
|
|
1382
|
+
{ url = "https://files.pythonhosted.org/packages/aa/65/b39290f1d892a9dd671d1c722014ca062a9c35d60885d57e5375db0404b5/yarl-1.23.0-cp314-cp314-win32.whl", hash = "sha256:c8aa34a5c864db1087d911a0b902d60d203ea3607d91f615acd3f3108ac32169", size = 83871, upload-time = "2026-03-01T22:07:09.968Z" },
|
|
1383
|
+
{ url = "https://files.pythonhosted.org/packages/a9/5b/9b92f54c784c26e2a422e55a8d2607ab15b7ea3349e28359282f84f01d43/yarl-1.23.0-cp314-cp314-win_amd64.whl", hash = "sha256:63e92247f383c85ab00dd0091e8c3fa331a96e865459f5ee80353c70a4a42d70", size = 89093, upload-time = "2026-03-01T22:07:11.501Z" },
|
|
1384
|
+
{ url = "https://files.pythonhosted.org/packages/e0/7d/8a84dc9381fd4412d5e7ff04926f9865f6372b4c2fd91e10092e65d29eb8/yarl-1.23.0-cp314-cp314-win_arm64.whl", hash = "sha256:70efd20be968c76ece7baa8dafe04c5be06abc57f754d6f36f3741f7aa7a208e", size = 83384, upload-time = "2026-03-01T22:07:13.069Z" },
|
|
1385
|
+
{ url = "https://files.pythonhosted.org/packages/dd/8d/d2fad34b1c08aa161b74394183daa7d800141aaaee207317e82c790b418d/yarl-1.23.0-cp314-cp314t-macosx_10_15_universal2.whl", hash = "sha256:9a18d6f9359e45722c064c97464ec883eb0e0366d33eda61cb19a244bf222679", size = 131019, upload-time = "2026-03-01T22:07:14.903Z" },
|
|
1386
|
+
{ url = "https://files.pythonhosted.org/packages/19/ff/33009a39d3ccf4b94d7d7880dfe17fb5816c5a4fe0096d9b56abceea9ac7/yarl-1.23.0-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:2803ed8b21ca47a43da80a6fd1ed3019d30061f7061daa35ac54f63933409412", size = 89894, upload-time = "2026-03-01T22:07:17.372Z" },
|
|
1387
|
+
{ url = "https://files.pythonhosted.org/packages/0c/f1/dab7ac5e7306fb79c0190766a3c00b4cb8d09a1f390ded68c85a5934faf5/yarl-1.23.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:394906945aa8b19fc14a61cf69743a868bb8c465efe85eee687109cc540b98f4", size = 89979, upload-time = "2026-03-01T22:07:19.361Z" },
|
|
1388
|
+
{ url = "https://files.pythonhosted.org/packages/aa/b1/08e95f3caee1fad6e65017b9f26c1d79877b502622d60e517de01e72f95d/yarl-1.23.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:71d006bee8397a4a89f469b8deb22469fe7508132d3c17fa6ed871e79832691c", size = 95943, upload-time = "2026-03-01T22:07:21.266Z" },
|
|
1389
|
+
{ url = "https://files.pythonhosted.org/packages/c0/cc/6409f9018864a6aa186c61175b977131f373f1988e198e031236916e87e4/yarl-1.23.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:62694e275c93d54f7ccedcfef57d42761b2aad5234b6be1f3e3026cae4001cd4", size = 88786, upload-time = "2026-03-01T22:07:23.129Z" },
|
|
1390
|
+
{ url = "https://files.pythonhosted.org/packages/76/40/cc22d1d7714b717fde2006fad2ced5efe5580606cb059ae42117542122f3/yarl-1.23.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:a31de1613658308efdb21ada98cbc86a97c181aa050ba22a808120bb5be3ab94", size = 101307, upload-time = "2026-03-01T22:07:24.689Z" },
|
|
1391
|
+
{ url = "https://files.pythonhosted.org/packages/8f/0d/476c38e85ddb4c6ec6b20b815bdd779aa386a013f3d8b85516feee55c8dc/yarl-1.23.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:fb1e8b8d66c278b21d13b0a7ca22c41dd757a7c209c6b12c313e445c31dd3b28", size = 100904, upload-time = "2026-03-01T22:07:26.287Z" },
|
|
1392
|
+
{ url = "https://files.pythonhosted.org/packages/72/32/0abe4a76d59adf2081dcb0397168553ece4616ada1c54d1c49d8936c74f8/yarl-1.23.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:50f9d8d531dfb767c565f348f33dd5139a6c43f5cbdf3f67da40d54241df93f6", size = 97728, upload-time = "2026-03-01T22:07:27.906Z" },
|
|
1393
|
+
{ url = "https://files.pythonhosted.org/packages/b7/35/7b30f4810fba112f60f5a43237545867504e15b1c7647a785fbaf588fac2/yarl-1.23.0-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:575aa4405a656e61a540f4a80eaa5260f2a38fff7bfdc4b5f611840d76e9e277", size = 95964, upload-time = "2026-03-01T22:07:30.198Z" },
|
|
1394
|
+
{ url = "https://files.pythonhosted.org/packages/2d/86/ed7a73ab85ef00e8bb70b0cb5421d8a2a625b81a333941a469a6f4022828/yarl-1.23.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:041b1a4cefacf65840b4e295c6985f334ba83c30607441ae3cf206a0eed1a2e4", size = 95882, upload-time = "2026-03-01T22:07:32.132Z" },
|
|
1395
|
+
{ url = "https://files.pythonhosted.org/packages/19/90/d56967f61a29d8498efb7afb651e0b2b422a1e9b47b0ab5f4e40a19b699b/yarl-1.23.0-cp314-cp314t-musllinux_1_2_armv7l.whl", hash = "sha256:d38c1e8231722c4ce40d7593f28d92b5fc72f3e9774fe73d7e800ec32299f63a", size = 90797, upload-time = "2026-03-01T22:07:34.404Z" },
|
|
1396
|
+
{ url = "https://files.pythonhosted.org/packages/72/00/8b8f76909259f56647adb1011d7ed8b321bcf97e464515c65016a47ecdf0/yarl-1.23.0-cp314-cp314t-musllinux_1_2_ppc64le.whl", hash = "sha256:d53834e23c015ee83a99377db6e5e37d8484f333edb03bd15b4bc312cc7254fb", size = 101023, upload-time = "2026-03-01T22:07:35.953Z" },
|
|
1397
|
+
{ url = "https://files.pythonhosted.org/packages/ac/e2/cab11b126fb7d440281b7df8e9ddbe4851e70a4dde47a202b6642586b8d9/yarl-1.23.0-cp314-cp314t-musllinux_1_2_riscv64.whl", hash = "sha256:2e27c8841126e017dd2a054a95771569e6070b9ee1b133366d8b31beb5018a41", size = 96227, upload-time = "2026-03-01T22:07:37.594Z" },
|
|
1398
|
+
{ url = "https://files.pythonhosted.org/packages/c2/9b/2c893e16bfc50e6b2edf76c1a9eb6cb0c744346197e74c65e99ad8d634d0/yarl-1.23.0-cp314-cp314t-musllinux_1_2_s390x.whl", hash = "sha256:76855800ac56f878847a09ce6dba727c93ca2d89c9e9d63002d26b916810b0a2", size = 100302, upload-time = "2026-03-01T22:07:39.334Z" },
|
|
1399
|
+
{ url = "https://files.pythonhosted.org/packages/28/ec/5498c4e3a6d5f1003beb23405671c2eb9cdbf3067d1c80f15eeafe301010/yarl-1.23.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:e09fd068c2e169a7070d83d3bde728a4d48de0549f975290be3c108c02e499b4", size = 98202, upload-time = "2026-03-01T22:07:41.717Z" },
|
|
1400
|
+
{ url = "https://files.pythonhosted.org/packages/fe/c3/cd737e2d45e70717907f83e146f6949f20cc23cd4bf7b2688727763aa458/yarl-1.23.0-cp314-cp314t-win32.whl", hash = "sha256:73309162a6a571d4cbd3b6a1dcc703c7311843ae0d1578df6f09be4e98df38d4", size = 90558, upload-time = "2026-03-01T22:07:43.433Z" },
|
|
1401
|
+
{ url = "https://files.pythonhosted.org/packages/e1/19/3774d162f6732d1cfb0b47b4140a942a35ca82bb19b6db1f80e9e7bdc8f8/yarl-1.23.0-cp314-cp314t-win_amd64.whl", hash = "sha256:4503053d296bc6e4cbd1fad61cf3b6e33b939886c4f249ba7c78b602214fabe2", size = 97610, upload-time = "2026-03-01T22:07:45.773Z" },
|
|
1402
|
+
{ url = "https://files.pythonhosted.org/packages/51/47/3fa2286c3cb162c71cdb34c4224d5745a1ceceb391b2bd9b19b668a8d724/yarl-1.23.0-cp314-cp314t-win_arm64.whl", hash = "sha256:44bb7bef4ea409384e3f8bc36c063d77ea1b8d4a5b2706956c0d6695f07dcc25", size = 86041, upload-time = "2026-03-01T22:07:49.026Z" },
|
|
1403
|
+
{ url = "https://files.pythonhosted.org/packages/69/68/c8739671f5699c7dc470580a4f821ef37c32c4cb0b047ce223a7f115757f/yarl-1.23.0-py3-none-any.whl", hash = "sha256:a2df6afe50dea8ae15fa34c9f824a3ee958d785fd5d089063d960bae1daa0a3f", size = 48288, upload-time = "2026-03-01T22:07:51.388Z" },
|
|
1384
1404
|
]
|
|
1385
1405
|
|
|
1386
1406
|
[[package]]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python3_commons-0.15.10 → python3_commons-0.15.11}/.github/workflows/release-on-tag-push.yml
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python3_commons-0.15.10 → python3_commons-0.15.11}/src/python3_commons/db/models/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python3_commons-0.15.10 → python3_commons-0.15.11}/src/python3_commons/serializers/__init__.py
RENAMED
|
File without changes
|
{python3_commons-0.15.10 → python3_commons-0.15.11}/src/python3_commons/serializers/common.py
RENAMED
|
File without changes
|
|
File without changes
|
{python3_commons-0.15.10 → python3_commons-0.15.11}/src/python3_commons/serializers/msgpack.py
RENAMED
|
File without changes
|
{python3_commons-0.15.10 → python3_commons-0.15.11}/src/python3_commons/serializers/msgspec.py
RENAMED
|
File without changes
|
{python3_commons-0.15.10 → python3_commons-0.15.11}/src/python3_commons.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{python3_commons-0.15.10 → python3_commons-0.15.11}/src/python3_commons.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|