python3-commons 0.10.1__tar.gz → 0.10.2__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.
Potentially problematic release.
This version of python3-commons might be problematic. Click here for more details.
- {python3_commons-0.10.1 → python3_commons-0.10.2}/PKG-INFO +1 -1
- {python3_commons-0.10.1 → python3_commons-0.10.2}/src/python3_commons.egg-info/PKG-INFO +1 -1
- {python3_commons-0.10.1 → python3_commons-0.10.2}/uv.lock +37 -36
- {python3_commons-0.10.1 → python3_commons-0.10.2}/.coveragerc +0 -0
- {python3_commons-0.10.1 → python3_commons-0.10.2}/.github/workflows/checks.yml +0 -0
- {python3_commons-0.10.1 → python3_commons-0.10.2}/.github/workflows/python-publish.yaml +0 -0
- {python3_commons-0.10.1 → python3_commons-0.10.2}/.github/workflows/release-on-tag-push.yml +0 -0
- {python3_commons-0.10.1 → python3_commons-0.10.2}/.gitignore +0 -0
- {python3_commons-0.10.1 → python3_commons-0.10.2}/.pre-commit-config.yaml +0 -0
- {python3_commons-0.10.1 → python3_commons-0.10.2}/.python-version +0 -0
- {python3_commons-0.10.1 → python3_commons-0.10.2}/AUTHORS.rst +0 -0
- {python3_commons-0.10.1 → python3_commons-0.10.2}/CHANGELOG.rst +0 -0
- {python3_commons-0.10.1 → python3_commons-0.10.2}/LICENSE +0 -0
- {python3_commons-0.10.1 → python3_commons-0.10.2}/README.md +0 -0
- {python3_commons-0.10.1 → python3_commons-0.10.2}/README.rst +0 -0
- {python3_commons-0.10.1 → python3_commons-0.10.2}/docs/Makefile +0 -0
- {python3_commons-0.10.1 → python3_commons-0.10.2}/docs/_static/.gitignore +0 -0
- {python3_commons-0.10.1 → python3_commons-0.10.2}/docs/authors.rst +0 -0
- {python3_commons-0.10.1 → python3_commons-0.10.2}/docs/changelog.rst +0 -0
- {python3_commons-0.10.1 → python3_commons-0.10.2}/docs/conf.py +0 -0
- {python3_commons-0.10.1 → python3_commons-0.10.2}/docs/index.rst +0 -0
- {python3_commons-0.10.1 → python3_commons-0.10.2}/docs/license.rst +0 -0
- {python3_commons-0.10.1 → python3_commons-0.10.2}/pyproject.toml +0 -0
- {python3_commons-0.10.1 → python3_commons-0.10.2}/setup.cfg +0 -0
- {python3_commons-0.10.1 → python3_commons-0.10.2}/src/python3_commons/__init__.py +0 -0
- {python3_commons-0.10.1 → python3_commons-0.10.2}/src/python3_commons/api_client.py +0 -0
- {python3_commons-0.10.1 → python3_commons-0.10.2}/src/python3_commons/audit.py +0 -0
- {python3_commons-0.10.1 → python3_commons-0.10.2}/src/python3_commons/auth.py +0 -0
- {python3_commons-0.10.1 → python3_commons-0.10.2}/src/python3_commons/cache.py +0 -0
- {python3_commons-0.10.1 → python3_commons-0.10.2}/src/python3_commons/conf.py +0 -0
- {python3_commons-0.10.1 → python3_commons-0.10.2}/src/python3_commons/db/__init__.py +0 -0
- {python3_commons-0.10.1 → python3_commons-0.10.2}/src/python3_commons/db/helpers.py +0 -0
- {python3_commons-0.10.1 → python3_commons-0.10.2}/src/python3_commons/db/models/__init__.py +0 -0
- {python3_commons-0.10.1 → python3_commons-0.10.2}/src/python3_commons/db/models/auth.py +0 -0
- {python3_commons-0.10.1 → python3_commons-0.10.2}/src/python3_commons/db/models/common.py +0 -0
- {python3_commons-0.10.1 → python3_commons-0.10.2}/src/python3_commons/db/models/rbac.py +0 -0
- {python3_commons-0.10.1 → python3_commons-0.10.2}/src/python3_commons/fs.py +0 -0
- {python3_commons-0.10.1 → python3_commons-0.10.2}/src/python3_commons/helpers.py +0 -0
- {python3_commons-0.10.1 → python3_commons-0.10.2}/src/python3_commons/log/__init__.py +0 -0
- {python3_commons-0.10.1 → python3_commons-0.10.2}/src/python3_commons/log/filters.py +0 -0
- {python3_commons-0.10.1 → python3_commons-0.10.2}/src/python3_commons/log/formatters.py +0 -0
- {python3_commons-0.10.1 → python3_commons-0.10.2}/src/python3_commons/object_storage.py +0 -0
- {python3_commons-0.10.1 → python3_commons-0.10.2}/src/python3_commons/permissions.py +0 -0
- {python3_commons-0.10.1 → python3_commons-0.10.2}/src/python3_commons/serializers/__init__.py +0 -0
- {python3_commons-0.10.1 → python3_commons-0.10.2}/src/python3_commons/serializers/common.py +0 -0
- {python3_commons-0.10.1 → python3_commons-0.10.2}/src/python3_commons/serializers/json.py +0 -0
- {python3_commons-0.10.1 → python3_commons-0.10.2}/src/python3_commons/serializers/msgpack.py +0 -0
- {python3_commons-0.10.1 → python3_commons-0.10.2}/src/python3_commons/serializers/msgspec.py +0 -0
- {python3_commons-0.10.1 → python3_commons-0.10.2}/src/python3_commons.egg-info/SOURCES.txt +0 -0
- {python3_commons-0.10.1 → python3_commons-0.10.2}/src/python3_commons.egg-info/dependency_links.txt +0 -0
- {python3_commons-0.10.1 → python3_commons-0.10.2}/src/python3_commons.egg-info/requires.txt +0 -0
- {python3_commons-0.10.1 → python3_commons-0.10.2}/src/python3_commons.egg-info/top_level.txt +0 -0
- {python3_commons-0.10.1 → python3_commons-0.10.2}/tests/__init__.py +0 -0
- {python3_commons-0.10.1 → python3_commons-0.10.2}/tests/conftest.py +0 -0
- {python3_commons-0.10.1 → python3_commons-0.10.2}/tests/test_audit.py +0 -0
- {python3_commons-0.10.1 → python3_commons-0.10.2}/tests/test_cache.py +0 -0
- {python3_commons-0.10.1 → python3_commons-0.10.2}/tests/test_helpers.py +0 -0
- {python3_commons-0.10.1 → python3_commons-0.10.2}/tests/test_msgpack.py +0 -0
- {python3_commons-0.10.1 → python3_commons-0.10.2}/tests/test_msgspec.py +0 -0
|
@@ -489,16 +489,16 @@ wheels = [
|
|
|
489
489
|
|
|
490
490
|
[[package]]
|
|
491
491
|
name = "fastapi"
|
|
492
|
-
version = "0.
|
|
492
|
+
version = "0.118.0"
|
|
493
493
|
source = { registry = "https://pypi.org/simple" }
|
|
494
494
|
dependencies = [
|
|
495
495
|
{ name = "pydantic" },
|
|
496
496
|
{ name = "starlette" },
|
|
497
497
|
{ name = "typing-extensions" },
|
|
498
498
|
]
|
|
499
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
499
|
+
sdist = { url = "https://files.pythonhosted.org/packages/28/3c/2b9345a6504e4055eaa490e0b41c10e338ad61d9aeaae41d97807873cdf2/fastapi-0.118.0.tar.gz", hash = "sha256:5e81654d98c4d2f53790a7d32d25a7353b30c81441be7d0958a26b5d761fa1c8", size = 310536, upload-time = "2025-09-29T03:37:23.126Z" }
|
|
500
500
|
wheels = [
|
|
501
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
501
|
+
{ url = "https://files.pythonhosted.org/packages/54/20/54e2bdaad22ca91a59455251998d43094d5c3d3567c52c7c04774b3f43f2/fastapi-0.118.0-py3-none-any.whl", hash = "sha256:705137a61e2ef71019d2445b123aa8845bd97273c395b744d5a7dfe559056855", size = 97694, upload-time = "2025-09-29T03:37:21.338Z" },
|
|
502
502
|
]
|
|
503
503
|
|
|
504
504
|
[[package]]
|
|
@@ -1239,19 +1239,20 @@ wheels = [
|
|
|
1239
1239
|
|
|
1240
1240
|
[[package]]
|
|
1241
1241
|
name = "pyyaml"
|
|
1242
|
-
version = "6.0.
|
|
1242
|
+
version = "6.0.3"
|
|
1243
1243
|
source = { registry = "https://pypi.org/simple" }
|
|
1244
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
1244
|
+
sdist = { url = "https://files.pythonhosted.org/packages/05/8e/961c0007c59b8dd7729d542c61a4d537767a59645b82a0b521206e1e25c2/pyyaml-6.0.3.tar.gz", hash = "sha256:d76623373421df22fb4cf8817020cbb7ef15c725b9d5e45f17e189bfc384190f", size = 130960, upload-time = "2025-09-25T21:33:16.546Z" }
|
|
1245
1245
|
wheels = [
|
|
1246
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1247
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1248
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1249
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1250
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1251
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1252
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1253
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1254
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1246
|
+
{ url = "https://files.pythonhosted.org/packages/d1/11/0fd08f8192109f7169db964b5707a2f1e8b745d4e239b784a5a1dd80d1db/pyyaml-6.0.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:8da9669d359f02c0b91ccc01cac4a67f16afec0dac22c2ad09f46bee0697eba8", size = 181669, upload-time = "2025-09-25T21:32:23.673Z" },
|
|
1247
|
+
{ url = "https://files.pythonhosted.org/packages/b1/16/95309993f1d3748cd644e02e38b75d50cbc0d9561d21f390a76242ce073f/pyyaml-6.0.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:2283a07e2c21a2aa78d9c4442724ec1eb15f5e42a723b99cb3d822d48f5f7ad1", size = 173252, upload-time = "2025-09-25T21:32:25.149Z" },
|
|
1248
|
+
{ url = "https://files.pythonhosted.org/packages/50/31/b20f376d3f810b9b2371e72ef5adb33879b25edb7a6d072cb7ca0c486398/pyyaml-6.0.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ee2922902c45ae8ccada2c5b501ab86c36525b883eff4255313a253a3160861c", size = 767081, upload-time = "2025-09-25T21:32:26.575Z" },
|
|
1249
|
+
{ url = "https://files.pythonhosted.org/packages/49/1e/a55ca81e949270d5d4432fbbd19dfea5321eda7c41a849d443dc92fd1ff7/pyyaml-6.0.3-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:a33284e20b78bd4a18c8c2282d549d10bc8408a2a7ff57653c0cf0b9be0afce5", size = 841159, upload-time = "2025-09-25T21:32:27.727Z" },
|
|
1250
|
+
{ url = "https://files.pythonhosted.org/packages/74/27/e5b8f34d02d9995b80abcef563ea1f8b56d20134d8f4e5e81733b1feceb2/pyyaml-6.0.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0f29edc409a6392443abf94b9cf89ce99889a1dd5376d94316ae5145dfedd5d6", size = 801626, upload-time = "2025-09-25T21:32:28.878Z" },
|
|
1251
|
+
{ url = "https://files.pythonhosted.org/packages/f9/11/ba845c23988798f40e52ba45f34849aa8a1f2d4af4b798588010792ebad6/pyyaml-6.0.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:f7057c9a337546edc7973c0d3ba84ddcdf0daa14533c2065749c9075001090e6", size = 753613, upload-time = "2025-09-25T21:32:30.178Z" },
|
|
1252
|
+
{ url = "https://files.pythonhosted.org/packages/3d/e0/7966e1a7bfc0a45bf0a7fb6b98ea03fc9b8d84fa7f2229e9659680b69ee3/pyyaml-6.0.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:eda16858a3cab07b80edaf74336ece1f986ba330fdb8ee0d6c0d68fe82bc96be", size = 794115, upload-time = "2025-09-25T21:32:31.353Z" },
|
|
1253
|
+
{ url = "https://files.pythonhosted.org/packages/de/94/980b50a6531b3019e45ddeada0626d45fa85cbe22300844a7983285bed3b/pyyaml-6.0.3-cp313-cp313-win32.whl", hash = "sha256:d0eae10f8159e8fdad514efdc92d74fd8d682c933a6dd088030f3834bc8e6b26", size = 137427, upload-time = "2025-09-25T21:32:32.58Z" },
|
|
1254
|
+
{ url = "https://files.pythonhosted.org/packages/97/c9/39d5b874e8b28845e4ec2202b5da735d0199dbe5b8fb85f91398814a9a46/pyyaml-6.0.3-cp313-cp313-win_amd64.whl", hash = "sha256:79005a0d97d5ddabfeeea4cf676af11e647e41d81c9a7722a193022accdb6b7c", size = 154090, upload-time = "2025-09-25T21:32:33.659Z" },
|
|
1255
|
+
{ url = "https://files.pythonhosted.org/packages/73/e8/2bdf3ca2090f68bb3d75b44da7bbc71843b19c9f2b9cb9b0f4ab7a5a4329/pyyaml-6.0.3-cp313-cp313-win_arm64.whl", hash = "sha256:5498cd1645aa724a7c71c8f378eb29ebe23da2fc0d7a08071d89469bf1d2defb", size = 140246, upload-time = "2025-09-25T21:32:34.663Z" },
|
|
1255
1256
|
]
|
|
1256
1257
|
|
|
1257
1258
|
[[package]]
|
|
@@ -1307,28 +1308,28 @@ wheels = [
|
|
|
1307
1308
|
|
|
1308
1309
|
[[package]]
|
|
1309
1310
|
name = "ruff"
|
|
1310
|
-
version = "0.13.
|
|
1311
|
-
source = { registry = "https://pypi.org/simple" }
|
|
1312
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
1313
|
-
wheels = [
|
|
1314
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1315
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1316
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1317
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1318
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1319
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1320
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1321
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1322
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1323
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1324
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1325
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1326
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1327
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1328
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1329
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1330
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1331
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1311
|
+
version = "0.13.2"
|
|
1312
|
+
source = { registry = "https://pypi.org/simple" }
|
|
1313
|
+
sdist = { url = "https://files.pythonhosted.org/packages/02/df/8d7d8c515d33adfc540e2edf6c6021ea1c5a58a678d8cfce9fae59aabcab/ruff-0.13.2.tar.gz", hash = "sha256:cb12fffd32fb16d32cef4ed16d8c7cdc27ed7c944eaa98d99d01ab7ab0b710ff", size = 5416417, upload-time = "2025-09-25T14:54:09.936Z" }
|
|
1314
|
+
wheels = [
|
|
1315
|
+
{ url = "https://files.pythonhosted.org/packages/6e/84/5716a7fa4758e41bf70e603e13637c42cfb9dbf7ceb07180211b9bbf75ef/ruff-0.13.2-py3-none-linux_armv6l.whl", hash = "sha256:3796345842b55f033a78285e4f1641078f902020d8450cade03aad01bffd81c3", size = 12343254, upload-time = "2025-09-25T14:53:27.784Z" },
|
|
1316
|
+
{ url = "https://files.pythonhosted.org/packages/9b/77/c7042582401bb9ac8eff25360e9335e901d7a1c0749a2b28ba4ecb239991/ruff-0.13.2-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:ff7e4dda12e683e9709ac89e2dd436abf31a4d8a8fc3d89656231ed808e231d2", size = 13040891, upload-time = "2025-09-25T14:53:31.38Z" },
|
|
1317
|
+
{ url = "https://files.pythonhosted.org/packages/c6/15/125a7f76eb295cb34d19c6778e3a82ace33730ad4e6f28d3427e134a02e0/ruff-0.13.2-py3-none-macosx_11_0_arm64.whl", hash = "sha256:c75e9d2a2fafd1fdd895d0e7e24b44355984affdde1c412a6f6d3f6e16b22d46", size = 12243588, upload-time = "2025-09-25T14:53:33.543Z" },
|
|
1318
|
+
{ url = "https://files.pythonhosted.org/packages/9e/eb/0093ae04a70f81f8be7fd7ed6456e926b65d238fc122311293d033fdf91e/ruff-0.13.2-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cceac74e7bbc53ed7d15d1042ffe7b6577bf294611ad90393bf9b2a0f0ec7cb6", size = 12491359, upload-time = "2025-09-25T14:53:35.892Z" },
|
|
1319
|
+
{ url = "https://files.pythonhosted.org/packages/43/fe/72b525948a6956f07dad4a6f122336b6a05f2e3fd27471cea612349fedb9/ruff-0.13.2-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6ae3f469b5465ba6d9721383ae9d49310c19b452a161b57507764d7ef15f4b07", size = 12162486, upload-time = "2025-09-25T14:53:38.171Z" },
|
|
1320
|
+
{ url = "https://files.pythonhosted.org/packages/6a/e3/0fac422bbbfb2ea838023e0d9fcf1f30183d83ab2482800e2cb892d02dfe/ruff-0.13.2-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4f8f9e3cd6714358238cd6626b9d43026ed19c0c018376ac1ef3c3a04ffb42d8", size = 13871203, upload-time = "2025-09-25T14:53:41.943Z" },
|
|
1321
|
+
{ url = "https://files.pythonhosted.org/packages/6b/82/b721c8e3ec5df6d83ba0e45dcf00892c4f98b325256c42c38ef136496cbf/ruff-0.13.2-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:c6ed79584a8f6cbe2e5d7dbacf7cc1ee29cbdb5df1172e77fbdadc8bb85a1f89", size = 14929635, upload-time = "2025-09-25T14:53:43.953Z" },
|
|
1322
|
+
{ url = "https://files.pythonhosted.org/packages/c4/a0/ad56faf6daa507b83079a1ad7a11694b87d61e6bf01c66bd82b466f21821/ruff-0.13.2-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aed130b2fde049cea2019f55deb939103123cdd191105f97a0599a3e753d61b0", size = 14338783, upload-time = "2025-09-25T14:53:46.205Z" },
|
|
1323
|
+
{ url = "https://files.pythonhosted.org/packages/47/77/ad1d9156db8f99cd01ee7e29d74b34050e8075a8438e589121fcd25c4b08/ruff-0.13.2-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1887c230c2c9d65ed1b4e4cfe4d255577ea28b718ae226c348ae68df958191aa", size = 13355322, upload-time = "2025-09-25T14:53:48.164Z" },
|
|
1324
|
+
{ url = "https://files.pythonhosted.org/packages/64/8b/e87cfca2be6f8b9f41f0bb12dc48c6455e2d66df46fe61bb441a226f1089/ruff-0.13.2-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5bcb10276b69b3cfea3a102ca119ffe5c6ba3901e20e60cf9efb53fa417633c3", size = 13354427, upload-time = "2025-09-25T14:53:50.486Z" },
|
|
1325
|
+
{ url = "https://files.pythonhosted.org/packages/7f/df/bf382f3fbead082a575edb860897287f42b1b3c694bafa16bc9904c11ed3/ruff-0.13.2-py3-none-manylinux_2_31_riscv64.whl", hash = "sha256:afa721017aa55a555b2ff7944816587f1cb813c2c0a882d158f59b832da1660d", size = 13537637, upload-time = "2025-09-25T14:53:52.887Z" },
|
|
1326
|
+
{ url = "https://files.pythonhosted.org/packages/51/70/1fb7a7c8a6fc8bd15636288a46e209e81913b87988f26e1913d0851e54f4/ruff-0.13.2-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:1dbc875cf3720c64b3990fef8939334e74cb0ca65b8dbc61d1f439201a38101b", size = 12340025, upload-time = "2025-09-25T14:53:54.88Z" },
|
|
1327
|
+
{ url = "https://files.pythonhosted.org/packages/4c/27/1e5b3f1c23ca5dd4106d9d580e5c13d9acb70288bff614b3d7b638378cc9/ruff-0.13.2-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:5b939a1b2a960e9742e9a347e5bbc9b3c3d2c716f86c6ae273d9cbd64f193f22", size = 12133449, upload-time = "2025-09-25T14:53:57.089Z" },
|
|
1328
|
+
{ url = "https://files.pythonhosted.org/packages/2d/09/b92a5ccee289f11ab128df57d5911224197d8d55ef3bd2043534ff72ca54/ruff-0.13.2-py3-none-musllinux_1_2_i686.whl", hash = "sha256:50e2d52acb8de3804fc5f6e2fa3ae9bdc6812410a9e46837e673ad1f90a18736", size = 13051369, upload-time = "2025-09-25T14:53:59.124Z" },
|
|
1329
|
+
{ url = "https://files.pythonhosted.org/packages/89/99/26c9d1c7d8150f45e346dc045cc49f23e961efceb4a70c47dea0960dea9a/ruff-0.13.2-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:3196bc13ab2110c176b9a4ae5ff7ab676faaa1964b330a1383ba20e1e19645f2", size = 13523644, upload-time = "2025-09-25T14:54:01.622Z" },
|
|
1330
|
+
{ url = "https://files.pythonhosted.org/packages/f7/00/e7f1501e81e8ec290e79527827af1d88f541d8d26151751b46108978dade/ruff-0.13.2-py3-none-win32.whl", hash = "sha256:7c2a0b7c1e87795fec3404a485096bcd790216c7c146a922d121d8b9c8f1aaac", size = 12245990, upload-time = "2025-09-25T14:54:03.647Z" },
|
|
1331
|
+
{ url = "https://files.pythonhosted.org/packages/ee/bd/d9f33a73de84fafd0146c6fba4f497c4565fe8fa8b46874b8e438869abc2/ruff-0.13.2-py3-none-win_amd64.whl", hash = "sha256:17d95fb32218357c89355f6f6f9a804133e404fc1f65694372e02a557edf8585", size = 13324004, upload-time = "2025-09-25T14:54:06.05Z" },
|
|
1332
|
+
{ url = "https://files.pythonhosted.org/packages/c3/12/28fa2f597a605884deb0f65c1b1ae05111051b2a7030f5d8a4ff7f4599ba/ruff-0.13.2-py3-none-win_arm64.whl", hash = "sha256:da711b14c530412c827219312b7d7fbb4877fb31150083add7e8c5336549cea7", size = 12484437, upload-time = "2025-09-25T14:54:08.022Z" },
|
|
1332
1333
|
]
|
|
1333
1334
|
|
|
1334
1335
|
[[package]]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
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.10.1 → python3_commons-0.10.2}/src/python3_commons/serializers/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python3_commons-0.10.1 → python3_commons-0.10.2}/src/python3_commons/serializers/msgpack.py
RENAMED
|
File without changes
|
{python3_commons-0.10.1 → python3_commons-0.10.2}/src/python3_commons/serializers/msgspec.py
RENAMED
|
File without changes
|
|
File without changes
|
{python3_commons-0.10.1 → python3_commons-0.10.2}/src/python3_commons.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
{python3_commons-0.10.1 → python3_commons-0.10.2}/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
|