agent-starter-pack 0.1.6__py3-none-any.whl → 0.2.0__py3-none-any.whl
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 agent-starter-pack might be problematic. Click here for more details.
- {agent_starter_pack-0.1.6.dist-info → agent_starter_pack-0.2.0.dist-info}/METADATA +6 -6
- {agent_starter_pack-0.1.6.dist-info → agent_starter_pack-0.2.0.dist-info}/RECORD +78 -78
- agents/{agentic_rag_vertexai_search → agentic_rag}/README.md +3 -3
- agents/{agentic_rag_vertexai_search → agentic_rag}/app/agent.py +22 -6
- agents/agentic_rag/app/retrievers.py +132 -0
- agents/{agentic_rag_vertexai_search → agentic_rag}/notebooks/evaluating_langgraph_agent.ipynb +3 -3
- agents/{agentic_rag_vertexai_search → agentic_rag}/template/.templateconfig.yaml +3 -5
- agents/crewai_coding_crew/notebooks/evaluating_crewai_agent.ipynb +4 -4
- agents/crewai_coding_crew/notebooks/evaluating_langgraph_agent.ipynb +3 -3
- agents/langgraph_base_react/notebooks/evaluating_langgraph_agent.ipynb +3 -3
- agents/{multimodal_live_api → live_api}/README.md +7 -0
- agents/{multimodal_live_api → live_api}/app/agent.py +3 -11
- agents/{multimodal_live_api → live_api}/app/server.py +3 -2
- agents/{multimodal_live_api → live_api}/template/.templateconfig.yaml +2 -2
- src/base_template/Makefile +12 -7
- src/base_template/README.md +71 -71
- src/base_template/app/utils/tracing.py +3 -1
- src/base_template/app/utils/typing.py +1 -0
- src/base_template/deployment/cd/deploy-to-prod.yaml +10 -4
- src/base_template/deployment/cd/staging.yaml +11 -10
- src/base_template/deployment/ci/pr_checks.yaml +1 -1
- src/base_template/deployment/terraform/apis.tf +6 -0
- src/base_template/deployment/terraform/build_triggers.tf +34 -21
- src/base_template/deployment/terraform/dev/iam.tf +13 -6
- src/base_template/deployment/terraform/dev/log_sinks.tf +25 -28
- src/base_template/deployment/terraform/dev/providers.tf +1 -0
- src/base_template/deployment/terraform/dev/storage.tf +69 -11
- src/base_template/deployment/terraform/dev/variables.tf +50 -53
- src/base_template/deployment/terraform/dev/vars/env.tfvars +13 -11
- src/base_template/deployment/terraform/iam.tf +3 -3
- src/base_template/deployment/terraform/log_sinks.tf +24 -26
- src/base_template/deployment/terraform/providers.tf +2 -0
- src/base_template/deployment/terraform/service_accounts.tf +7 -7
- src/base_template/deployment/terraform/storage.tf +123 -11
- src/base_template/deployment/terraform/variables.tf +49 -70
- src/base_template/deployment/terraform/vars/env.tfvars +12 -17
- src/base_template/pyproject.toml +4 -3
- src/cli/commands/create.py +79 -19
- src/cli/commands/setup_cicd.py +91 -22
- src/cli/main.py +3 -1
- src/cli/utils/__init__.py +9 -2
- src/cli/utils/cicd.py +12 -0
- src/cli/utils/datastores.py +32 -0
- src/cli/utils/gcp.py +4 -6
- src/cli/utils/template.py +127 -45
- src/cli/utils/version.py +87 -0
- src/data_ingestion/README.md +24 -19
- src/data_ingestion/data_ingestion_pipeline/components/ingest_data.py +135 -2
- src/data_ingestion/data_ingestion_pipeline/components/process_data.py +276 -2
- src/data_ingestion/data_ingestion_pipeline/pipeline.py +28 -5
- src/data_ingestion/data_ingestion_pipeline/submit_pipeline.py +49 -14
- src/data_ingestion/pyproject.toml +1 -0
- src/deployment_targets/agent_engine/app/agent_engine_app.py +3 -1
- src/deployment_targets/cloud_run/tests/unit/test_server.py +15 -33
- src/frontends/live_api_react/frontend/package-lock.json +226 -186
- src/frontends/live_api_react/frontend/package.json +1 -1
- src/frontends/streamlit/frontend/utils/stream_handler.py +5 -5
- src/resources/containers/data_processing/Dockerfile +3 -1
- src/resources/locks/{uv-agentic_rag_vertexai_search-agent_engine.lock → uv-agentic_rag-agent_engine.lock} +747 -694
- src/resources/locks/{uv-agentic_rag_vertexai_search-cloud_run.lock → uv-agentic_rag-cloud_run.lock} +944 -806
- src/resources/locks/uv-crewai_coding_crew-agent_engine.lock +651 -694
- src/resources/locks/uv-crewai_coding_crew-cloud_run.lock +813 -789
- src/resources/locks/uv-langgraph_base_react-agent_engine.lock +666 -686
- src/resources/locks/uv-langgraph_base_react-cloud_run.lock +848 -798
- src/resources/locks/{uv-multimodal_live_api-cloud_run.lock → uv-live_api-cloud_run.lock} +856 -791
- src/resources/setup_cicd/cicd_variables.tf +5 -0
- src/resources/setup_cicd/github.tf +4 -2
- src/utils/watch_and_rebuild.py +14 -0
- agents/agentic_rag_vertexai_search/app/retrievers.py +0 -79
- src/deployment_targets/cloud_run/deployment/terraform/artifact_registry.tf +0 -22
- src/deployment_targets/cloud_run/deployment/terraform/dev/service_accounts.tf +0 -20
- {agent_starter_pack-0.1.6.dist-info → agent_starter_pack-0.2.0.dist-info}/WHEEL +0 -0
- {agent_starter_pack-0.1.6.dist-info → agent_starter_pack-0.2.0.dist-info}/entry_points.txt +0 -0
- {agent_starter_pack-0.1.6.dist-info → agent_starter_pack-0.2.0.dist-info}/licenses/LICENSE +0 -0
- /agents/{agentic_rag_vertexai_search → agentic_rag}/app/templates.py +0 -0
- /agents/{agentic_rag_vertexai_search → agentic_rag}/tests/integration/test_agent.py +0 -0
- /agents/{multimodal_live_api → live_api}/app/templates.py +0 -0
- /agents/{multimodal_live_api → live_api}/app/vector_store.py +0 -0
- /agents/{multimodal_live_api → live_api}/tests/integration/test_server_e2e.py +0 -0
- /agents/{multimodal_live_api → live_api}/tests/load_test/load_test.py +0 -0
- /agents/{multimodal_live_api → live_api}/tests/unit/test_server.py +0 -0
|
@@ -19,7 +19,7 @@ wheels = [
|
|
|
19
19
|
|
|
20
20
|
[[package]]
|
|
21
21
|
name = "aiohttp"
|
|
22
|
-
version = "3.11.
|
|
22
|
+
version = "3.11.14"
|
|
23
23
|
source = { registry = "https://pypi.org/simple" }
|
|
24
24
|
dependencies = [
|
|
25
25
|
{ name = "aiohappyeyeballs" },
|
|
@@ -31,56 +31,56 @@ dependencies = [
|
|
|
31
31
|
{ name = "propcache" },
|
|
32
32
|
{ name = "yarl" },
|
|
33
33
|
]
|
|
34
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
35
|
-
wheels = [
|
|
36
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
37
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
38
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
39
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
40
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
41
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
42
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
43
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
44
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
45
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
46
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
47
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
48
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
49
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
50
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
51
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
52
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
53
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
54
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
55
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
56
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
57
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
58
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
59
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
60
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
61
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
62
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
63
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
64
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
65
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
66
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
67
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
68
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
69
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
70
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
71
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
72
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
73
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
74
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
75
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
76
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
77
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
78
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
79
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
80
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
81
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
82
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
83
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
34
|
+
sdist = { url = "https://files.pythonhosted.org/packages/6c/96/91e93ae5fd04d428c101cdbabce6c820d284d61d2614d00518f4fa52ea24/aiohttp-3.11.14.tar.gz", hash = "sha256:d6edc538c7480fa0a3b2bdd705f8010062d74700198da55d16498e1b49549b9c", size = 7676994 }
|
|
35
|
+
wheels = [
|
|
36
|
+
{ url = "https://files.pythonhosted.org/packages/6a/e1/f1ccc6cf29a31fb33e4eaa07a9d8e4dff00e23b32423b679cdb89536fe71/aiohttp-3.11.14-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:e2bc827c01f75803de77b134afdbf74fa74b62970eafdf190f3244931d7a5c0d", size = 709390 },
|
|
37
|
+
{ url = "https://files.pythonhosted.org/packages/80/7d/195965f183a724d0470560b097543e96dc4a672fc2714012d1be87d6775c/aiohttp-3.11.14-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e365034c5cf6cf74f57420b57682ea79e19eb29033399dd3f40de4d0171998fa", size = 469246 },
|
|
38
|
+
{ url = "https://files.pythonhosted.org/packages/46/02/3a4f05e966c2edeace5103f40d296ba0159cee633ab0f162fbea579653e3/aiohttp-3.11.14-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c32593ead1a8c6aabd58f9d7ee706e48beac796bb0cb71d6b60f2c1056f0a65f", size = 456384 },
|
|
39
|
+
{ url = "https://files.pythonhosted.org/packages/68/a6/c96cd5452af267fdda1cf46accc356d1295fb14da4a7a0e081567ea297af/aiohttp-3.11.14-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b4e7c7ec4146a94a307ca4f112802a8e26d969018fabed526efc340d21d3e7d0", size = 1589803 },
|
|
40
|
+
{ url = "https://files.pythonhosted.org/packages/7f/f4/e50ef78483485bcdae9cf29c9144af2b42457e18175a6ace7c560d89325e/aiohttp-3.11.14-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c8b2df9feac55043759aa89f722a967d977d80f8b5865a4153fc41c93b957efc", size = 1632525 },
|
|
41
|
+
{ url = "https://files.pythonhosted.org/packages/8b/92/b6bd4b89304eee827cf07a40b98af171342cddfa1f8b02b55cd0485b9d4f/aiohttp-3.11.14-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c7571f99525c76a6280f5fe8e194eeb8cb4da55586c3c61c59c33a33f10cfce7", size = 1666839 },
|
|
42
|
+
{ url = "https://files.pythonhosted.org/packages/c7/21/f3230a9f78bb4a4c4462040bf8425ebb673e3773dd17fd9d06d1af43a955/aiohttp-3.11.14-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b59d096b5537ec7c85954cb97d821aae35cfccce3357a2cafe85660cc6295628", size = 1590572 },
|
|
43
|
+
{ url = "https://files.pythonhosted.org/packages/8e/12/e4fd2616950a39425b739476c3eccc820061ea5f892815566d27282e7825/aiohttp-3.11.14-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b42dbd097abb44b3f1156b4bf978ec5853840802d6eee2784857be11ee82c6a0", size = 1543380 },
|
|
44
|
+
{ url = "https://files.pythonhosted.org/packages/6a/7c/3f82c2fdcca53cc8732fa342abbe0372bbbd8af3162d6629ac0a7dc8b281/aiohttp-3.11.14-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:b05774864c87210c531b48dfeb2f7659407c2dda8643104fb4ae5e2c311d12d9", size = 1530160 },
|
|
45
|
+
{ url = "https://files.pythonhosted.org/packages/aa/3e/60af2d40f78612062788c2bf6be38738f9525750d3a7678d31f950047536/aiohttp-3.11.14-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:4e2e8ef37d4bc110917d038807ee3af82700a93ab2ba5687afae5271b8bc50ff", size = 1558543 },
|
|
46
|
+
{ url = "https://files.pythonhosted.org/packages/08/71/93e11c4ef9a72f5f26d7e9f92294707437fae8de49c2019ed713dea7625b/aiohttp-3.11.14-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e9faafa74dbb906b2b6f3eb9942352e9e9db8d583ffed4be618a89bd71a4e914", size = 1536286 },
|
|
47
|
+
{ url = "https://files.pythonhosted.org/packages/da/4b/77b170ae7eb9859d80b9648a7439991425663f66422f3ef0b27f29bde9d0/aiohttp-3.11.14-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:7e7abe865504f41b10777ac162c727af14e9f4db9262e3ed8254179053f63e6d", size = 1608387 },
|
|
48
|
+
{ url = "https://files.pythonhosted.org/packages/02/0b/5fcad20243799e9a3f326140d3d767884449e293fb5d8fca10f83001787c/aiohttp-3.11.14-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:4848ae31ad44330b30f16c71e4f586cd5402a846b11264c412de99fa768f00f3", size = 1629633 },
|
|
49
|
+
{ url = "https://files.pythonhosted.org/packages/3f/e3/bb454add253f939c7331794b2619c156ef5a108403000221ff2dc01f9072/aiohttp-3.11.14-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:2d0b46abee5b5737cb479cc9139b29f010a37b1875ee56d142aefc10686a390b", size = 1565329 },
|
|
50
|
+
{ url = "https://files.pythonhosted.org/packages/6f/08/6b061de352a614461a4a19e60a87e578fe28e1d3fca38315484a17ff484f/aiohttp-3.11.14-cp310-cp310-win32.whl", hash = "sha256:a0d2c04a623ab83963576548ce098baf711a18e2c32c542b62322a0b4584b990", size = 417394 },
|
|
51
|
+
{ url = "https://files.pythonhosted.org/packages/91/f7/533384607d35a8c7a9dbe4497cee7899aa7c3b29c14cd83373c0f415bdcf/aiohttp-3.11.14-cp310-cp310-win_amd64.whl", hash = "sha256:5409a59d5057f2386bb8b8f8bbcfb6e15505cedd8b2445db510563b5d7ea1186", size = 442856 },
|
|
52
|
+
{ url = "https://files.pythonhosted.org/packages/b3/f5/5e2ae82822b1781f828bb9285fb585a4ac028cfd329788caf073bde45706/aiohttp-3.11.14-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:f296d637a50bb15fb6a229fbb0eb053080e703b53dbfe55b1e4bb1c5ed25d325", size = 709382 },
|
|
53
|
+
{ url = "https://files.pythonhosted.org/packages/2f/eb/a0e118c54eb9f897e13e7a357b2ef9b8d0ca438060a9db8ad4af4561aab4/aiohttp-3.11.14-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:ec6cd1954ca2bbf0970f531a628da1b1338f594bf5da7e361e19ba163ecc4f3b", size = 469254 },
|
|
54
|
+
{ url = "https://files.pythonhosted.org/packages/ea/3f/03c2f177536ad6ab4d3052e21fb67ce430d0257b3c61a0ef6b91b7b12cb4/aiohttp-3.11.14-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:572def4aad0a4775af66d5a2b5923c7de0820ecaeeb7987dcbccda2a735a993f", size = 456342 },
|
|
55
|
+
{ url = "https://files.pythonhosted.org/packages/d8/fe/849c000be857f60e36d2ce0a8c3d1ad34f8ea64b0ff119ecdafbc94cddfb/aiohttp-3.11.14-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c68e41c4d576cd6aa6c6d2eddfb32b2acfb07ebfbb4f9da991da26633a3db1a", size = 1686573 },
|
|
56
|
+
{ url = "https://files.pythonhosted.org/packages/a8/e9/737aef162bf618f3b3e0f4a6ed03b5baca5e2a9ffabdab4be1b756ca1061/aiohttp-3.11.14-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99b8bbfc8111826aa8363442c0fc1f5751456b008737ff053570f06a151650b3", size = 1747903 },
|
|
57
|
+
{ url = "https://files.pythonhosted.org/packages/15/19/a510c51e5a383ad804e51040819898d074106dc297adf0e2c78dccc8ab47/aiohttp-3.11.14-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4b0a200e85da5c966277a402736a96457b882360aa15416bf104ca81e6f5807b", size = 1788922 },
|
|
58
|
+
{ url = "https://files.pythonhosted.org/packages/51/66/30b217d0de5584650340025a285f1d0abf2039e5a683342891e84f250da9/aiohttp-3.11.14-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d173c0ac508a2175f7c9a115a50db5fd3e35190d96fdd1a17f9cb10a6ab09aa1", size = 1676062 },
|
|
59
|
+
{ url = "https://files.pythonhosted.org/packages/27/90/9f61d0c7b185e5a413ae7a3e206e7759ea1b208fff420b380ab205ab82b5/aiohttp-3.11.14-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:413fe39fd929329f697f41ad67936f379cba06fcd4c462b62e5b0f8061ee4a77", size = 1620750 },
|
|
60
|
+
{ url = "https://files.pythonhosted.org/packages/c9/5a/455a6b8aea18ec8590f0a5642caf6d0494152de09579a4fd4f9530a4a111/aiohttp-3.11.14-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:65c75b14ee74e8eeff2886321e76188cbe938d18c85cff349d948430179ad02c", size = 1655093 },
|
|
61
|
+
{ url = "https://files.pythonhosted.org/packages/f5/4b/b369e5e809bdb46a306df7b22e611dc8622ebb5313498c11f6e1cb986408/aiohttp-3.11.14-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:321238a42ed463848f06e291c4bbfb3d15ba5a79221a82c502da3e23d7525d06", size = 1661318 },
|
|
62
|
+
{ url = "https://files.pythonhosted.org/packages/25/ac/a211dd149485e7c518481b08d7c13e7acd32090daf1e396aaea6b9f2eea9/aiohttp-3.11.14-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:59a05cdc636431f7ce843c7c2f04772437dd816a5289f16440b19441be6511f1", size = 1650991 },
|
|
63
|
+
{ url = "https://files.pythonhosted.org/packages/74/c4/8b1d41853f1ccd4cb66edc909ccc2a95b332081661f04324f7064cc200d8/aiohttp-3.11.14-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:daf20d9c3b12ae0fdf15ed92235e190f8284945563c4b8ad95b2d7a31f331cd3", size = 1734371 },
|
|
64
|
+
{ url = "https://files.pythonhosted.org/packages/d9/e2/e244684266722d819f41d7e798ce8bbee3b72420eb684193a076ea1bf18f/aiohttp-3.11.14-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:05582cb2d156ac7506e68b5eac83179faedad74522ed88f88e5861b78740dc0e", size = 1756128 },
|
|
65
|
+
{ url = "https://files.pythonhosted.org/packages/e9/59/79d37f2badafbe229c7654dbf631b38419fcaa979a45c04941397ad7251c/aiohttp-3.11.14-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:12c5869e7ddf6b4b1f2109702b3cd7515667b437da90a5a4a50ba1354fe41881", size = 1694370 },
|
|
66
|
+
{ url = "https://files.pythonhosted.org/packages/04/0f/aaaf3fc8533f65eba4572a79a935b9033e663f67f763b10db16f1c40a067/aiohttp-3.11.14-cp311-cp311-win32.whl", hash = "sha256:92868f6512714efd4a6d6cb2bfc4903b997b36b97baea85f744229f18d12755e", size = 417192 },
|
|
67
|
+
{ url = "https://files.pythonhosted.org/packages/07/3c/aa468550b7fcd0c634d4aa8192f33ce32a179ecba08b908a0ed272194f87/aiohttp-3.11.14-cp311-cp311-win_amd64.whl", hash = "sha256:bccd2cb7aa5a3bfada72681bdb91637094d81639e116eac368f8b3874620a654", size = 443590 },
|
|
68
|
+
{ url = "https://files.pythonhosted.org/packages/9c/ca/e4acb3b41f9e176f50960f7162d656e79bed151b1f911173b2c4a6c0a9d2/aiohttp-3.11.14-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:70ab0f61c1a73d3e0342cedd9a7321425c27a7067bebeeacd509f96695b875fc", size = 705489 },
|
|
69
|
+
{ url = "https://files.pythonhosted.org/packages/84/d5/dcf870e0b11f0c1e3065b7f17673485afa1ddb3d630ccd8f328bccfb459f/aiohttp-3.11.14-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:602d4db80daf4497de93cb1ce00b8fc79969c0a7cf5b67bec96fa939268d806a", size = 464807 },
|
|
70
|
+
{ url = "https://files.pythonhosted.org/packages/7c/f0/dc417d819ae26be6abcd72c28af99d285887fddbf76d4bbe46346f201870/aiohttp-3.11.14-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:3a8a0d127c10b8d89e69bbd3430da0f73946d839e65fec00ae48ca7916a31948", size = 456819 },
|
|
71
|
+
{ url = "https://files.pythonhosted.org/packages/28/db/f7deb0862ebb821aa3829db20081a122ba67ffd149303f2d5202e30f20cd/aiohttp-3.11.14-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ca9f835cdfedcb3f5947304e85b8ca3ace31eef6346d8027a97f4de5fb687534", size = 1683536 },
|
|
72
|
+
{ url = "https://files.pythonhosted.org/packages/5e/0d/8bf0619e21c6714902c44ab53e275deb543d4d2e68ab2b7b8fe5ba267506/aiohttp-3.11.14-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8aa5c68e1e68fff7cd3142288101deb4316b51f03d50c92de6ea5ce646e6c71f", size = 1738111 },
|
|
73
|
+
{ url = "https://files.pythonhosted.org/packages/f5/10/204b3700bb57b30b9e759d453fcfb3ad79a3eb18ece4e298aaf7917757dd/aiohttp-3.11.14-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b512f1de1c688f88dbe1b8bb1283f7fbeb7a2b2b26e743bb2193cbadfa6f307", size = 1794508 },
|
|
74
|
+
{ url = "https://files.pythonhosted.org/packages/cc/39/3f65072614c62a315a951fda737e4d9e6e2703f1da0cd2f2d8f629e6092e/aiohttp-3.11.14-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cc9253069158d57e27d47a8453d8a2c5a370dc461374111b5184cf2f147a3cc3", size = 1692006 },
|
|
75
|
+
{ url = "https://files.pythonhosted.org/packages/73/77/cc06ecea173f9bee2f20c8e32e2cf4c8e03909a707183cdf95434db4993e/aiohttp-3.11.14-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0b2501f1b981e70932b4a552fc9b3c942991c7ae429ea117e8fba57718cdeed0", size = 1620369 },
|
|
76
|
+
{ url = "https://files.pythonhosted.org/packages/87/75/5bd424bcd90c7eb2f50fd752d013db4cefb447deeecfc5bc4e8e0b1c74dd/aiohttp-3.11.14-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:28a3d083819741592685762d51d789e6155411277050d08066537c5edc4066e6", size = 1642508 },
|
|
77
|
+
{ url = "https://files.pythonhosted.org/packages/81/f0/ce936ec575e0569f91e5c8374086a6f7760926f16c3b95428fb55d6bfe91/aiohttp-3.11.14-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:0df3788187559c262922846087e36228b75987f3ae31dd0a1e5ee1034090d42f", size = 1685771 },
|
|
78
|
+
{ url = "https://files.pythonhosted.org/packages/68/b7/5216590b99b5b1f18989221c25ac9d9a14a7b0c3c4ae1ff728e906c36430/aiohttp-3.11.14-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:9e73fa341d8b308bb799cf0ab6f55fc0461d27a9fa3e4582755a3d81a6af8c09", size = 1648318 },
|
|
79
|
+
{ url = "https://files.pythonhosted.org/packages/a5/c2/c27061c4ab93fa25f925c7ebddc10c20d992dbbc329e89d493811299dc93/aiohttp-3.11.14-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:51ba80d473eb780a329d73ac8afa44aa71dfb521693ccea1dea8b9b5c4df45ce", size = 1704545 },
|
|
80
|
+
{ url = "https://files.pythonhosted.org/packages/09/f5/11b2da82f2c52365a5b760a4e944ae50a89cf5fb207024b7853615254584/aiohttp-3.11.14-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:8d1dd75aa4d855c7debaf1ef830ff2dfcc33f893c7db0af2423ee761ebffd22b", size = 1737839 },
|
|
81
|
+
{ url = "https://files.pythonhosted.org/packages/03/7f/145e23fe0a4c45b256f14c3268ada5497d487786334721ae8a0c818ee516/aiohttp-3.11.14-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:41cf0cefd9e7b5c646c2ef529c8335e7eafd326f444cc1cdb0c47b6bc836f9be", size = 1695833 },
|
|
82
|
+
{ url = "https://files.pythonhosted.org/packages/1c/78/627dba6ee9fb9439e2e29b521adb1135877a9c7b54811fec5c46e59f2fc8/aiohttp-3.11.14-cp312-cp312-win32.whl", hash = "sha256:948abc8952aff63de7b2c83bfe3f211c727da3a33c3a5866a0e2cf1ee1aa950f", size = 412185 },
|
|
83
|
+
{ url = "https://files.pythonhosted.org/packages/3f/5f/1737cf6fcf0524693a4aeff8746530b65422236761e7bfdd79c6d2ce2e1c/aiohttp-3.11.14-cp312-cp312-win_amd64.whl", hash = "sha256:3b420d076a46f41ea48e5fcccb996f517af0d406267e31e6716f480a3d50d65c", size = 438526 },
|
|
84
84
|
]
|
|
85
85
|
|
|
86
86
|
[[package]]
|
|
@@ -140,7 +140,7 @@ wheels = [
|
|
|
140
140
|
|
|
141
141
|
[[package]]
|
|
142
142
|
name = "anyio"
|
|
143
|
-
version = "4.
|
|
143
|
+
version = "4.9.0"
|
|
144
144
|
source = { registry = "https://pypi.org/simple" }
|
|
145
145
|
dependencies = [
|
|
146
146
|
{ name = "exceptiongroup", marker = "python_full_version < '3.11'" },
|
|
@@ -148,9 +148,9 @@ dependencies = [
|
|
|
148
148
|
{ name = "sniffio" },
|
|
149
149
|
{ name = "typing-extensions" },
|
|
150
150
|
]
|
|
151
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
151
|
+
sdist = { url = "https://files.pythonhosted.org/packages/95/7d/4c1bd541d4dffa1b52bd83fb8527089e097a106fc90b467a7313b105f840/anyio-4.9.0.tar.gz", hash = "sha256:673c0c244e15788651a4ff38710fea9675823028a6f08a5eda409e0c9840a028", size = 190949 }
|
|
152
152
|
wheels = [
|
|
153
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
153
|
+
{ url = "https://files.pythonhosted.org/packages/a1/ee/48ca1a7c89ffec8b6a0c5d02b89c305671d5ffd8d3c94acf8b8c408575bb/anyio-4.9.0-py3-none-any.whl", hash = "sha256:9f76d541cad6e36af7beb62e978876f3b41e3e04f2c1fbf0884604c0a9c4d93c", size = 100916 },
|
|
154
154
|
]
|
|
155
155
|
|
|
156
156
|
[[package]]
|
|
@@ -240,14 +240,14 @@ wheels = [
|
|
|
240
240
|
|
|
241
241
|
[[package]]
|
|
242
242
|
name = "async-lru"
|
|
243
|
-
version = "2.0.
|
|
243
|
+
version = "2.0.5"
|
|
244
244
|
source = { registry = "https://pypi.org/simple" }
|
|
245
245
|
dependencies = [
|
|
246
246
|
{ name = "typing-extensions", marker = "python_full_version < '3.11'" },
|
|
247
247
|
]
|
|
248
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
248
|
+
sdist = { url = "https://files.pythonhosted.org/packages/b2/4d/71ec4d3939dc755264f680f6c2b4906423a304c3d18e96853f0a595dfe97/async_lru-2.0.5.tar.gz", hash = "sha256:481d52ccdd27275f42c43a928b4a50c3bfb2d67af4e78b170e3e0bb39c66e5bb", size = 10380 }
|
|
249
249
|
wheels = [
|
|
250
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
250
|
+
{ url = "https://files.pythonhosted.org/packages/03/49/d10027df9fce941cb8184e78a02857af36360d33e1721df81c5ed2179a1a/async_lru-2.0.5-py3-none-any.whl", hash = "sha256:ab95404d8d2605310d345932697371a5f40def0487c03d6d0ad9138de52c9943", size = 6069 },
|
|
251
251
|
]
|
|
252
252
|
|
|
253
253
|
[[package]]
|
|
@@ -261,11 +261,11 @@ wheels = [
|
|
|
261
261
|
|
|
262
262
|
[[package]]
|
|
263
263
|
name = "attrs"
|
|
264
|
-
version = "25.
|
|
264
|
+
version = "25.3.0"
|
|
265
265
|
source = { registry = "https://pypi.org/simple" }
|
|
266
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
266
|
+
sdist = { url = "https://files.pythonhosted.org/packages/5a/b0/1367933a8532ee6ff8d63537de4f1177af4bff9f3e829baf7331f595bb24/attrs-25.3.0.tar.gz", hash = "sha256:75d7cefc7fb576747b2c81b4442d4d4a1ce0900973527c011d1030fd3bf4af1b", size = 812032 }
|
|
267
267
|
wheels = [
|
|
268
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
268
|
+
{ url = "https://files.pythonhosted.org/packages/77/06/bb80f5f86020c4551da315d78b3ab75e8228f89f0162f2c3a819e407941a/attrs-25.3.0-py3-none-any.whl", hash = "sha256:427318ce031701fea540783410126f03899a97ffc6f61596ad581ac2e40e3bc3", size = 63815 },
|
|
269
269
|
]
|
|
270
270
|
|
|
271
271
|
[[package]]
|
|
@@ -913,28 +913,28 @@ wheels = [
|
|
|
913
913
|
|
|
914
914
|
[[package]]
|
|
915
915
|
name = "faker"
|
|
916
|
-
version = "37.
|
|
916
|
+
version = "37.1.0"
|
|
917
917
|
source = { registry = "https://pypi.org/simple" }
|
|
918
918
|
dependencies = [
|
|
919
919
|
{ name = "tzdata" },
|
|
920
920
|
]
|
|
921
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
921
|
+
sdist = { url = "https://files.pythonhosted.org/packages/ba/a6/b77f42021308ec8b134502343da882c0905d725a4d661c7adeaf7acaf515/faker-37.1.0.tar.gz", hash = "sha256:ad9dc66a3b84888b837ca729e85299a96b58fdaef0323ed0baace93c9614af06", size = 1875707 }
|
|
922
922
|
wheels = [
|
|
923
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
923
|
+
{ url = "https://files.pythonhosted.org/packages/d7/a1/8936bc8e79af80ca38288dd93ed44ed1f9d63beb25447a4c59e746e01f8d/faker-37.1.0-py3-none-any.whl", hash = "sha256:dc2f730be71cb770e9c715b13374d80dbcee879675121ab51f9683d262ae9a1c", size = 1918783 },
|
|
924
924
|
]
|
|
925
925
|
|
|
926
926
|
[[package]]
|
|
927
927
|
name = "fastapi"
|
|
928
|
-
version = "0.115.
|
|
928
|
+
version = "0.115.12"
|
|
929
929
|
source = { registry = "https://pypi.org/simple" }
|
|
930
930
|
dependencies = [
|
|
931
931
|
{ name = "pydantic" },
|
|
932
932
|
{ name = "starlette" },
|
|
933
933
|
{ name = "typing-extensions" },
|
|
934
934
|
]
|
|
935
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
935
|
+
sdist = { url = "https://files.pythonhosted.org/packages/f4/55/ae499352d82338331ca1e28c7f4a63bfd09479b16395dce38cf50a39e2c2/fastapi-0.115.12.tar.gz", hash = "sha256:1e2c2a2646905f9e83d32f04a3f86aff4a286669c6c950ca95b5fd68c2602681", size = 295236 }
|
|
936
936
|
wheels = [
|
|
937
|
-
{ url = "https://files.pythonhosted.org/packages/b3/
|
|
937
|
+
{ url = "https://files.pythonhosted.org/packages/50/b3/b51f09c2ba432a576fe63758bddc81f78f0c6309d9e5c10d194313bf021e/fastapi-0.115.12-py3-none-any.whl", hash = "sha256:e94613d6c05e27be7ffebdd6ea5f388112e5e430c8f7d6494a9d1d88d43e814d", size = 95164 },
|
|
938
938
|
]
|
|
939
939
|
|
|
940
940
|
[[package]]
|
|
@@ -961,11 +961,11 @@ wheels = [
|
|
|
961
961
|
|
|
962
962
|
[[package]]
|
|
963
963
|
name = "filelock"
|
|
964
|
-
version = "3.
|
|
964
|
+
version = "3.18.0"
|
|
965
965
|
source = { registry = "https://pypi.org/simple" }
|
|
966
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
966
|
+
sdist = { url = "https://files.pythonhosted.org/packages/0a/10/c23352565a6544bdc5353e0b15fc1c563352101f30e24bf500207a54df9a/filelock-3.18.0.tar.gz", hash = "sha256:adbc88eabb99d2fec8c9c1b229b171f18afa655400173ddc653d5d01501fb9f2", size = 18075 }
|
|
967
967
|
wheels = [
|
|
968
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
968
|
+
{ url = "https://files.pythonhosted.org/packages/4d/36/2a115987e2d8c300a974597416d9de88f2444426de9571f4b59b2cca3acc/filelock-3.18.0-py3-none-any.whl", hash = "sha256:c401f4f8377c4464e6db25fff06205fd89bdd83b65eb0488ed1b160f780e21de", size = 16215 },
|
|
969
969
|
]
|
|
970
970
|
|
|
971
971
|
[[package]]
|
|
@@ -1075,11 +1075,11 @@ wheels = [
|
|
|
1075
1075
|
|
|
1076
1076
|
[[package]]
|
|
1077
1077
|
name = "fsspec"
|
|
1078
|
-
version = "2025.3.
|
|
1078
|
+
version = "2025.3.2"
|
|
1079
1079
|
source = { registry = "https://pypi.org/simple" }
|
|
1080
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
1080
|
+
sdist = { url = "https://files.pythonhosted.org/packages/45/d8/8425e6ba5fcec61a1d16e41b1b71d2bf9344f1fe48012c2b48b9620feae5/fsspec-2025.3.2.tar.gz", hash = "sha256:e52c77ef398680bbd6a98c0e628fbc469491282981209907bbc8aea76a04fdc6", size = 299281 }
|
|
1081
1081
|
wheels = [
|
|
1082
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1082
|
+
{ url = "https://files.pythonhosted.org/packages/44/4b/e0cfc1a6f17e990f3e64b7d941ddc4acdc7b19d6edd51abf495f32b1a9e4/fsspec-2025.3.2-py3-none-any.whl", hash = "sha256:2daf8dc3d1dfa65b6aa37748d112773a7a08416f6c70d96b264c96476ecaf711", size = 194435 },
|
|
1083
1083
|
]
|
|
1084
1084
|
|
|
1085
1085
|
[[package]]
|
|
@@ -1172,13 +1172,6 @@ evaluation = [
|
|
|
1172
1172
|
{ name = "scikit-learn", version = "1.6.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11'" },
|
|
1173
1173
|
{ name = "tqdm" },
|
|
1174
1174
|
]
|
|
1175
|
-
langchain = [
|
|
1176
|
-
{ name = "langchain" },
|
|
1177
|
-
{ name = "langchain-core" },
|
|
1178
|
-
{ name = "langchain-google-vertexai" },
|
|
1179
|
-
{ name = "langgraph" },
|
|
1180
|
-
{ name = "openinference-instrumentation-langchain" },
|
|
1181
|
-
]
|
|
1182
1175
|
reasoningengine = [
|
|
1183
1176
|
{ name = "cloudpickle" },
|
|
1184
1177
|
{ name = "google-cloud-trace" },
|
|
@@ -1190,7 +1183,7 @@ reasoningengine = [
|
|
|
1190
1183
|
|
|
1191
1184
|
[[package]]
|
|
1192
1185
|
name = "google-cloud-appengine-logging"
|
|
1193
|
-
version = "1.6.
|
|
1186
|
+
version = "1.6.1"
|
|
1194
1187
|
source = { registry = "https://pypi.org/simple" }
|
|
1195
1188
|
dependencies = [
|
|
1196
1189
|
{ name = "google-api-core", extra = ["grpc"] },
|
|
@@ -1198,27 +1191,27 @@ dependencies = [
|
|
|
1198
1191
|
{ name = "proto-plus" },
|
|
1199
1192
|
{ name = "protobuf" },
|
|
1200
1193
|
]
|
|
1201
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
1194
|
+
sdist = { url = "https://files.pythonhosted.org/packages/cb/ec/ac5eed8660dd49a68d425c1e9594a40dc0c757d3d06af1e7731e5ff5d4ee/google_cloud_appengine_logging-1.6.1.tar.gz", hash = "sha256:f97bde36c7f7ff541123c2570813158bdda0c3f2385c8d32fdf1211c561ae56d", size = 16520 }
|
|
1202
1195
|
wheels = [
|
|
1203
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1196
|
+
{ url = "https://files.pythonhosted.org/packages/34/d4/1e515977b876199ba476e58890c88c92b2680a04370c63d90b89dd9bff37/google_cloud_appengine_logging-1.6.1-py3-none-any.whl", hash = "sha256:48f4dcf43000899c7b411bc27181f70240e81a958a44e44ce800ba8e5d5184ac", size = 16809 },
|
|
1204
1197
|
]
|
|
1205
1198
|
|
|
1206
1199
|
[[package]]
|
|
1207
1200
|
name = "google-cloud-audit-log"
|
|
1208
|
-
version = "0.3.
|
|
1201
|
+
version = "0.3.2"
|
|
1209
1202
|
source = { registry = "https://pypi.org/simple" }
|
|
1210
1203
|
dependencies = [
|
|
1211
1204
|
{ name = "googleapis-common-protos" },
|
|
1212
1205
|
{ name = "protobuf" },
|
|
1213
1206
|
]
|
|
1214
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
1207
|
+
sdist = { url = "https://files.pythonhosted.org/packages/85/af/53b4ef636e492d136b3c217e52a07bee569430dda07b8e515d5f2b701b1e/google_cloud_audit_log-0.3.2.tar.gz", hash = "sha256:2598f1533a7d7cdd6c7bf448c12e5519c1d53162d78784e10bcdd1df67791bc3", size = 33377 }
|
|
1215
1208
|
wheels = [
|
|
1216
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1209
|
+
{ url = "https://files.pythonhosted.org/packages/b1/74/38a70339e706b174b3c1117ad931aaa0ff0565b599869317a220d1967e1b/google_cloud_audit_log-0.3.2-py3-none-any.whl", hash = "sha256:daaedfb947a0d77f524e1bd2b560242ab4836fe1afd6b06b92f152b9658554ed", size = 32472 },
|
|
1217
1210
|
]
|
|
1218
1211
|
|
|
1219
1212
|
[[package]]
|
|
1220
1213
|
name = "google-cloud-bigquery"
|
|
1221
|
-
version = "3.
|
|
1214
|
+
version = "3.31.0"
|
|
1222
1215
|
source = { registry = "https://pypi.org/simple" }
|
|
1223
1216
|
dependencies = [
|
|
1224
1217
|
{ name = "google-api-core", extra = ["grpc"] },
|
|
@@ -1229,9 +1222,9 @@ dependencies = [
|
|
|
1229
1222
|
{ name = "python-dateutil" },
|
|
1230
1223
|
{ name = "requests" },
|
|
1231
1224
|
]
|
|
1232
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
1225
|
+
sdist = { url = "https://files.pythonhosted.org/packages/73/91/4c7274f4d5faf13ac000b06353deaf3579575bf0e4bbad07fa68b9f09ba9/google_cloud_bigquery-3.31.0.tar.gz", hash = "sha256:b89dc716dbe4abdb7a4f873f7050100287bc98514e0614c5d54cd6a8e9fb0991", size = 479961 }
|
|
1233
1226
|
wheels = [
|
|
1234
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1227
|
+
{ url = "https://files.pythonhosted.org/packages/e8/bc/4cb8c61fc6dd817a4a390b745ec7b305f4578f547a16d09d54c8a790624b/google_cloud_bigquery-3.31.0-py3-none-any.whl", hash = "sha256:97f4a3219854ff01d6a3a57312feecb0b6e13062226b823f867e2d3619c4787b", size = 250099 },
|
|
1235
1228
|
]
|
|
1236
1229
|
|
|
1237
1230
|
[[package]]
|
|
@@ -1269,7 +1262,7 @@ wheels = [
|
|
|
1269
1262
|
|
|
1270
1263
|
[[package]]
|
|
1271
1264
|
name = "google-cloud-resource-manager"
|
|
1272
|
-
version = "1.14.
|
|
1265
|
+
version = "1.14.2"
|
|
1273
1266
|
source = { registry = "https://pypi.org/simple" }
|
|
1274
1267
|
dependencies = [
|
|
1275
1268
|
{ name = "google-api-core", extra = ["grpc"] },
|
|
@@ -1278,9 +1271,9 @@ dependencies = [
|
|
|
1278
1271
|
{ name = "proto-plus" },
|
|
1279
1272
|
{ name = "protobuf" },
|
|
1280
1273
|
]
|
|
1281
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
1274
|
+
sdist = { url = "https://files.pythonhosted.org/packages/6e/ca/a4648f5038cb94af4b3942815942a03aa9398f9fb0bef55b3f1585b9940d/google_cloud_resource_manager-1.14.2.tar.gz", hash = "sha256:962e2d904c550d7bac48372607904ff7bb3277e3bb4a36d80cc9a37e28e6eb74", size = 446370 }
|
|
1282
1275
|
wheels = [
|
|
1283
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1276
|
+
{ url = "https://files.pythonhosted.org/packages/b1/ea/a92631c358da377af34d3a9682c97af83185c2d66363d5939ab4a1169a7f/google_cloud_resource_manager-1.14.2-py3-none-any.whl", hash = "sha256:d0fa954dedd1d2b8e13feae9099c01b8aac515b648e612834f9942d2795a9900", size = 394344 },
|
|
1284
1277
|
]
|
|
1285
1278
|
|
|
1286
1279
|
[[package]]
|
|
@@ -1302,7 +1295,7 @@ wheels = [
|
|
|
1302
1295
|
|
|
1303
1296
|
[[package]]
|
|
1304
1297
|
name = "google-cloud-trace"
|
|
1305
|
-
version = "1.16.
|
|
1298
|
+
version = "1.16.1"
|
|
1306
1299
|
source = { registry = "https://pypi.org/simple" }
|
|
1307
1300
|
dependencies = [
|
|
1308
1301
|
{ name = "google-api-core", extra = ["grpc"] },
|
|
@@ -1310,35 +1303,37 @@ dependencies = [
|
|
|
1310
1303
|
{ name = "proto-plus" },
|
|
1311
1304
|
{ name = "protobuf" },
|
|
1312
1305
|
]
|
|
1313
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
1306
|
+
sdist = { url = "https://files.pythonhosted.org/packages/5a/66/b706c1316467b8cc304e0b6c6a22414abd23e41fd4d9f6af819c0404790b/google_cloud_trace-1.16.1.tar.gz", hash = "sha256:15308b04f12d958f2b3831a4f76b97c61c0c7a46804bdc570d19024938029d9a", size = 97349 }
|
|
1314
1307
|
wheels = [
|
|
1315
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1308
|
+
{ url = "https://files.pythonhosted.org/packages/3b/10/6d2189c92e8a8ecf50cd13281436f72b91d6509e31b1c21363b097561be3/google_cloud_trace-1.16.1-py3-none-any.whl", hash = "sha256:a4a6c90f7507823024c43ed7890baecf68ebd8cb20a6d7e03622c5f04087fef4", size = 103303 },
|
|
1316
1309
|
]
|
|
1317
1310
|
|
|
1318
1311
|
[[package]]
|
|
1319
1312
|
name = "google-crc32c"
|
|
1320
|
-
version = "1.
|
|
1321
|
-
source = { registry = "https://pypi.org/simple" }
|
|
1322
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
1323
|
-
wheels = [
|
|
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/
|
|
1332
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1333
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1334
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1335
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1336
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1337
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1338
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1339
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1340
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1341
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1313
|
+
version = "1.7.1"
|
|
1314
|
+
source = { registry = "https://pypi.org/simple" }
|
|
1315
|
+
sdist = { url = "https://files.pythonhosted.org/packages/19/ae/87802e6d9f9d69adfaedfcfd599266bf386a54d0be058b532d04c794f76d/google_crc32c-1.7.1.tar.gz", hash = "sha256:2bff2305f98846f3e825dbeec9ee406f89da7962accdb29356e4eadc251bd472", size = 14495 }
|
|
1316
|
+
wheels = [
|
|
1317
|
+
{ url = "https://files.pythonhosted.org/packages/eb/69/b1b05cf415df0d86691d6a8b4b7e60ab3a6fb6efb783ee5cd3ed1382bfd3/google_crc32c-1.7.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:b07d48faf8292b4db7c3d64ab86f950c2e94e93a11fd47271c28ba458e4a0d76", size = 30467 },
|
|
1318
|
+
{ url = "https://files.pythonhosted.org/packages/44/3d/92f8928ecd671bd5b071756596971c79d252d09b835cdca5a44177fa87aa/google_crc32c-1.7.1-cp310-cp310-macosx_12_0_x86_64.whl", hash = "sha256:7cc81b3a2fbd932a4313eb53cc7d9dde424088ca3a0337160f35d91826880c1d", size = 30311 },
|
|
1319
|
+
{ url = "https://files.pythonhosted.org/packages/33/42/c2d15a73df79d45ed6b430b9e801d0bd8e28ac139a9012d7d58af50a385d/google_crc32c-1.7.1-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:1c67ca0a1f5b56162951a9dae987988679a7db682d6f97ce0f6381ebf0fbea4c", size = 37889 },
|
|
1320
|
+
{ url = "https://files.pythonhosted.org/packages/57/ea/ac59c86a3c694afd117bb669bde32aaf17d0de4305d01d706495f09cbf19/google_crc32c-1.7.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fc5319db92daa516b653600794d5b9f9439a9a121f3e162f94b0e1891c7933cb", size = 33028 },
|
|
1321
|
+
{ url = "https://files.pythonhosted.org/packages/60/44/87e77e8476767a4a93f6cf271157c6d948eacec63688c093580af13b04be/google_crc32c-1.7.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dcdf5a64adb747610140572ed18d011896e3b9ae5195f2514b7ff678c80f1603", size = 38026 },
|
|
1322
|
+
{ url = "https://files.pythonhosted.org/packages/c8/bf/21ac7bb305cd7c1a6de9c52f71db0868e104a5b573a4977cd9d0ff830f82/google_crc32c-1.7.1-cp310-cp310-win_amd64.whl", hash = "sha256:754561c6c66e89d55754106739e22fdaa93fafa8da7221b29c8b8e8270c6ec8a", size = 33476 },
|
|
1323
|
+
{ url = "https://files.pythonhosted.org/packages/f7/94/220139ea87822b6fdfdab4fb9ba81b3fff7ea2c82e2af34adc726085bffc/google_crc32c-1.7.1-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:6fbab4b935989e2c3610371963ba1b86afb09537fd0c633049be82afe153ac06", size = 30468 },
|
|
1324
|
+
{ url = "https://files.pythonhosted.org/packages/94/97/789b23bdeeb9d15dc2904660463ad539d0318286d7633fe2760c10ed0c1c/google_crc32c-1.7.1-cp311-cp311-macosx_12_0_x86_64.whl", hash = "sha256:ed66cbe1ed9cbaaad9392b5259b3eba4a9e565420d734e6238813c428c3336c9", size = 30313 },
|
|
1325
|
+
{ url = "https://files.pythonhosted.org/packages/81/b8/976a2b843610c211e7ccb3e248996a61e87dbb2c09b1499847e295080aec/google_crc32c-1.7.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ee6547b657621b6cbed3562ea7826c3e11cab01cd33b74e1f677690652883e77", size = 33048 },
|
|
1326
|
+
{ url = "https://files.pythonhosted.org/packages/c9/16/a3842c2cf591093b111d4a5e2bfb478ac6692d02f1b386d2a33283a19dc9/google_crc32c-1.7.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d68e17bad8f7dd9a49181a1f5a8f4b251c6dbc8cc96fb79f1d321dfd57d66f53", size = 32669 },
|
|
1327
|
+
{ url = "https://files.pythonhosted.org/packages/04/17/ed9aba495916fcf5fe4ecb2267ceb851fc5f273c4e4625ae453350cfd564/google_crc32c-1.7.1-cp311-cp311-win_amd64.whl", hash = "sha256:6335de12921f06e1f774d0dd1fbea6bf610abe0887a1638f64d694013138be5d", size = 33476 },
|
|
1328
|
+
{ url = "https://files.pythonhosted.org/packages/dd/b7/787e2453cf8639c94b3d06c9d61f512234a82e1d12d13d18584bd3049904/google_crc32c-1.7.1-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:2d73a68a653c57281401871dd4aeebbb6af3191dcac751a76ce430df4d403194", size = 30470 },
|
|
1329
|
+
{ url = "https://files.pythonhosted.org/packages/ed/b4/6042c2b0cbac3ec3a69bb4c49b28d2f517b7a0f4a0232603c42c58e22b44/google_crc32c-1.7.1-cp312-cp312-macosx_12_0_x86_64.whl", hash = "sha256:22beacf83baaf59f9d3ab2bbb4db0fb018da8e5aebdce07ef9f09fce8220285e", size = 30315 },
|
|
1330
|
+
{ url = "https://files.pythonhosted.org/packages/29/ad/01e7a61a5d059bc57b702d9ff6a18b2585ad97f720bd0a0dbe215df1ab0e/google_crc32c-1.7.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:19eafa0e4af11b0a4eb3974483d55d2d77ad1911e6cf6f832e1574f6781fd337", size = 33180 },
|
|
1331
|
+
{ url = "https://files.pythonhosted.org/packages/3b/a5/7279055cf004561894ed3a7bfdf5bf90a53f28fadd01af7cd166e88ddf16/google_crc32c-1.7.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b6d86616faaea68101195c6bdc40c494e4d76f41e07a37ffdef270879c15fb65", size = 32794 },
|
|
1332
|
+
{ url = "https://files.pythonhosted.org/packages/0f/d6/77060dbd140c624e42ae3ece3df53b9d811000729a5c821b9fd671ceaac6/google_crc32c-1.7.1-cp312-cp312-win_amd64.whl", hash = "sha256:b7491bdc0c7564fcf48c0179d2048ab2f7c7ba36b84ccd3a3e1c3f7a72d3bba6", size = 33477 },
|
|
1333
|
+
{ url = "https://files.pythonhosted.org/packages/0b/43/31e57ce04530794917dfe25243860ec141de9fadf4aa9783dffe7dac7c39/google_crc32c-1.7.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a8e9afc74168b0b2232fb32dd202c93e46b7d5e4bf03e66ba5dc273bb3559589", size = 28242 },
|
|
1334
|
+
{ url = "https://files.pythonhosted.org/packages/eb/f3/8b84cd4e0ad111e63e30eb89453f8dd308e3ad36f42305cf8c202461cdf0/google_crc32c-1.7.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa8136cc14dd27f34a3221c0f16fd42d8a40e4778273e61a3c19aedaa44daf6b", size = 28049 },
|
|
1335
|
+
{ url = "https://files.pythonhosted.org/packages/16/1b/1693372bf423ada422f80fd88260dbfd140754adb15cbc4d7e9a68b1cb8e/google_crc32c-1.7.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:85fef7fae11494e747c9fd1359a527e5970fc9603c90764843caabd3a16a0a48", size = 28241 },
|
|
1336
|
+
{ url = "https://files.pythonhosted.org/packages/fd/3c/2a19a60a473de48717b4efb19398c3f914795b64a96cf3fbe82588044f78/google_crc32c-1.7.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6efb97eb4369d52593ad6f75e7e10d053cf00c48983f7a973105bc70b0ac4d82", size = 28048 },
|
|
1342
1337
|
]
|
|
1343
1338
|
|
|
1344
1339
|
[[package]]
|
|
@@ -1355,14 +1350,14 @@ wheels = [
|
|
|
1355
1350
|
|
|
1356
1351
|
[[package]]
|
|
1357
1352
|
name = "googleapis-common-protos"
|
|
1358
|
-
version = "1.69.
|
|
1353
|
+
version = "1.69.2"
|
|
1359
1354
|
source = { registry = "https://pypi.org/simple" }
|
|
1360
1355
|
dependencies = [
|
|
1361
1356
|
{ name = "protobuf" },
|
|
1362
1357
|
]
|
|
1363
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
1358
|
+
sdist = { url = "https://files.pythonhosted.org/packages/1b/d7/ee9d56af4e6dbe958562b5020f46263c8a4628e7952070241fc0e9b182ae/googleapis_common_protos-1.69.2.tar.gz", hash = "sha256:3e1b904a27a33c821b4b749fd31d334c0c9c30e6113023d495e48979a3dc9c5f", size = 144496 }
|
|
1364
1359
|
wheels = [
|
|
1365
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1360
|
+
{ url = "https://files.pythonhosted.org/packages/f9/53/d35476d547a286506f0a6a634ccf1e5d288fffd53d48f0bd5fef61d68684/googleapis_common_protos-1.69.2-py3-none-any.whl", hash = "sha256:0b30452ff9c7a27d80bfc5718954063e8ab53dd3697093d3bc99581f5fd24212", size = 293215 },
|
|
1366
1361
|
]
|
|
1367
1362
|
|
|
1368
1363
|
[package.optional-dependencies]
|
|
@@ -1407,16 +1402,16 @@ wheels = [
|
|
|
1407
1402
|
|
|
1408
1403
|
[[package]]
|
|
1409
1404
|
name = "grpc-google-iam-v1"
|
|
1410
|
-
version = "0.14.
|
|
1405
|
+
version = "0.14.2"
|
|
1411
1406
|
source = { registry = "https://pypi.org/simple" }
|
|
1412
1407
|
dependencies = [
|
|
1413
1408
|
{ name = "googleapis-common-protos", extra = ["grpc"] },
|
|
1414
1409
|
{ name = "grpcio" },
|
|
1415
1410
|
{ name = "protobuf" },
|
|
1416
1411
|
]
|
|
1417
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
1412
|
+
sdist = { url = "https://files.pythonhosted.org/packages/b9/4e/8d0ca3b035e41fe0b3f31ebbb638356af720335e5a11154c330169b40777/grpc_google_iam_v1-0.14.2.tar.gz", hash = "sha256:b3e1fc387a1a329e41672197d0ace9de22c78dd7d215048c4c78712073f7bd20", size = 16259 }
|
|
1418
1413
|
wheels = [
|
|
1419
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1414
|
+
{ url = "https://files.pythonhosted.org/packages/66/6f/dd9b178aee7835b96c2e63715aba6516a9d50f6bebbd1cc1d32c82a2a6c3/grpc_google_iam_v1-0.14.2-py3-none-any.whl", hash = "sha256:a3171468459770907926d56a440b2bb643eec1d7ba215f48f3ecece42b4d8351", size = 19242 },
|
|
1420
1415
|
]
|
|
1421
1416
|
|
|
1422
1417
|
[[package]]
|
|
@@ -1555,7 +1550,7 @@ wheels = [
|
|
|
1555
1550
|
|
|
1556
1551
|
[[package]]
|
|
1557
1552
|
name = "huggingface-hub"
|
|
1558
|
-
version = "0.
|
|
1553
|
+
version = "0.30.1"
|
|
1559
1554
|
source = { registry = "https://pypi.org/simple" }
|
|
1560
1555
|
dependencies = [
|
|
1561
1556
|
{ name = "filelock" },
|
|
@@ -1566,9 +1561,9 @@ dependencies = [
|
|
|
1566
1561
|
{ name = "tqdm" },
|
|
1567
1562
|
{ name = "typing-extensions" },
|
|
1568
1563
|
]
|
|
1569
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
1564
|
+
sdist = { url = "https://files.pythonhosted.org/packages/78/be/049689a7197630e75c4bb53021cb209a56617c9bf39b3a0950650d1f96e1/huggingface_hub-0.30.1.tar.gz", hash = "sha256:f379e8b8d0791295602538856638460ae3cf679c7f304201eb80fb98c771950e", size = 400784 }
|
|
1570
1565
|
wheels = [
|
|
1571
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1566
|
+
{ url = "https://files.pythonhosted.org/packages/99/e3/2232d0e726d4d6ea69643b9593d97d0e7e6ea69c2fe9ed5de34d476c1c47/huggingface_hub-0.30.1-py3-none-any.whl", hash = "sha256:0f6aa5ec5a4e68e5b9e45d556b4e5ea180c58f5a5ffa734e7f38c9d573028959", size = 481170 },
|
|
1572
1567
|
]
|
|
1573
1568
|
|
|
1574
1569
|
[[package]]
|
|
@@ -1624,11 +1619,11 @@ wheels = [
|
|
|
1624
1619
|
|
|
1625
1620
|
[[package]]
|
|
1626
1621
|
name = "iniconfig"
|
|
1627
|
-
version = "2.
|
|
1622
|
+
version = "2.1.0"
|
|
1628
1623
|
source = { registry = "https://pypi.org/simple" }
|
|
1629
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
1624
|
+
sdist = { url = "https://files.pythonhosted.org/packages/f2/97/ebf4da567aa6827c909642694d71c9fcf53e5b504f2d96afea02718862f3/iniconfig-2.1.0.tar.gz", hash = "sha256:3abbd2e30b36733fee78f9c7f7308f2d0050e88f0087fd25c2645f63c773e1c7", size = 4793 }
|
|
1630
1625
|
wheels = [
|
|
1631
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1626
|
+
{ url = "https://files.pythonhosted.org/packages/2c/e1/e6716421ea10d38022b952c159d5161ca1193197fb744506875fbb87ea7b/iniconfig-2.1.0-py3-none-any.whl", hash = "sha256:9deba5723312380e77435581c6bf4935c94cbfab9b1ed33ef8d238ea168eb760", size = 6050 },
|
|
1632
1627
|
]
|
|
1633
1628
|
|
|
1634
1629
|
[[package]]
|
|
@@ -1848,11 +1843,11 @@ wheels = [
|
|
|
1848
1843
|
|
|
1849
1844
|
[[package]]
|
|
1850
1845
|
name = "json-repair"
|
|
1851
|
-
version = "0.
|
|
1846
|
+
version = "0.40.0"
|
|
1852
1847
|
source = { registry = "https://pypi.org/simple" }
|
|
1853
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
1848
|
+
sdist = { url = "https://files.pythonhosted.org/packages/88/36/e03fe9da84e04b475290f8612de7b229b78e37c80e44188b85fe56dbab66/json_repair-0.40.0.tar.gz", hash = "sha256:ce3cdef63f033d072295ca892cba51487292cd937da42dc20a8d629ecf5eb82d", size = 30098 }
|
|
1854
1849
|
wheels = [
|
|
1855
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1850
|
+
{ url = "https://files.pythonhosted.org/packages/f4/e1/f0e63cc027669763ccc2c1e62ba69959ec02db5328c81df2508a52711ec9/json_repair-0.40.0-py3-none-any.whl", hash = "sha256:46955bfd22338ba60cc5239c0b01462ba419871b19fcd68d8881aca4fa3b0d2f", size = 20736 },
|
|
1856
1851
|
]
|
|
1857
1852
|
|
|
1858
1853
|
[[package]]
|
|
@@ -1878,11 +1873,11 @@ wheels = [
|
|
|
1878
1873
|
|
|
1879
1874
|
[[package]]
|
|
1880
1875
|
name = "jsonpickle"
|
|
1881
|
-
version = "4.0.
|
|
1876
|
+
version = "4.0.5"
|
|
1882
1877
|
source = { registry = "https://pypi.org/simple" }
|
|
1883
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
1878
|
+
sdist = { url = "https://files.pythonhosted.org/packages/d6/33/4bda317ab294722fcdfff8f63aab74af9fda3675a4652d984a101aa7587e/jsonpickle-4.0.5.tar.gz", hash = "sha256:f299818b39367c361b3f26bdba827d4249ab5d383cd93144d0f94b5417aacb35", size = 315661 }
|
|
1884
1879
|
wheels = [
|
|
1885
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
1880
|
+
{ url = "https://files.pythonhosted.org/packages/dc/1b/0e79cf115e0f54f1e8f56effb6ffd2ef8f92e9c324d692ede660067f1bfe/jsonpickle-4.0.5-py3-none-any.whl", hash = "sha256:b4ac7d0a75ddcdfd93445737f1d36ff28768690d43e54bf5d0ddb1d915e580df", size = 46382 },
|
|
1886
1881
|
]
|
|
1887
1882
|
|
|
1888
1883
|
[[package]]
|
|
@@ -2085,7 +2080,7 @@ wheels = [
|
|
|
2085
2080
|
|
|
2086
2081
|
[[package]]
|
|
2087
2082
|
name = "jupyterlab"
|
|
2088
|
-
version = "4.3.
|
|
2083
|
+
version = "4.3.6"
|
|
2089
2084
|
source = { registry = "https://pypi.org/simple" }
|
|
2090
2085
|
dependencies = [
|
|
2091
2086
|
{ name = "async-lru" },
|
|
@@ -2103,9 +2098,9 @@ dependencies = [
|
|
|
2103
2098
|
{ name = "tornado" },
|
|
2104
2099
|
{ name = "traitlets" },
|
|
2105
2100
|
]
|
|
2106
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
2101
|
+
sdist = { url = "https://files.pythonhosted.org/packages/2f/a5/f0cfd8d8fd521eba1a0beddc201bd0131df8d1355eb4917e92a0ffbac5d6/jupyterlab-4.3.6.tar.gz", hash = "sha256:2900ffdbfca9ed37c4ad7fdda3eb76582fd945d46962af3ac64741ae2d6b2ff4", size = 21827019 }
|
|
2107
2102
|
wheels = [
|
|
2108
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2103
|
+
{ url = "https://files.pythonhosted.org/packages/d7/be/422f69447dbd77ddd58251b0945382099fd740e99918a147142f1e852a9d/jupyterlab-4.3.6-py3-none-any.whl", hash = "sha256:fc9eb0455562a56a9bd6d2977cf090842f321fa1a298fcee9bf8c19de353d5fd", size = 11681705 },
|
|
2109
2104
|
]
|
|
2110
2105
|
|
|
2111
2106
|
[[package]]
|
|
@@ -2227,7 +2222,7 @@ wheels = [
|
|
|
2227
2222
|
|
|
2228
2223
|
[[package]]
|
|
2229
2224
|
name = "langchain"
|
|
2230
|
-
version = "0.3.
|
|
2225
|
+
version = "0.3.22"
|
|
2231
2226
|
source = { registry = "https://pypi.org/simple" }
|
|
2232
2227
|
dependencies = [
|
|
2233
2228
|
{ name = "async-timeout", marker = "python_full_version < '3.11'" },
|
|
@@ -2239,14 +2234,14 @@ dependencies = [
|
|
|
2239
2234
|
{ name = "requests" },
|
|
2240
2235
|
{ name = "sqlalchemy" },
|
|
2241
2236
|
]
|
|
2242
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
2237
|
+
sdist = { url = "https://files.pythonhosted.org/packages/e9/66/36ccbd6285b29473ada883b0e06fdc0973ca181431d6a0175e473160fbfb/langchain-0.3.22.tar.gz", hash = "sha256:fd7781ef02cac6f074f9c6a902236482c61976e21da96ab577874d4e5396eeda", size = 10225573 }
|
|
2243
2238
|
wheels = [
|
|
2244
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2239
|
+
{ url = "https://files.pythonhosted.org/packages/36/0e/032de736a8f9b5b5fcfec77bd92831f9f2c8a8b5072289dd1e5cc95e6edc/langchain-0.3.22-py3-none-any.whl", hash = "sha256:2e7f71a1b0280eb70af9c332c7580f6162a97fb9d5e3e87e9d579ad167f50129", size = 1011714 },
|
|
2245
2240
|
]
|
|
2246
2241
|
|
|
2247
2242
|
[[package]]
|
|
2248
2243
|
name = "langchain-community"
|
|
2249
|
-
version = "0.3.
|
|
2244
|
+
version = "0.3.20"
|
|
2250
2245
|
source = { registry = "https://pypi.org/simple" }
|
|
2251
2246
|
dependencies = [
|
|
2252
2247
|
{ name = "aiohttp" },
|
|
@@ -2262,14 +2257,14 @@ dependencies = [
|
|
|
2262
2257
|
{ name = "sqlalchemy" },
|
|
2263
2258
|
{ name = "tenacity" },
|
|
2264
2259
|
]
|
|
2265
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
2260
|
+
sdist = { url = "https://files.pythonhosted.org/packages/86/bb/a07609679781199738934226bb2764c12541573bc4feeaf21e9f3ad5caf4/langchain_community-0.3.20.tar.gz", hash = "sha256:bd83b4f2f818338423439aff3b5be362e1d686342ffada0478cd34c6f5ef5969", size = 33221203 }
|
|
2266
2261
|
wheels = [
|
|
2267
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2262
|
+
{ url = "https://files.pythonhosted.org/packages/ab/4b/2652cfd2baa482cb3cdbec1ccccae1674418b7576f21ba7724d8730de9db/langchain_community-0.3.20-py3-none-any.whl", hash = "sha256:ea3dbf37fbc21020eca8850627546f3c95a8770afc06c4142b40b9ba86b970f7", size = 2524455 },
|
|
2268
2263
|
]
|
|
2269
2264
|
|
|
2270
2265
|
[[package]]
|
|
2271
2266
|
name = "langchain-core"
|
|
2272
|
-
version = "0.3.
|
|
2267
|
+
version = "0.3.49"
|
|
2273
2268
|
source = { registry = "https://pypi.org/simple" }
|
|
2274
2269
|
dependencies = [
|
|
2275
2270
|
{ name = "jsonpatch" },
|
|
@@ -2280,9 +2275,9 @@ dependencies = [
|
|
|
2280
2275
|
{ name = "tenacity" },
|
|
2281
2276
|
{ name = "typing-extensions" },
|
|
2282
2277
|
]
|
|
2283
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
2278
|
+
sdist = { url = "https://files.pythonhosted.org/packages/73/bd/db939ba59f28a4ac73fa64281e21f5011ce61fd694c03b88946a554d8442/langchain_core-0.3.49.tar.gz", hash = "sha256:d9dbff9bac0021463a986355c13864d6a68c41f8559dbbd399a68e1ebd9b04b9", size = 536469 }
|
|
2284
2279
|
wheels = [
|
|
2285
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2280
|
+
{ url = "https://files.pythonhosted.org/packages/dd/35/27164f5f23517be8639b518130e6235293dae52c41988790e0b50dd7ba11/langchain_core-0.3.49-py3-none-any.whl", hash = "sha256:893ee42c9af13bf2a2d8c2ec15ba00a5c73cccde21a2bd005234ee0e78a2bdf8", size = 420102 },
|
|
2286
2281
|
]
|
|
2287
2282
|
|
|
2288
2283
|
[[package]]
|
|
@@ -2304,28 +2299,28 @@ wheels = [
|
|
|
2304
2299
|
|
|
2305
2300
|
[[package]]
|
|
2306
2301
|
name = "langchain-openai"
|
|
2307
|
-
version = "0.3.
|
|
2302
|
+
version = "0.3.11"
|
|
2308
2303
|
source = { registry = "https://pypi.org/simple" }
|
|
2309
2304
|
dependencies = [
|
|
2310
2305
|
{ name = "langchain-core" },
|
|
2311
2306
|
{ name = "openai" },
|
|
2312
2307
|
{ name = "tiktoken" },
|
|
2313
2308
|
]
|
|
2314
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
2309
|
+
sdist = { url = "https://files.pythonhosted.org/packages/77/d6/dc77062c0b7c09f18d10a94a33920a69b6bee13079905d638bfdb7300e97/langchain_openai-0.3.11.tar.gz", hash = "sha256:4de846b2770c2b15bee4ec8034af064bfecb01fa86d4c5ff3f427ee337f0e98c", size = 267476 }
|
|
2315
2310
|
wheels = [
|
|
2316
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2311
|
+
{ url = "https://files.pythonhosted.org/packages/95/9f/08696493db3c3fa238c13eee9db6386dbcebe0fc164c8ce6a20afdde53a7/langchain_openai-0.3.11-py3-none-any.whl", hash = "sha256:95cf602322d43d13cb0fd05cba9bc4cffd7024b10b985d38f599fcc502d2d4d0", size = 60147 },
|
|
2317
2312
|
]
|
|
2318
2313
|
|
|
2319
2314
|
[[package]]
|
|
2320
2315
|
name = "langchain-text-splitters"
|
|
2321
|
-
version = "0.3.
|
|
2316
|
+
version = "0.3.7"
|
|
2322
2317
|
source = { registry = "https://pypi.org/simple" }
|
|
2323
2318
|
dependencies = [
|
|
2324
2319
|
{ name = "langchain-core" },
|
|
2325
2320
|
]
|
|
2326
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
2321
|
+
sdist = { url = "https://files.pythonhosted.org/packages/5a/e7/638b44a41e56c3e32cc90cab3622ac2e4c73645252485427d6b2742fcfa8/langchain_text_splitters-0.3.7.tar.gz", hash = "sha256:7dbf0fb98e10bb91792a1d33f540e2287f9cc1dc30ade45b7aedd2d5cd3dc70b", size = 42180 }
|
|
2327
2322
|
wheels = [
|
|
2328
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2323
|
+
{ url = "https://files.pythonhosted.org/packages/d3/85/b7a34b6d34bcc89a2252f5ffea30b94077ba3d7adf72e31b9e04e68c901a/langchain_text_splitters-0.3.7-py3-none-any.whl", hash = "sha256:31ba826013e3f563359d7c7f1e99b1cdb94897f665675ee505718c116e7e20ad", size = 32513 },
|
|
2329
2324
|
]
|
|
2330
2325
|
|
|
2331
2326
|
[[package]]
|
|
@@ -2344,33 +2339,33 @@ wheels = [
|
|
|
2344
2339
|
|
|
2345
2340
|
[[package]]
|
|
2346
2341
|
name = "langgraph-checkpoint"
|
|
2347
|
-
version = "2.0.
|
|
2342
|
+
version = "2.0.23"
|
|
2348
2343
|
source = { registry = "https://pypi.org/simple" }
|
|
2349
2344
|
dependencies = [
|
|
2350
2345
|
{ name = "langchain-core" },
|
|
2351
|
-
{ name = "
|
|
2346
|
+
{ name = "ormsgpack" },
|
|
2352
2347
|
]
|
|
2353
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
2348
|
+
sdist = { url = "https://files.pythonhosted.org/packages/a3/86/cca9b5d05c0ea64b03cd9e845da6b37f83a22ea13abb7b328ca5dfe48474/langgraph_checkpoint-2.0.23.tar.gz", hash = "sha256:38bd1fe451b569b773fef6e3daecdeb85f3deac2d94f7551bfd20f1818042c8a", size = 37268 }
|
|
2354
2349
|
wheels = [
|
|
2355
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2350
|
+
{ url = "https://files.pythonhosted.org/packages/ec/8d/e23bc15809c4a29e83efab34e7ff1ffb6dadac26b87aca98242ac6033934/langgraph_checkpoint-2.0.23-py3-none-any.whl", hash = "sha256:e54d070124f685eab095bd87e4df35dc5eca11d1e28553d5803c28c5f571b4e0", size = 41941 },
|
|
2356
2351
|
]
|
|
2357
2352
|
|
|
2358
2353
|
[[package]]
|
|
2359
2354
|
name = "langgraph-sdk"
|
|
2360
|
-
version = "0.1.
|
|
2355
|
+
version = "0.1.60"
|
|
2361
2356
|
source = { registry = "https://pypi.org/simple" }
|
|
2362
2357
|
dependencies = [
|
|
2363
2358
|
{ name = "httpx" },
|
|
2364
2359
|
{ name = "orjson" },
|
|
2365
2360
|
]
|
|
2366
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
2361
|
+
sdist = { url = "https://files.pythonhosted.org/packages/04/15/ddd7c35c7fdfc287938dc04c58fb10b19f47bd1c4089c887eda5d41854a5/langgraph_sdk-0.1.60.tar.gz", hash = "sha256:7857a4a2a20a6a4c9934d1e7b5145eda92e3bc7286121813de2464d071050f88", size = 43967 }
|
|
2367
2362
|
wheels = [
|
|
2368
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2363
|
+
{ url = "https://files.pythonhosted.org/packages/79/95/70f58cdf34a0f46131424ff16f1e3f52e196cbfc0802048475a7640f093e/langgraph_sdk-0.1.60-py3-none-any.whl", hash = "sha256:953df85b0a6cc3a106f0496ce8f950a65d88b3ba8198c3b4bb58a54469b256a9", size = 47095 },
|
|
2369
2364
|
]
|
|
2370
2365
|
|
|
2371
2366
|
[[package]]
|
|
2372
2367
|
name = "langsmith"
|
|
2373
|
-
version = "0.3.
|
|
2368
|
+
version = "0.3.20"
|
|
2374
2369
|
source = { registry = "https://pypi.org/simple" }
|
|
2375
2370
|
dependencies = [
|
|
2376
2371
|
{ name = "httpx" },
|
|
@@ -2381,9 +2376,8 @@ dependencies = [
|
|
|
2381
2376
|
{ name = "requests-toolbelt" },
|
|
2382
2377
|
{ name = "zstandard" },
|
|
2383
2378
|
]
|
|
2384
|
-
sdist = { url = "https://files.pythonhosted.org/packages/2a/18/14b2427d627bba44abc613dc78cbd395580310856774ce8c555bd58308dd/langsmith-0.3.13.tar.gz", hash = "sha256:14014058cff408772acb93344e03cb64174837292d5f1ae09b2c8c1d8df45e92", size = 326588 }
|
|
2385
2379
|
wheels = [
|
|
2386
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2380
|
+
{ url = "https://files.pythonhosted.org/packages/0a/c3/d430b0cb07a6c2bdccbb97dd72f192c12f7fd9811a94c4ddf16d45079940/langsmith-0.3.20-py3-none-any.whl", hash = "sha256:48949e8697c75438cf1c36f83c8ac23cbb91e60161f960a3dc1df53cc441198d", size = 352369 },
|
|
2387
2381
|
]
|
|
2388
2382
|
|
|
2389
2383
|
[[package]]
|
|
@@ -2414,7 +2408,7 @@ version = "0.1.0"
|
|
|
2414
2408
|
source = { editable = "." }
|
|
2415
2409
|
dependencies = [
|
|
2416
2410
|
{ name = "crewai" },
|
|
2417
|
-
{ name = "google-cloud-aiplatform", extra = ["evaluation", "
|
|
2411
|
+
{ name = "google-cloud-aiplatform", extra = ["evaluation", "reasoningengine"] },
|
|
2418
2412
|
{ name = "google-cloud-logging" },
|
|
2419
2413
|
{ name = "langchain" },
|
|
2420
2414
|
{ name = "langchain-community" },
|
|
@@ -2456,7 +2450,7 @@ requires-dist = [
|
|
|
2456
2450
|
{ name = "codespell", marker = "extra == 'lint'", specifier = "~=2.2.0" },
|
|
2457
2451
|
{ name = "crewai", specifier = "~=0.102.0" },
|
|
2458
2452
|
{ name = "extra-streamlit-components", marker = "extra == 'streamlit'", specifier = "~=0.1.71" },
|
|
2459
|
-
{ name = "google-cloud-aiplatform", extras = ["evaluation", "
|
|
2453
|
+
{ name = "google-cloud-aiplatform", extras = ["evaluation", "reasoningengine"], specifier = "~=1.81.0" },
|
|
2460
2454
|
{ name = "google-cloud-logging", specifier = "~=3.11.4" },
|
|
2461
2455
|
{ name = "jupyter", marker = "extra == 'jupyter'", specifier = "~=1.0.0" },
|
|
2462
2456
|
{ name = "langchain", specifier = "~=0.3.14" },
|
|
@@ -2701,14 +2695,14 @@ wheels = [
|
|
|
2701
2695
|
|
|
2702
2696
|
[[package]]
|
|
2703
2697
|
name = "mistune"
|
|
2704
|
-
version = "3.1.
|
|
2698
|
+
version = "3.1.3"
|
|
2705
2699
|
source = { registry = "https://pypi.org/simple" }
|
|
2706
2700
|
dependencies = [
|
|
2707
2701
|
{ name = "typing-extensions", marker = "python_full_version < '3.11'" },
|
|
2708
2702
|
]
|
|
2709
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
2703
|
+
sdist = { url = "https://files.pythonhosted.org/packages/c4/79/bda47f7dd7c3c55770478d6d02c9960c430b0cf1773b72366ff89126ea31/mistune-3.1.3.tar.gz", hash = "sha256:a7035c21782b2becb6be62f8f25d3df81ccb4d6fa477a6525b15af06539f02a0", size = 94347 }
|
|
2710
2704
|
wheels = [
|
|
2711
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2705
|
+
{ url = "https://files.pythonhosted.org/packages/01/4d/23c4e4f09da849e127e9f123241946c23c1e30f45a88366879e064211815/mistune-3.1.3-py3-none-any.whl", hash = "sha256:1a32314113cff28aa6432e99e522677c8587fd83e3d51c29b82a52409c842bd9", size = 53410 },
|
|
2712
2706
|
]
|
|
2713
2707
|
|
|
2714
2708
|
[[package]]
|
|
@@ -2785,102 +2779,61 @@ wheels = [
|
|
|
2785
2779
|
{ url = "https://files.pythonhosted.org/packages/43/e3/7d92a15f894aa0c9c4b49b8ee9ac9850d6e63b03c9c32c0367a13ae62209/mpmath-1.3.0-py3-none-any.whl", hash = "sha256:a0b2b9fe80bbcd81a6647ff13108738cfb482d481d826cc0e02f5b35e5c88d2c", size = 536198 },
|
|
2786
2780
|
]
|
|
2787
2781
|
|
|
2788
|
-
[[package]]
|
|
2789
|
-
name = "msgpack"
|
|
2790
|
-
version = "1.1.0"
|
|
2791
|
-
source = { registry = "https://pypi.org/simple" }
|
|
2792
|
-
sdist = { url = "https://files.pythonhosted.org/packages/cb/d0/7555686ae7ff5731205df1012ede15dd9d927f6227ea151e901c7406af4f/msgpack-1.1.0.tar.gz", hash = "sha256:dd432ccc2c72b914e4cb77afce64aab761c1137cc698be3984eee260bcb2896e", size = 167260 }
|
|
2793
|
-
wheels = [
|
|
2794
|
-
{ url = "https://files.pythonhosted.org/packages/4b/f9/a892a6038c861fa849b11a2bb0502c07bc698ab6ea53359e5771397d883b/msgpack-1.1.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7ad442d527a7e358a469faf43fda45aaf4ac3249c8310a82f0ccff9164e5dccd", size = 150428 },
|
|
2795
|
-
{ url = "https://files.pythonhosted.org/packages/df/7a/d174cc6a3b6bb85556e6a046d3193294a92f9a8e583cdbd46dc8a1d7e7f4/msgpack-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:74bed8f63f8f14d75eec75cf3d04ad581da6b914001b474a5d3cd3372c8cc27d", size = 84131 },
|
|
2796
|
-
{ url = "https://files.pythonhosted.org/packages/08/52/bf4fbf72f897a23a56b822997a72c16de07d8d56d7bf273242f884055682/msgpack-1.1.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:914571a2a5b4e7606997e169f64ce53a8b1e06f2cf2c3a7273aa106236d43dd5", size = 81215 },
|
|
2797
|
-
{ url = "https://files.pythonhosted.org/packages/02/95/dc0044b439b518236aaf012da4677c1b8183ce388411ad1b1e63c32d8979/msgpack-1.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c921af52214dcbb75e6bdf6a661b23c3e6417f00c603dd2070bccb5c3ef499f5", size = 371229 },
|
|
2798
|
-
{ url = "https://files.pythonhosted.org/packages/ff/75/09081792db60470bef19d9c2be89f024d366b1e1973c197bb59e6aabc647/msgpack-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d8ce0b22b890be5d252de90d0e0d119f363012027cf256185fc3d474c44b1b9e", size = 378034 },
|
|
2799
|
-
{ url = "https://files.pythonhosted.org/packages/32/d3/c152e0c55fead87dd948d4b29879b0f14feeeec92ef1fd2ec21b107c3f49/msgpack-1.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:73322a6cc57fcee3c0c57c4463d828e9428275fb85a27aa2aa1a92fdc42afd7b", size = 363070 },
|
|
2800
|
-
{ url = "https://files.pythonhosted.org/packages/d9/2c/82e73506dd55f9e43ac8aa007c9dd088c6f0de2aa19e8f7330e6a65879fc/msgpack-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:e1f3c3d21f7cf67bcf2da8e494d30a75e4cf60041d98b3f79875afb5b96f3a3f", size = 359863 },
|
|
2801
|
-
{ url = "https://files.pythonhosted.org/packages/cb/a0/3d093b248837094220e1edc9ec4337de3443b1cfeeb6e0896af8ccc4cc7a/msgpack-1.1.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:64fc9068d701233effd61b19efb1485587560b66fe57b3e50d29c5d78e7fef68", size = 368166 },
|
|
2802
|
-
{ url = "https://files.pythonhosted.org/packages/e4/13/7646f14f06838b406cf5a6ddbb7e8dc78b4996d891ab3b93c33d1ccc8678/msgpack-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:42f754515e0f683f9c79210a5d1cad631ec3d06cea5172214d2176a42e67e19b", size = 370105 },
|
|
2803
|
-
{ url = "https://files.pythonhosted.org/packages/67/fa/dbbd2443e4578e165192dabbc6a22c0812cda2649261b1264ff515f19f15/msgpack-1.1.0-cp310-cp310-win32.whl", hash = "sha256:3df7e6b05571b3814361e8464f9304c42d2196808e0119f55d0d3e62cd5ea044", size = 68513 },
|
|
2804
|
-
{ url = "https://files.pythonhosted.org/packages/24/ce/c2c8fbf0ded750cb63cbcbb61bc1f2dfd69e16dca30a8af8ba80ec182dcd/msgpack-1.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:685ec345eefc757a7c8af44a3032734a739f8c45d1b0ac45efc5d8977aa4720f", size = 74687 },
|
|
2805
|
-
{ url = "https://files.pythonhosted.org/packages/b7/5e/a4c7154ba65d93be91f2f1e55f90e76c5f91ccadc7efc4341e6f04c8647f/msgpack-1.1.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:3d364a55082fb2a7416f6c63ae383fbd903adb5a6cf78c5b96cc6316dc1cedc7", size = 150803 },
|
|
2806
|
-
{ url = "https://files.pythonhosted.org/packages/60/c2/687684164698f1d51c41778c838d854965dd284a4b9d3a44beba9265c931/msgpack-1.1.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:79ec007767b9b56860e0372085f8504db5d06bd6a327a335449508bbee9648fa", size = 84343 },
|
|
2807
|
-
{ url = "https://files.pythonhosted.org/packages/42/ae/d3adea9bb4a1342763556078b5765e666f8fdf242e00f3f6657380920972/msgpack-1.1.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6ad622bf7756d5a497d5b6836e7fc3752e2dd6f4c648e24b1803f6048596f701", size = 81408 },
|
|
2808
|
-
{ url = "https://files.pythonhosted.org/packages/dc/17/6313325a6ff40ce9c3207293aee3ba50104aed6c2c1559d20d09e5c1ff54/msgpack-1.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e59bca908d9ca0de3dc8684f21ebf9a690fe47b6be93236eb40b99af28b6ea6", size = 396096 },
|
|
2809
|
-
{ url = "https://files.pythonhosted.org/packages/a8/a1/ad7b84b91ab5a324e707f4c9761633e357820b011a01e34ce658c1dda7cc/msgpack-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5e1da8f11a3dd397f0a32c76165cf0c4eb95b31013a94f6ecc0b280c05c91b59", size = 403671 },
|
|
2810
|
-
{ url = "https://files.pythonhosted.org/packages/bb/0b/fd5b7c0b308bbf1831df0ca04ec76fe2f5bf6319833646b0a4bd5e9dc76d/msgpack-1.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:452aff037287acb1d70a804ffd022b21fa2bb7c46bee884dbc864cc9024128a0", size = 387414 },
|
|
2811
|
-
{ url = "https://files.pythonhosted.org/packages/f0/03/ff8233b7c6e9929a1f5da3c7860eccd847e2523ca2de0d8ef4878d354cfa/msgpack-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8da4bf6d54ceed70e8861f833f83ce0814a2b72102e890cbdfe4b34764cdd66e", size = 383759 },
|
|
2812
|
-
{ url = "https://files.pythonhosted.org/packages/1f/1b/eb82e1fed5a16dddd9bc75f0854b6e2fe86c0259c4353666d7fab37d39f4/msgpack-1.1.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:41c991beebf175faf352fb940bf2af9ad1fb77fd25f38d9142053914947cdbf6", size = 394405 },
|
|
2813
|
-
{ url = "https://files.pythonhosted.org/packages/90/2e/962c6004e373d54ecf33d695fb1402f99b51832631e37c49273cc564ffc5/msgpack-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a52a1f3a5af7ba1c9ace055b659189f6c669cf3657095b50f9602af3a3ba0fe5", size = 396041 },
|
|
2814
|
-
{ url = "https://files.pythonhosted.org/packages/f8/20/6e03342f629474414860c48aeffcc2f7f50ddaf351d95f20c3f1c67399a8/msgpack-1.1.0-cp311-cp311-win32.whl", hash = "sha256:58638690ebd0a06427c5fe1a227bb6b8b9fdc2bd07701bec13c2335c82131a88", size = 68538 },
|
|
2815
|
-
{ url = "https://files.pythonhosted.org/packages/aa/c4/5a582fc9a87991a3e6f6800e9bb2f3c82972912235eb9539954f3e9997c7/msgpack-1.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:fd2906780f25c8ed5d7b323379f6138524ba793428db5d0e9d226d3fa6aa1788", size = 74871 },
|
|
2816
|
-
{ url = "https://files.pythonhosted.org/packages/e1/d6/716b7ca1dbde63290d2973d22bbef1b5032ca634c3ff4384a958ec3f093a/msgpack-1.1.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:d46cf9e3705ea9485687aa4001a76e44748b609d260af21c4ceea7f2212a501d", size = 152421 },
|
|
2817
|
-
{ url = "https://files.pythonhosted.org/packages/70/da/5312b067f6773429cec2f8f08b021c06af416bba340c912c2ec778539ed6/msgpack-1.1.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:5dbad74103df937e1325cc4bfeaf57713be0b4f15e1c2da43ccdd836393e2ea2", size = 85277 },
|
|
2818
|
-
{ url = "https://files.pythonhosted.org/packages/28/51/da7f3ae4462e8bb98af0d5bdf2707f1b8c65a0d4f496e46b6afb06cbc286/msgpack-1.1.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:58dfc47f8b102da61e8949708b3eafc3504509a5728f8b4ddef84bd9e16ad420", size = 82222 },
|
|
2819
|
-
{ url = "https://files.pythonhosted.org/packages/33/af/dc95c4b2a49cff17ce47611ca9ba218198806cad7796c0b01d1e332c86bb/msgpack-1.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4676e5be1b472909b2ee6356ff425ebedf5142427842aa06b4dfd5117d1ca8a2", size = 392971 },
|
|
2820
|
-
{ url = "https://files.pythonhosted.org/packages/f1/54/65af8de681fa8255402c80eda2a501ba467921d5a7a028c9c22a2c2eedb5/msgpack-1.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:17fb65dd0bec285907f68b15734a993ad3fc94332b5bb21b0435846228de1f39", size = 401403 },
|
|
2821
|
-
{ url = "https://files.pythonhosted.org/packages/97/8c/e333690777bd33919ab7024269dc3c41c76ef5137b211d776fbb404bfead/msgpack-1.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a51abd48c6d8ac89e0cfd4fe177c61481aca2d5e7ba42044fd218cfd8ea9899f", size = 385356 },
|
|
2822
|
-
{ url = "https://files.pythonhosted.org/packages/57/52/406795ba478dc1c890559dd4e89280fa86506608a28ccf3a72fbf45df9f5/msgpack-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2137773500afa5494a61b1208619e3871f75f27b03bcfca7b3a7023284140247", size = 383028 },
|
|
2823
|
-
{ url = "https://files.pythonhosted.org/packages/e7/69/053b6549bf90a3acadcd8232eae03e2fefc87f066a5b9fbb37e2e608859f/msgpack-1.1.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:398b713459fea610861c8a7b62a6fec1882759f308ae0795b5413ff6a160cf3c", size = 391100 },
|
|
2824
|
-
{ url = "https://files.pythonhosted.org/packages/23/f0/d4101d4da054f04274995ddc4086c2715d9b93111eb9ed49686c0f7ccc8a/msgpack-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:06f5fd2f6bb2a7914922d935d3b8bb4a7fff3a9a91cfce6d06c13bc42bec975b", size = 394254 },
|
|
2825
|
-
{ url = "https://files.pythonhosted.org/packages/1c/12/cf07458f35d0d775ff3a2dc5559fa2e1fcd06c46f1ef510e594ebefdca01/msgpack-1.1.0-cp312-cp312-win32.whl", hash = "sha256:ad33e8400e4ec17ba782f7b9cf868977d867ed784a1f5f2ab46e7ba53b6e1e1b", size = 69085 },
|
|
2826
|
-
{ url = "https://files.pythonhosted.org/packages/73/80/2708a4641f7d553a63bc934a3eb7214806b5b39d200133ca7f7afb0a53e8/msgpack-1.1.0-cp312-cp312-win_amd64.whl", hash = "sha256:115a7af8ee9e8cddc10f87636767857e7e3717b7a2e97379dc2054712693e90f", size = 75347 },
|
|
2827
|
-
]
|
|
2828
|
-
|
|
2829
2782
|
[[package]]
|
|
2830
2783
|
name = "multidict"
|
|
2831
|
-
version = "6.
|
|
2784
|
+
version = "6.3.0"
|
|
2832
2785
|
source = { registry = "https://pypi.org/simple" }
|
|
2833
2786
|
dependencies = [
|
|
2834
2787
|
{ name = "typing-extensions", marker = "python_full_version < '3.11'" },
|
|
2835
2788
|
]
|
|
2836
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
2837
|
-
wheels = [
|
|
2838
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2839
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2840
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2841
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2842
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2843
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2844
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2845
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2846
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2847
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2848
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2849
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2850
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2851
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2852
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2853
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2854
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2855
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2856
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2857
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2858
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2859
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2860
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2861
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2862
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2863
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2864
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2865
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2866
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2867
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2868
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2869
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2870
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2871
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2872
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2873
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2874
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2875
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2876
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2877
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2878
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2879
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2880
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2881
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2882
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2883
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2789
|
+
sdist = { url = "https://files.pythonhosted.org/packages/99/68/42bf1fb4272959aa7c0775caf53265c1a0da9d77f2d4e76326296c943811/multidict-6.3.0.tar.gz", hash = "sha256:2cf3e0781febf9f093eff3eca2d6dd7954ef2969ff46f6cd95173a4db8397fd8", size = 85840 }
|
|
2790
|
+
wheels = [
|
|
2791
|
+
{ url = "https://files.pythonhosted.org/packages/f5/3a/81c1d24765579e7c68739f050a5f271bb8562f08c7e5a094893eee0b7de2/multidict-6.3.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:3bcb8cdfeb08cef0138d696e52ec08fffaf009ef4b1c7c5a40340af672bd9b60", size = 61858 },
|
|
2792
|
+
{ url = "https://files.pythonhosted.org/packages/f4/b3/22d8bc941ce550a1984d135535d127269e2bcdd0d95077b5f1d78e6f1f08/multidict-6.3.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:67caf9435b1f0115042cbc37e9d60475891b2d9b2a711ade0876580da2a5e0df", size = 36662 },
|
|
2793
|
+
{ url = "https://files.pythonhosted.org/packages/6b/0a/af0c2c9fcb54e234b840a8dc38e23b61c8935dcb742aab611c616c234f0c/multidict-6.3.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:77e0406dc247851a1e250fdcfd46d13cdecc2ac5b8d1d038dea216da2e7fa9b7", size = 35874 },
|
|
2794
|
+
{ url = "https://files.pythonhosted.org/packages/2b/8c/e87a880392a5c99d48113d9405f7315f0b4afc462a34b5ce1ab5e5dbe4cc/multidict-6.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6193564d51d02a4aa6fc60bb40f04b65840e70e124282a7337cd94a9ed1b0b81", size = 235331 },
|
|
2795
|
+
{ url = "https://files.pythonhosted.org/packages/c2/7e/cb54de120bd73feea47b908b6c835555a6f97cbdafccde1d82c0181f0b40/multidict-6.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:72a1159144e4ad7d152b2c3f75bed8c9b60ad06e9da322e1965981f8371c0dee", size = 246945 },
|
|
2796
|
+
{ url = "https://files.pythonhosted.org/packages/65/b6/14b0d265804bffe87dd63e6ee7638702e43db03ec005d76b045c7ecf911f/multidict-6.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fb3269a3641b868ab7856c3cd939782ee1c802fa120b470b597286d2f9e93aee", size = 243353 },
|
|
2797
|
+
{ url = "https://files.pythonhosted.org/packages/12/6d/cd6e9a57431a8327ddee272e0338acd2a215991cf92d1fdf467bf8a8c594/multidict-6.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:79658460926a1c48b2ac10196a673cc7d81857dc268ca593a66fd661ed1b77ea", size = 229530 },
|
|
2798
|
+
{ url = "https://files.pythonhosted.org/packages/fd/21/1739b91c42e0fb47b1d9eea48d6217ea3584b1cc2b532eebe073899a9d68/multidict-6.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fd289ef26241bc2c0b7b047417a33786790bf2a01f6c92d9688eb2693c9116df", size = 222081 },
|
|
2799
|
+
{ url = "https://files.pythonhosted.org/packages/3e/fe/50b73370882bf2204d0fb5fda03ce9eb4fd51aeda182b2174201c1e60c46/multidict-6.3.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:a48fd39ba69f399f39b911885469bdfedd1de4a095146211e39e8b5db0e3a937", size = 232716 },
|
|
2800
|
+
{ url = "https://files.pythonhosted.org/packages/0e/96/3107b7b02b4f3406214b5e91b91f39210fe8afcecde586405160cb23b8e8/multidict-6.3.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:478d29a270785fc58632c9d1e0f59f595d3fb06c5e63ac117136dba2d0e5f4f9", size = 228633 },
|
|
2801
|
+
{ url = "https://files.pythonhosted.org/packages/20/33/4688deb1a2a80744ee60072f45becabccf00bf728f745e9ade86ced018cd/multidict-6.3.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:31c68e103b253643cf9b4704f5d655997c116626b20ef3bb953992b7f447485d", size = 240223 },
|
|
2802
|
+
{ url = "https://files.pythonhosted.org/packages/6a/5c/6a5712af0ac4a8e48049f167dfc3ab60f458ffc64270751e495fe27806fc/multidict-6.3.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:69983ee3e649e41dc41ddea68f6c2ab64d7f19fcab4e21a72a1accf6482c5605", size = 233712 },
|
|
2803
|
+
{ url = "https://files.pythonhosted.org/packages/b9/39/8a61d4ca3d995a44d0e8b04c7e68be099119cc0c0a373b860a0360d68111/multidict-6.3.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:5bd70d75b4bbfc0a26fdbfc72e260b70090637020b0d7d27eb26c7ae5edf16da", size = 228983 },
|
|
2804
|
+
{ url = "https://files.pythonhosted.org/packages/a0/b9/2ee7470e30890af6d00ae56b2e6aa73fcdaacd807176fdc7b0571e57904c/multidict-6.3.0-cp310-cp310-win32.whl", hash = "sha256:82bd76a12588bd2bb27965aaf9fcff2258ffb03c9a290368288ed4571ed539ab", size = 34350 },
|
|
2805
|
+
{ url = "https://files.pythonhosted.org/packages/92/ac/d0455a724947e05d43eb19ab3c7d9a4551abe6ed23e9f32cd807a8949326/multidict-6.3.0-cp310-cp310-win_amd64.whl", hash = "sha256:430cb9ee0cf2d5a2fa91e78f306544352009dbda9ebb4bd04c5785e67fc04953", size = 37757 },
|
|
2806
|
+
{ url = "https://files.pythonhosted.org/packages/27/72/82817e4ef98e180d4042b8311c0842567d75432f5536227994de7858cc4a/multidict-6.3.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:904895323a59dd50387cddd1337c3eac48ec0fe6cb4d2e4106dc1a3b80091727", size = 61822 },
|
|
2807
|
+
{ url = "https://files.pythonhosted.org/packages/75/4f/89325dc60759f503bf90a885a356364bacb809b36af8b2268104e0e36e77/multidict-6.3.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:1aa6e1a605c602c119a22368f7d3b9dfb102a7cd69edae5a89e55da34fd64c2b", size = 36629 },
|
|
2808
|
+
{ url = "https://files.pythonhosted.org/packages/dc/bd/c7e5c7e195fa779e340033ceb09d13a7c99de1b13122e67cc84b8fea15d0/multidict-6.3.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:72574693fad34d075a54fa771984a1a8809a9eff880b731152078e81c7d8c80f", size = 35881 },
|
|
2809
|
+
{ url = "https://files.pythonhosted.org/packages/d6/b4/1097e84f2b5b27c50923c37a171f66a9a5931507af2aa0bf3f1b5ff379b9/multidict-6.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:72d15a61b76fa4b814390c21defd772893d1152157e3297e6afb328ef32d1711", size = 241302 },
|
|
2810
|
+
{ url = "https://files.pythonhosted.org/packages/f7/90/256968c41ae8c888b0c29ef20e73572ed39650c600b638508ff61917b1f5/multidict-6.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7bf0d43f2c56b600c6895c25a420e4b46c6a5acf91d6c9a6300713496f70e63b", size = 254140 },
|
|
2811
|
+
{ url = "https://files.pythonhosted.org/packages/0c/3d/0c4ee2ac266da5c63919208c90616f550146c9afcca82efb4a54e0c3ebb2/multidict-6.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6be1182387fb9a95fd8a8cbfab2f2b61d61ea0ab4699780d4300ea207c8f8d71", size = 249501 },
|
|
2812
|
+
{ url = "https://files.pythonhosted.org/packages/3f/1e/1299a62d01b867c33f7426399d0f7d2c940a4777d1b4ce50bd115bf5d152/multidict-6.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0ba7d12ff77cadb59519aba674cac3a0b16d0fc5abaa3ef79b5ff3806e52e991", size = 235545 },
|
|
2813
|
+
{ url = "https://files.pythonhosted.org/packages/e0/ab/6f7d70da577d93a9c7e8fecf9719e86865b8dc70c7e83281ad65131a8020/multidict-6.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:eeca775446b00826ec8ca34eed8c902c6a1ae7dc42d78094b1f73ecd38d1dcf8", size = 227731 },
|
|
2814
|
+
{ url = "https://files.pythonhosted.org/packages/02/e3/3373b230cd63c60aaeea076e82f7728a6bccf61daf91bbb6f26353686dae/multidict-6.3.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:0a1a5f50ccc57a317db68582411ce6aca076ee3bc386290b416a5783e807afa1", size = 237998 },
|
|
2815
|
+
{ url = "https://files.pythonhosted.org/packages/a0/5c/8ec19376bbb51b570f931be9c828f498ab1779ab18a598412226d2ce4da4/multidict-6.3.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:6989ea9326f9a9171edc920a459003b1deffc6cb48605b8f2610846c7fbd201a", size = 233334 },
|
|
2816
|
+
{ url = "https://files.pythonhosted.org/packages/11/22/ed4a2ed109a3c6eb8e72256cae382cad9bf53a6748e3b18b44671b1e03de/multidict-6.3.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:9efe23b3d0671eeb8b1e70791612538dcdc1b39275563ca78f338aa0ce9619d2", size = 245813 },
|
|
2817
|
+
{ url = "https://files.pythonhosted.org/packages/a5/d7/00b08fe59647e7cec9c0cb3ba8c6fc6d3688f31cf648aa768541b3c59a7c/multidict-6.3.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:560af476d03256a65bd4ff05c83e7869ec3c2b40579d4ed1ac74075ef19e02bf", size = 238766 },
|
|
2818
|
+
{ url = "https://files.pythonhosted.org/packages/5c/99/2627bb3eb6ac215c263a62b8259fac55dc70cf4fc1b96260b43c7324ba03/multidict-6.3.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:091f3dfe63e9f48ae6c7da8d638e8d8e050ff11e348f69bafc20e65d11f7aa48", size = 234087 },
|
|
2819
|
+
{ url = "https://files.pythonhosted.org/packages/da/b2/efedb9854d206d038d578529d3429f13b35d263462cc4d81c73eb741b392/multidict-6.3.0-cp311-cp311-win32.whl", hash = "sha256:38e60e400e07ba678a755cc89b09955a49acb0188d47aee2829ed4efc1ccb053", size = 34417 },
|
|
2820
|
+
{ url = "https://files.pythonhosted.org/packages/d6/53/5a87558f5cdd37574d7ee72a61e7bfb41d3cc4acaa816f612141a72dbd74/multidict-6.3.0-cp311-cp311-win_amd64.whl", hash = "sha256:65e763769cec2fa9c79b70555e3f2a7903747d127ab14ec9eaa5f00763bb4152", size = 37820 },
|
|
2821
|
+
{ url = "https://files.pythonhosted.org/packages/82/60/6905d85104d39092a9f6b21123f1d2df85d30b22dbd01e795b47c9b6eb32/multidict-6.3.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:2a83896925e3a2ddec736c48255572e6f15a95339024c02b800dab28e63461a3", size = 61868 },
|
|
2822
|
+
{ url = "https://files.pythonhosted.org/packages/e6/db/9223dcc59aa26f48e3915e0ce9c31a989a8225e3c794e0d6390772de6f9c/multidict-6.3.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:74e45386528db2d9346618276e8746507ec6ccb91512c5f02d2049ccafb0576e", size = 36835 },
|
|
2823
|
+
{ url = "https://files.pythonhosted.org/packages/21/1b/f7080011d022bfc68c2b29c329012f2b3d19c446e77a0dc34e0cdfaed768/multidict-6.3.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:bc15e81587b652bbeba9d4d7d3707bcaaa1d7b4aab2024c14be477662003a211", size = 35737 },
|
|
2824
|
+
{ url = "https://files.pythonhosted.org/packages/91/59/33391241661176e1691add307a72757faecf5ae035e16b93c527f52a1d51/multidict-6.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a716344c6e92551bdf842b999c7d7b34a13e32facf3e6c5942690c9883d45e3a", size = 245422 },
|
|
2825
|
+
{ url = "https://files.pythonhosted.org/packages/44/4a/e4f70e767067c9fd31e45d625490c128da4d63689ad99342e5e87599e5a9/multidict-6.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:299070f503a9a99e4af38d07da784ced28377cc62b678084b9e2e48fa51c57d3", size = 255425 },
|
|
2826
|
+
{ url = "https://files.pythonhosted.org/packages/2f/18/6c37d3e336e270cbe1deecf2b5669edde93dfabb15796c3e19362f06da0e/multidict-6.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2e87a8635a7db577617b50bd2f2080744ed20e556750b97e4f9988e6d20d3941", size = 251939 },
|
|
2827
|
+
{ url = "https://files.pythonhosted.org/packages/3b/47/76f9e21ad746262b70bc5992e69c840aec8f1501d3a974cc46678f334cf5/multidict-6.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8ab4ea5f49166b990411c522c1f5f901014932ead15a463616ec93e10fff2c05", size = 246197 },
|
|
2828
|
+
{ url = "https://files.pythonhosted.org/packages/88/4f/52b26ef6fef9b7dcc9083c5c9e3e621f300a06c7bb9a67aa0a167618ddc0/multidict-6.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2cef02d3878804909283549bc10d4789a14c610fcd286f17cd94a195b21fe469", size = 231438 },
|
|
2829
|
+
{ url = "https://files.pythonhosted.org/packages/09/dc/425c013d902ccad1b666bd06bfd7e2124a7be473e812ab812318858e5194/multidict-6.3.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:a466c14574152b7caed5d76f1e46ae2963d33f5b0eb2dd915fa33870183b0f26", size = 249942 },
|
|
2830
|
+
{ url = "https://files.pythonhosted.org/packages/18/cb/277fe0a3d83e094716ee436d39a6707496d77c255fd235b0aed1e71deddc/multidict-6.3.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:883c07b404229e98d30b1ef64f07d4e3422d431ecd727c2ebba8549f70b2ba16", size = 243881 },
|
|
2831
|
+
{ url = "https://files.pythonhosted.org/packages/28/eb/3087bc61a29d62c9637699ed4f6dfc98759bc8e54a899477b1a309a17afb/multidict-6.3.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:767ed12b1662fac32d84eb43707e4f778b12554fc12ce3c8f7793a02111a9e32", size = 256525 },
|
|
2832
|
+
{ url = "https://files.pythonhosted.org/packages/10/a7/25f50ca151999ec32f1ade23be06cffe088e7ffe3fe826e05c1dbd84db6d/multidict-6.3.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:34ef116022119d3053ecce8ba62109c8b54a650a537b183e79de1db4078894a8", size = 252166 },
|
|
2833
|
+
{ url = "https://files.pythonhosted.org/packages/c6/4d/ac24c83fa6fe19b05b03fb7a3ca283eed5f74c26d238a41411fcd90a0c3a/multidict-6.3.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:3ad737617d38c55c0b72cd3ea01bf5cbab0d75123de5e52c39643ddc6465cb5f", size = 248461 },
|
|
2834
|
+
{ url = "https://files.pythonhosted.org/packages/55/a9/cc2ec0dbdcb252ca461711363089d14a6ae80f97d8f0dcaffa025d1d5d4c/multidict-6.3.0-cp312-cp312-win32.whl", hash = "sha256:3d783be54d076843f58bf061fdaf1071789fb924fb35a0eb84dbc2c8b68499a2", size = 34640 },
|
|
2835
|
+
{ url = "https://files.pythonhosted.org/packages/9a/20/ad6bf2fd522c0ab35a942e35c8b21bc8197fad6890f66d725eebf03a8770/multidict-6.3.0-cp312-cp312-win_amd64.whl", hash = "sha256:6fbe184451480c17f1f8dac160c9f3f6d243010fdb8416de4d3d7ee69ea65aa4", size = 37969 },
|
|
2836
|
+
{ url = "https://files.pythonhosted.org/packages/65/66/730bb6dbfbf87df8a341707ebd468044ea6c530605d41b3f31b494f03d6a/multidict-6.3.0-py3-none-any.whl", hash = "sha256:9ca652d9c6f68535537d75502b549ed0ca07fa6d3908f84f29f92148ec7310f2", size = 10266 },
|
|
2884
2837
|
]
|
|
2885
2838
|
|
|
2886
2839
|
[[package]]
|
|
@@ -2926,11 +2879,11 @@ wheels = [
|
|
|
2926
2879
|
|
|
2927
2880
|
[[package]]
|
|
2928
2881
|
name = "narwhals"
|
|
2929
|
-
version = "1.
|
|
2882
|
+
version = "1.33.0"
|
|
2930
2883
|
source = { registry = "https://pypi.org/simple" }
|
|
2931
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
2884
|
+
sdist = { url = "https://files.pythonhosted.org/packages/85/fd/484aa8bb557f97a1781f38c78b79f795a2fa320e4165c4230f679937d1e8/narwhals-1.33.0.tar.gz", hash = "sha256:6233d2457debf4b5fe4a1da54530c6fe2d84326f4a8e3bca35bbbff580a347cb", size = 262554 }
|
|
2932
2885
|
wheels = [
|
|
2933
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2886
|
+
{ url = "https://files.pythonhosted.org/packages/41/c1/e9bc6b67c774e7c1f939c91ea535f18f7644fedc61b20d6baa861ad52b34/narwhals-1.33.0-py3-none-any.whl", hash = "sha256:f653319112fd121a1f1c18a40cf70dada773cdacfd53e62c2aa0afae43c17129", size = 322750 },
|
|
2934
2887
|
]
|
|
2935
2888
|
|
|
2936
2889
|
[[package]]
|
|
@@ -3008,7 +2961,7 @@ wheels = [
|
|
|
3008
2961
|
|
|
3009
2962
|
[[package]]
|
|
3010
2963
|
name = "notebook"
|
|
3011
|
-
version = "7.3.
|
|
2964
|
+
version = "7.3.3"
|
|
3012
2965
|
source = { registry = "https://pypi.org/simple" }
|
|
3013
2966
|
dependencies = [
|
|
3014
2967
|
{ name = "jupyter-server" },
|
|
@@ -3017,9 +2970,9 @@ dependencies = [
|
|
|
3017
2970
|
{ name = "notebook-shim" },
|
|
3018
2971
|
{ name = "tornado" },
|
|
3019
2972
|
]
|
|
3020
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
2973
|
+
sdist = { url = "https://files.pythonhosted.org/packages/71/0f/7781fed05f79d1047c039dfd17fbd6e6670bcf5ad330baa997bcc62525b5/notebook-7.3.3.tar.gz", hash = "sha256:707a313fb882d35f921989eb3d204de942ed5132a44e4aa1fe0e8f24bb9dc25d", size = 12758099 }
|
|
3021
2974
|
wheels = [
|
|
3022
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2975
|
+
{ url = "https://files.pythonhosted.org/packages/f2/bf/5e5fcf79c559600b738d7577c8360bfd4cfa705400af06f23b3a049e44b6/notebook-7.3.3-py3-none-any.whl", hash = "sha256:b193df0878956562d5171c8e25c9252b8e86c9fcc16163b8ee3fe6c5e3f422f7", size = 13142886 },
|
|
3023
2976
|
]
|
|
3024
2977
|
|
|
3025
2978
|
[[package]]
|
|
@@ -3036,44 +2989,44 @@ wheels = [
|
|
|
3036
2989
|
|
|
3037
2990
|
[[package]]
|
|
3038
2991
|
name = "numpy"
|
|
3039
|
-
version = "2.2.
|
|
3040
|
-
source = { registry = "https://pypi.org/simple" }
|
|
3041
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
3042
|
-
wheels = [
|
|
3043
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3044
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3045
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3046
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3047
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3048
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3049
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3050
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3051
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3052
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3053
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3054
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3055
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3056
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3057
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3058
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3059
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3060
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3061
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3062
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3063
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3064
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3065
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3066
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3067
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3068
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3069
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3070
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3071
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3072
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3073
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3074
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3075
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3076
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
2992
|
+
version = "2.2.4"
|
|
2993
|
+
source = { registry = "https://pypi.org/simple" }
|
|
2994
|
+
sdist = { url = "https://files.pythonhosted.org/packages/e1/78/31103410a57bc2c2b93a3597340a8119588571f6a4539067546cb9a0bfac/numpy-2.2.4.tar.gz", hash = "sha256:9ba03692a45d3eef66559efe1d1096c4b9b75c0986b5dff5530c378fb8331d4f", size = 20270701 }
|
|
2995
|
+
wheels = [
|
|
2996
|
+
{ url = "https://files.pythonhosted.org/packages/04/89/a79e86e5c1433926ed7d60cb267fb64aa578b6101ab645800fd43b4801de/numpy-2.2.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:8146f3550d627252269ac42ae660281d673eb6f8b32f113538e0cc2a9aed42b9", size = 21250661 },
|
|
2997
|
+
{ url = "https://files.pythonhosted.org/packages/79/c2/f50921beb8afd60ed9589ad880332cfefdb805422210d327fb48f12b7a81/numpy-2.2.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e642d86b8f956098b564a45e6f6ce68a22c2c97a04f5acd3f221f57b8cb850ae", size = 14389926 },
|
|
2998
|
+
{ url = "https://files.pythonhosted.org/packages/c7/b9/2c4e96130b0b0f97b0ef4a06d6dae3b39d058b21a5e2fa2decd7fd6b1c8f/numpy-2.2.4-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:a84eda42bd12edc36eb5b53bbcc9b406820d3353f1994b6cfe453a33ff101775", size = 5428329 },
|
|
2999
|
+
{ url = "https://files.pythonhosted.org/packages/7f/a5/3d7094aa898f4fc5c84cdfb26beeae780352d43f5d8bdec966c4393d644c/numpy-2.2.4-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:4ba5054787e89c59c593a4169830ab362ac2bee8a969249dc56e5d7d20ff8df9", size = 6963559 },
|
|
3000
|
+
{ url = "https://files.pythonhosted.org/packages/4c/22/fb1be710a14434c09080dd4a0acc08939f612ec02efcb04b9e210474782d/numpy-2.2.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7716e4a9b7af82c06a2543c53ca476fa0b57e4d760481273e09da04b74ee6ee2", size = 14368066 },
|
|
3001
|
+
{ url = "https://files.pythonhosted.org/packages/c2/07/2e5cc71193e3ef3a219ffcf6ca4858e46ea2be09c026ddd480d596b32867/numpy-2.2.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:adf8c1d66f432ce577d0197dceaac2ac00c0759f573f28516246351c58a85020", size = 16417040 },
|
|
3002
|
+
{ url = "https://files.pythonhosted.org/packages/1a/97/3b1537776ad9a6d1a41813818343745e8dd928a2916d4c9edcd9a8af1dac/numpy-2.2.4-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:218f061d2faa73621fa23d6359442b0fc658d5b9a70801373625d958259eaca3", size = 15879862 },
|
|
3003
|
+
{ url = "https://files.pythonhosted.org/packages/b0/b7/4472f603dd45ef36ff3d8e84e84fe02d9467c78f92cc121633dce6da307b/numpy-2.2.4-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:df2f57871a96bbc1b69733cd4c51dc33bea66146b8c63cacbfed73eec0883017", size = 18206032 },
|
|
3004
|
+
{ url = "https://files.pythonhosted.org/packages/0d/bd/6a092963fb82e6c5aa0d0440635827bbb2910da229545473bbb58c537ed3/numpy-2.2.4-cp310-cp310-win32.whl", hash = "sha256:a0258ad1f44f138b791327961caedffbf9612bfa504ab9597157806faa95194a", size = 6608517 },
|
|
3005
|
+
{ url = "https://files.pythonhosted.org/packages/01/e3/cb04627bc2a1638948bc13e818df26495aa18e20d5be1ed95ab2b10b6847/numpy-2.2.4-cp310-cp310-win_amd64.whl", hash = "sha256:0d54974f9cf14acf49c60f0f7f4084b6579d24d439453d5fc5805d46a165b542", size = 12943498 },
|
|
3006
|
+
{ url = "https://files.pythonhosted.org/packages/16/fb/09e778ee3a8ea0d4dc8329cca0a9c9e65fed847d08e37eba74cb7ed4b252/numpy-2.2.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:e9e0a277bb2eb5d8a7407e14688b85fd8ad628ee4e0c7930415687b6564207a4", size = 21254989 },
|
|
3007
|
+
{ url = "https://files.pythonhosted.org/packages/a2/0a/1212befdbecab5d80eca3cde47d304cad986ad4eec7d85a42e0b6d2cc2ef/numpy-2.2.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:9eeea959168ea555e556b8188da5fa7831e21d91ce031e95ce23747b7609f8a4", size = 14425910 },
|
|
3008
|
+
{ url = "https://files.pythonhosted.org/packages/2b/3e/e7247c1d4f15086bb106c8d43c925b0b2ea20270224f5186fa48d4fb5cbd/numpy-2.2.4-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:bd3ad3b0a40e713fc68f99ecfd07124195333f1e689387c180813f0e94309d6f", size = 5426490 },
|
|
3009
|
+
{ url = "https://files.pythonhosted.org/packages/5d/fa/aa7cd6be51419b894c5787a8a93c3302a1ed4f82d35beb0613ec15bdd0e2/numpy-2.2.4-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:cf28633d64294969c019c6df4ff37f5698e8326db68cc2b66576a51fad634880", size = 6967754 },
|
|
3010
|
+
{ url = "https://files.pythonhosted.org/packages/d5/ee/96457c943265de9fadeb3d2ffdbab003f7fba13d971084a9876affcda095/numpy-2.2.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2fa8fa7697ad1646b5c93de1719965844e004fcad23c91228aca1cf0800044a1", size = 14373079 },
|
|
3011
|
+
{ url = "https://files.pythonhosted.org/packages/c5/5c/ceefca458559f0ccc7a982319f37ed07b0d7b526964ae6cc61f8ad1b6119/numpy-2.2.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f4162988a360a29af158aeb4a2f4f09ffed6a969c9776f8f3bdee9b06a8ab7e5", size = 16428819 },
|
|
3012
|
+
{ url = "https://files.pythonhosted.org/packages/22/31/9b2ac8eee99e001eb6add9fa27514ef5e9faf176169057a12860af52704c/numpy-2.2.4-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:892c10d6a73e0f14935c31229e03325a7b3093fafd6ce0af704be7f894d95687", size = 15881470 },
|
|
3013
|
+
{ url = "https://files.pythonhosted.org/packages/f0/dc/8569b5f25ff30484b555ad8a3f537e0225d091abec386c9420cf5f7a2976/numpy-2.2.4-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:db1f1c22173ac1c58db249ae48aa7ead29f534b9a948bc56828337aa84a32ed6", size = 18218144 },
|
|
3014
|
+
{ url = "https://files.pythonhosted.org/packages/5e/05/463c023a39bdeb9bb43a99e7dee2c664cb68d5bb87d14f92482b9f6011cc/numpy-2.2.4-cp311-cp311-win32.whl", hash = "sha256:ea2bb7e2ae9e37d96835b3576a4fa4b3a97592fbea8ef7c3587078b0068b8f09", size = 6606368 },
|
|
3015
|
+
{ url = "https://files.pythonhosted.org/packages/8b/72/10c1d2d82101c468a28adc35de6c77b308f288cfd0b88e1070f15b98e00c/numpy-2.2.4-cp311-cp311-win_amd64.whl", hash = "sha256:f7de08cbe5551911886d1ab60de58448c6df0f67d9feb7d1fb21e9875ef95e91", size = 12947526 },
|
|
3016
|
+
{ url = "https://files.pythonhosted.org/packages/a2/30/182db21d4f2a95904cec1a6f779479ea1ac07c0647f064dea454ec650c42/numpy-2.2.4-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:a7b9084668aa0f64e64bd00d27ba5146ef1c3a8835f3bd912e7a9e01326804c4", size = 20947156 },
|
|
3017
|
+
{ url = "https://files.pythonhosted.org/packages/24/6d/9483566acfbda6c62c6bc74b6e981c777229d2af93c8eb2469b26ac1b7bc/numpy-2.2.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:dbe512c511956b893d2dacd007d955a3f03d555ae05cfa3ff1c1ff6df8851854", size = 14133092 },
|
|
3018
|
+
{ url = "https://files.pythonhosted.org/packages/27/f6/dba8a258acbf9d2bed2525cdcbb9493ef9bae5199d7a9cb92ee7e9b2aea6/numpy-2.2.4-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:bb649f8b207ab07caebba230d851b579a3c8711a851d29efe15008e31bb4de24", size = 5163515 },
|
|
3019
|
+
{ url = "https://files.pythonhosted.org/packages/62/30/82116199d1c249446723c68f2c9da40d7f062551036f50b8c4caa42ae252/numpy-2.2.4-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:f34dc300df798742b3d06515aa2a0aee20941c13579d7a2f2e10af01ae4901ee", size = 6696558 },
|
|
3020
|
+
{ url = "https://files.pythonhosted.org/packages/0e/b2/54122b3c6df5df3e87582b2e9430f1bdb63af4023c739ba300164c9ae503/numpy-2.2.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c3f7ac96b16955634e223b579a3e5798df59007ca43e8d451a0e6a50f6bfdfba", size = 14084742 },
|
|
3021
|
+
{ url = "https://files.pythonhosted.org/packages/02/e2/e2cbb8d634151aab9528ef7b8bab52ee4ab10e076509285602c2a3a686e0/numpy-2.2.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f92084defa704deadd4e0a5ab1dc52d8ac9e8a8ef617f3fbb853e79b0ea3592", size = 16134051 },
|
|
3022
|
+
{ url = "https://files.pythonhosted.org/packages/8e/21/efd47800e4affc993e8be50c1b768de038363dd88865920439ef7b422c60/numpy-2.2.4-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:7a4e84a6283b36632e2a5b56e121961f6542ab886bc9e12f8f9818b3c266bfbb", size = 15578972 },
|
|
3023
|
+
{ url = "https://files.pythonhosted.org/packages/04/1e/f8bb88f6157045dd5d9b27ccf433d016981032690969aa5c19e332b138c0/numpy-2.2.4-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:11c43995255eb4127115956495f43e9343736edb7fcdb0d973defd9de14cd84f", size = 17898106 },
|
|
3024
|
+
{ url = "https://files.pythonhosted.org/packages/2b/93/df59a5a3897c1f036ae8ff845e45f4081bb06943039ae28a3c1c7c780f22/numpy-2.2.4-cp312-cp312-win32.whl", hash = "sha256:65ef3468b53269eb5fdb3a5c09508c032b793da03251d5f8722b1194f1790c00", size = 6311190 },
|
|
3025
|
+
{ url = "https://files.pythonhosted.org/packages/46/69/8c4f928741c2a8efa255fdc7e9097527c6dc4e4df147e3cadc5d9357ce85/numpy-2.2.4-cp312-cp312-win_amd64.whl", hash = "sha256:2aad3c17ed2ff455b8eaafe06bcdae0062a1db77cb99f4b9cbb5f4ecb13c5146", size = 12644305 },
|
|
3026
|
+
{ url = "https://files.pythonhosted.org/packages/b2/5c/f09c33a511aff41a098e6ef3498465d95f6360621034a3d95f47edbc9119/numpy-2.2.4-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:7051ee569db5fbac144335e0f3b9c2337e0c8d5c9fee015f259a5bd70772b7e8", size = 21081956 },
|
|
3027
|
+
{ url = "https://files.pythonhosted.org/packages/ba/30/74c48b3b6494c4b820b7fa1781d441e94d87a08daa5b35d222f06ba41a6f/numpy-2.2.4-pp310-pypy310_pp73-macosx_14_0_x86_64.whl", hash = "sha256:ab2939cd5bec30a7430cbdb2287b63151b77cf9624de0532d629c9a1c59b1d5c", size = 6827143 },
|
|
3028
|
+
{ url = "https://files.pythonhosted.org/packages/54/f5/ab0d2f48b490535c7a80e05da4a98902b632369efc04f0e47bb31ca97d8f/numpy-2.2.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d0f35b19894a9e08639fd60a1ec1978cb7f5f7f1eace62f38dd36be8aecdef4d", size = 16233350 },
|
|
3029
|
+
{ url = "https://files.pythonhosted.org/packages/3b/3a/2f6d8c1f8e45d496bca6baaec93208035faeb40d5735c25afac092ec9a12/numpy-2.2.4-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:b4adfbbc64014976d2f91084915ca4e626fbf2057fb81af209c1a6d776d23e3d", size = 12857565 },
|
|
3077
3030
|
]
|
|
3078
3031
|
|
|
3079
3032
|
[[package]]
|
|
@@ -3114,7 +3067,7 @@ wheels = [
|
|
|
3114
3067
|
|
|
3115
3068
|
[[package]]
|
|
3116
3069
|
name = "openai"
|
|
3117
|
-
version = "1.
|
|
3070
|
+
version = "1.70.0"
|
|
3118
3071
|
source = { registry = "https://pypi.org/simple" }
|
|
3119
3072
|
dependencies = [
|
|
3120
3073
|
{ name = "anyio" },
|
|
@@ -3126,49 +3079,9 @@ dependencies = [
|
|
|
3126
3079
|
{ name = "tqdm" },
|
|
3127
3080
|
{ name = "typing-extensions" },
|
|
3128
3081
|
]
|
|
3129
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
3082
|
+
sdist = { url = "https://files.pythonhosted.org/packages/87/f5/ae0f3cd226c2993b4ac1cc4b5f6ca099764689f403c14922c9356accec66/openai-1.70.0.tar.gz", hash = "sha256:e52a8d54c3efeb08cf58539b5b21a5abef25368b5432965e4de88cdf4e091b2b", size = 409640 }
|
|
3130
3083
|
wheels = [
|
|
3131
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3132
|
-
]
|
|
3133
|
-
|
|
3134
|
-
[[package]]
|
|
3135
|
-
name = "openinference-instrumentation"
|
|
3136
|
-
version = "0.1.23"
|
|
3137
|
-
source = { registry = "https://pypi.org/simple" }
|
|
3138
|
-
dependencies = [
|
|
3139
|
-
{ name = "openinference-semantic-conventions" },
|
|
3140
|
-
{ name = "opentelemetry-api" },
|
|
3141
|
-
{ name = "opentelemetry-sdk" },
|
|
3142
|
-
]
|
|
3143
|
-
sdist = { url = "https://files.pythonhosted.org/packages/85/77/4c00ee61e20f5b9f18c7aebba03a0afef5e3a6a5fa891e5d5fc1d625212c/openinference_instrumentation-0.1.23.tar.gz", hash = "sha256:18b97a7cdb4a18e7c8990ca5eeaac15dac0978f888731cb30e5997cd6a791823", size = 16981 }
|
|
3144
|
-
wheels = [
|
|
3145
|
-
{ url = "https://files.pythonhosted.org/packages/6c/65/d0f7a232db380b5d58e4623807ae88e1470880d1d359f7d49c400d804764/openinference_instrumentation-0.1.23-py3-none-any.whl", hash = "sha256:2aebaefff952842bf18e7d5ca18058b0f4ca56e81ace7663e52d312b086c0b5d", size = 19425 },
|
|
3146
|
-
]
|
|
3147
|
-
|
|
3148
|
-
[[package]]
|
|
3149
|
-
name = "openinference-instrumentation-langchain"
|
|
3150
|
-
version = "0.1.35"
|
|
3151
|
-
source = { registry = "https://pypi.org/simple" }
|
|
3152
|
-
dependencies = [
|
|
3153
|
-
{ name = "openinference-instrumentation" },
|
|
3154
|
-
{ name = "openinference-semantic-conventions" },
|
|
3155
|
-
{ name = "opentelemetry-api" },
|
|
3156
|
-
{ name = "opentelemetry-instrumentation" },
|
|
3157
|
-
{ name = "opentelemetry-semantic-conventions" },
|
|
3158
|
-
{ name = "wrapt" },
|
|
3159
|
-
]
|
|
3160
|
-
sdist = { url = "https://files.pythonhosted.org/packages/15/39/0db96641b3caadf802095b936a3a395444489cbec2afbcf136a40728c749/openinference_instrumentation_langchain-0.1.35.tar.gz", hash = "sha256:e4935f95fc6293a6ad2a9610e6a3e53f66d897c0a3e0fec37b6dc2fedd66aa6b", size = 48789 }
|
|
3161
|
-
wheels = [
|
|
3162
|
-
{ url = "https://files.pythonhosted.org/packages/cf/ee/e8e604d0e69292fdeabd35513a6b06c2165f1102c03dad44c65dfe23a86a/openinference_instrumentation_langchain-0.1.35-py3-none-any.whl", hash = "sha256:367d37c0047ad41dc20c3e11e2918d7b2ddbd2536d984ce1fdceb6ee06a96439", size = 17803 },
|
|
3163
|
-
]
|
|
3164
|
-
|
|
3165
|
-
[[package]]
|
|
3166
|
-
name = "openinference-semantic-conventions"
|
|
3167
|
-
version = "0.1.14"
|
|
3168
|
-
source = { registry = "https://pypi.org/simple" }
|
|
3169
|
-
sdist = { url = "https://files.pythonhosted.org/packages/03/c6/16bad683daaf0fb36dc02c0959ce09c343b8d35b63f6784ba78e977a12ac/openinference_semantic_conventions-0.1.14.tar.gz", hash = "sha256:2196272c74cce69ea79aa57ebe06c6f14f681652879767a41fe787fdc7525db1", size = 9419 }
|
|
3170
|
-
wheels = [
|
|
3171
|
-
{ url = "https://files.pythonhosted.org/packages/a4/04/f8c49bf3376218fe9922c757381fe734f3ad12d06d4bd6ea04ec7920b61c/openinference_semantic_conventions-0.1.14-py3-none-any.whl", hash = "sha256:b63419c2a76ded1db4d0f6a848eae3900d085126c03e09676516bd8f2cbbf3b6", size = 9228 },
|
|
3084
|
+
{ url = "https://files.pythonhosted.org/packages/e2/39/c4b38317d2c702c4bc763957735aaeaf30dfc43b5b824121c49a4ba7ba0f/openai-1.70.0-py3-none-any.whl", hash = "sha256:f6438d053fd8b2e05fd6bef70871e832d9bbdf55e119d0ac5b92726f1ae6f614", size = 599070 },
|
|
3172
3085
|
]
|
|
3173
3086
|
|
|
3174
3087
|
[[package]]
|
|
@@ -3185,15 +3098,15 @@ wheels = [
|
|
|
3185
3098
|
|
|
3186
3099
|
[[package]]
|
|
3187
3100
|
name = "opentelemetry-api"
|
|
3188
|
-
version = "1.31.
|
|
3101
|
+
version = "1.31.1"
|
|
3189
3102
|
source = { registry = "https://pypi.org/simple" }
|
|
3190
3103
|
dependencies = [
|
|
3191
3104
|
{ name = "deprecated" },
|
|
3192
3105
|
{ name = "importlib-metadata" },
|
|
3193
3106
|
]
|
|
3194
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
3107
|
+
sdist = { url = "https://files.pythonhosted.org/packages/8a/cf/db26ab9d748bf50d6edf524fb863aa4da616ba1ce46c57a7dff1112b73fb/opentelemetry_api-1.31.1.tar.gz", hash = "sha256:137ad4b64215f02b3000a0292e077641c8611aab636414632a9b9068593b7e91", size = 64059 }
|
|
3195
3108
|
wheels = [
|
|
3196
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3109
|
+
{ url = "https://files.pythonhosted.org/packages/6c/c8/86557ff0da32f3817bc4face57ea35cfdc2f9d3bcefd42311ef860dcefb7/opentelemetry_api-1.31.1-py3-none-any.whl", hash = "sha256:1511a3f470c9c8a32eeea68d4ea37835880c0eed09dd1a0187acc8b1301da0a1", size = 65197 },
|
|
3197
3110
|
]
|
|
3198
3111
|
|
|
3199
3112
|
[[package]]
|
|
@@ -3213,19 +3126,19 @@ wheels = [
|
|
|
3213
3126
|
|
|
3214
3127
|
[[package]]
|
|
3215
3128
|
name = "opentelemetry-exporter-otlp-proto-common"
|
|
3216
|
-
version = "1.31.
|
|
3129
|
+
version = "1.31.1"
|
|
3217
3130
|
source = { registry = "https://pypi.org/simple" }
|
|
3218
3131
|
dependencies = [
|
|
3219
3132
|
{ name = "opentelemetry-proto" },
|
|
3220
3133
|
]
|
|
3221
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
3134
|
+
sdist = { url = "https://files.pythonhosted.org/packages/53/e5/48662d9821d28f05ab8350a9a986ab99d9c0e8b23f8ff391c8df82742a9c/opentelemetry_exporter_otlp_proto_common-1.31.1.tar.gz", hash = "sha256:c748e224c01f13073a2205397ba0e415dcd3be9a0f95101ba4aace5fc730e0da", size = 20627 }
|
|
3222
3135
|
wheels = [
|
|
3223
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3136
|
+
{ url = "https://files.pythonhosted.org/packages/82/70/134282413000a3fc02e6b4e301b8c5d7127c43b50bd23cddbaf406ab33ff/opentelemetry_exporter_otlp_proto_common-1.31.1-py3-none-any.whl", hash = "sha256:7cadf89dbab12e217a33c5d757e67c76dd20ce173f8203e7370c4996f2e9efd8", size = 18823 },
|
|
3224
3137
|
]
|
|
3225
3138
|
|
|
3226
3139
|
[[package]]
|
|
3227
3140
|
name = "opentelemetry-exporter-otlp-proto-grpc"
|
|
3228
|
-
version = "1.31.
|
|
3141
|
+
version = "1.31.1"
|
|
3229
3142
|
source = { registry = "https://pypi.org/simple" }
|
|
3230
3143
|
dependencies = [
|
|
3231
3144
|
{ name = "deprecated" },
|
|
@@ -3236,14 +3149,14 @@ dependencies = [
|
|
|
3236
3149
|
{ name = "opentelemetry-proto" },
|
|
3237
3150
|
{ name = "opentelemetry-sdk" },
|
|
3238
3151
|
]
|
|
3239
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
3152
|
+
sdist = { url = "https://files.pythonhosted.org/packages/0f/37/6ce465827ac69c52543afb5534146ccc40f54283a3a8a71ef87c91eb8933/opentelemetry_exporter_otlp_proto_grpc-1.31.1.tar.gz", hash = "sha256:c7f66b4b333c52248dc89a6583506222c896c74824d5d2060b818ae55510939a", size = 26620 }
|
|
3240
3153
|
wheels = [
|
|
3241
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3154
|
+
{ url = "https://files.pythonhosted.org/packages/ee/25/9974fa3a431d7499bd9d179fb9bd7daaa3ad9eba3313f72da5226b6d02df/opentelemetry_exporter_otlp_proto_grpc-1.31.1-py3-none-any.whl", hash = "sha256:f4055ad2c9a2ea3ae00cbb927d6253233478b3b87888e197d34d095a62305fae", size = 18588 },
|
|
3242
3155
|
]
|
|
3243
3156
|
|
|
3244
3157
|
[[package]]
|
|
3245
3158
|
name = "opentelemetry-exporter-otlp-proto-http"
|
|
3246
|
-
version = "1.31.
|
|
3159
|
+
version = "1.31.1"
|
|
3247
3160
|
source = { registry = "https://pypi.org/simple" }
|
|
3248
3161
|
dependencies = [
|
|
3249
3162
|
{ name = "deprecated" },
|
|
@@ -3254,14 +3167,14 @@ dependencies = [
|
|
|
3254
3167
|
{ name = "opentelemetry-sdk" },
|
|
3255
3168
|
{ name = "requests" },
|
|
3256
3169
|
]
|
|
3257
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
3170
|
+
sdist = { url = "https://files.pythonhosted.org/packages/6d/9c/d8718fce3d14042beab5a41c8e17be1864c48d2067be3a99a5652d2414a3/opentelemetry_exporter_otlp_proto_http-1.31.1.tar.gz", hash = "sha256:723bd90eb12cfb9ae24598641cb0c92ca5ba9f1762103902f6ffee3341ba048e", size = 15140 }
|
|
3258
3171
|
wheels = [
|
|
3259
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3172
|
+
{ url = "https://files.pythonhosted.org/packages/f2/19/5041dbfdd0b2a6ab340596693759bfa7dcfa8f30b9fa7112bb7117358571/opentelemetry_exporter_otlp_proto_http-1.31.1-py3-none-any.whl", hash = "sha256:5dee1f051f096b13d99706a050c39b08e3f395905f29088bfe59e54218bd1cf4", size = 17257 },
|
|
3260
3173
|
]
|
|
3261
3174
|
|
|
3262
3175
|
[[package]]
|
|
3263
3176
|
name = "opentelemetry-instrumentation"
|
|
3264
|
-
version = "0.
|
|
3177
|
+
version = "0.52b1"
|
|
3265
3178
|
source = { registry = "https://pypi.org/simple" }
|
|
3266
3179
|
dependencies = [
|
|
3267
3180
|
{ name = "opentelemetry-api" },
|
|
@@ -3269,9 +3182,9 @@ dependencies = [
|
|
|
3269
3182
|
{ name = "packaging" },
|
|
3270
3183
|
{ name = "wrapt" },
|
|
3271
3184
|
]
|
|
3272
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
3185
|
+
sdist = { url = "https://files.pythonhosted.org/packages/49/c9/c52d444576b0776dbee71d2a4485be276cf46bec0123a5ba2f43f0cf7cde/opentelemetry_instrumentation-0.52b1.tar.gz", hash = "sha256:739f3bfadbbeec04dd59297479e15660a53df93c131d907bb61052e3d3c1406f", size = 28406 }
|
|
3273
3186
|
wheels = [
|
|
3274
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3187
|
+
{ url = "https://files.pythonhosted.org/packages/61/dd/a2b35078170941990e7a5194b9600fa75868958a9a2196a752da0e7b97a0/opentelemetry_instrumentation-0.52b1-py3-none-any.whl", hash = "sha256:8c0059c4379d77bbd8015c8d8476020efe873c123047ec069bb335e4b8717477", size = 31036 },
|
|
3275
3188
|
]
|
|
3276
3189
|
|
|
3277
3190
|
[[package]]
|
|
@@ -3306,7 +3219,7 @@ wheels = [
|
|
|
3306
3219
|
|
|
3307
3220
|
[[package]]
|
|
3308
3221
|
name = "opentelemetry-instrumentation-asgi"
|
|
3309
|
-
version = "0.
|
|
3222
|
+
version = "0.52b1"
|
|
3310
3223
|
source = { registry = "https://pypi.org/simple" }
|
|
3311
3224
|
dependencies = [
|
|
3312
3225
|
{ name = "asgiref" },
|
|
@@ -3315,9 +3228,9 @@ dependencies = [
|
|
|
3315
3228
|
{ name = "opentelemetry-semantic-conventions" },
|
|
3316
3229
|
{ name = "opentelemetry-util-http" },
|
|
3317
3230
|
]
|
|
3318
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
3231
|
+
sdist = { url = "https://files.pythonhosted.org/packages/bc/db/79bdc2344b38e60fecc7e99159a3f5b4c0e1acec8de305fba0a713cc3692/opentelemetry_instrumentation_asgi-0.52b1.tar.gz", hash = "sha256:a6dbce9cb5b2c2f45ce4817ad21f44c67fd328358ad3ab911eb46f0be67f82ec", size = 24203 }
|
|
3319
3232
|
wheels = [
|
|
3320
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3233
|
+
{ url = "https://files.pythonhosted.org/packages/19/de/39ec078ae94a365d2f434b7e25886c267864aca5695b48fa5b60f80fbfb3/opentelemetry_instrumentation_asgi-0.52b1-py3-none-any.whl", hash = "sha256:f7179f477ed665ba21871972f979f21e8534edb971232e11920c8a22f4759236", size = 16338 },
|
|
3321
3234
|
]
|
|
3322
3235
|
|
|
3323
3236
|
[[package]]
|
|
@@ -3383,7 +3296,7 @@ wheels = [
|
|
|
3383
3296
|
|
|
3384
3297
|
[[package]]
|
|
3385
3298
|
name = "opentelemetry-instrumentation-fastapi"
|
|
3386
|
-
version = "0.
|
|
3299
|
+
version = "0.52b1"
|
|
3387
3300
|
source = { registry = "https://pypi.org/simple" }
|
|
3388
3301
|
dependencies = [
|
|
3389
3302
|
{ name = "opentelemetry-api" },
|
|
@@ -3392,9 +3305,9 @@ dependencies = [
|
|
|
3392
3305
|
{ name = "opentelemetry-semantic-conventions" },
|
|
3393
3306
|
{ name = "opentelemetry-util-http" },
|
|
3394
3307
|
]
|
|
3395
|
-
sdist = { url = "https://files.pythonhosted.org/packages/30/
|
|
3308
|
+
sdist = { url = "https://files.pythonhosted.org/packages/30/01/d159829077f2795c716445df6f8edfdd33391e82d712ba4613fb62b99dc5/opentelemetry_instrumentation_fastapi-0.52b1.tar.gz", hash = "sha256:d26ab15dc49e041301d5c2571605b8f5c3a6ee4a85b60940338f56c120221e98", size = 19247 }
|
|
3396
3309
|
wheels = [
|
|
3397
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3310
|
+
{ url = "https://files.pythonhosted.org/packages/23/89/acef7f625b218523873e32584dc5243d95ffa4facba737fd8b854c049c58/opentelemetry_instrumentation_fastapi-0.52b1-py3-none-any.whl", hash = "sha256:73c8804f053c5eb2fd2c948218bff9561f1ef65e89db326a6ab0b5bf829969f4", size = 12114 },
|
|
3398
3311
|
]
|
|
3399
3312
|
|
|
3400
3313
|
[[package]]
|
|
@@ -3490,15 +3403,15 @@ wheels = [
|
|
|
3490
3403
|
|
|
3491
3404
|
[[package]]
|
|
3492
3405
|
name = "opentelemetry-instrumentation-logging"
|
|
3493
|
-
version = "0.
|
|
3406
|
+
version = "0.52b1"
|
|
3494
3407
|
source = { registry = "https://pypi.org/simple" }
|
|
3495
3408
|
dependencies = [
|
|
3496
3409
|
{ name = "opentelemetry-api" },
|
|
3497
3410
|
{ name = "opentelemetry-instrumentation" },
|
|
3498
3411
|
]
|
|
3499
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
3412
|
+
sdist = { url = "https://files.pythonhosted.org/packages/82/a9/9199d608373e75feb607958c044617a0b4c6aeb5d744010ee2087b8e720f/opentelemetry_instrumentation_logging-0.52b1.tar.gz", hash = "sha256:050f52ef3470abd3a093262e69f986d71a48f67c7e4194008b3e8247030e11d6", size = 9756 }
|
|
3500
3413
|
wheels = [
|
|
3501
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3414
|
+
{ url = "https://files.pythonhosted.org/packages/2c/0f/5897ce443d1a120b194b81ba170f3699bf0a003c8901cb2cf2de5cba31b5/opentelemetry_instrumentation_logging-0.52b1-py3-none-any.whl", hash = "sha256:4c8206c4f2ad78c44d9bb781ed5aeadf5ec687e95b29a69edfd9a2620f5fb01b", size = 12171 },
|
|
3502
3415
|
]
|
|
3503
3416
|
|
|
3504
3417
|
[[package]]
|
|
@@ -3624,7 +3537,7 @@ wheels = [
|
|
|
3624
3537
|
|
|
3625
3538
|
[[package]]
|
|
3626
3539
|
name = "opentelemetry-instrumentation-requests"
|
|
3627
|
-
version = "0.
|
|
3540
|
+
version = "0.52b1"
|
|
3628
3541
|
source = { registry = "https://pypi.org/simple" }
|
|
3629
3542
|
dependencies = [
|
|
3630
3543
|
{ name = "opentelemetry-api" },
|
|
@@ -3632,9 +3545,9 @@ dependencies = [
|
|
|
3632
3545
|
{ name = "opentelemetry-semantic-conventions" },
|
|
3633
3546
|
{ name = "opentelemetry-util-http" },
|
|
3634
3547
|
]
|
|
3635
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
3548
|
+
sdist = { url = "https://files.pythonhosted.org/packages/56/d7/27588187a7092dc64129bc4c8808277460d353fc52299f3e0b9d9d09ce79/opentelemetry_instrumentation_requests-0.52b1.tar.gz", hash = "sha256:711a2ef90e32a0ffd4650b21376b8e102473845ba9121efca0d94314d529b501", size = 14377 }
|
|
3636
3549
|
wheels = [
|
|
3637
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3550
|
+
{ url = "https://files.pythonhosted.org/packages/3f/c5/a1d78cb4beb9e7889799bf6d1c759d7b08f800cc068c94e94386678a7fe0/opentelemetry_instrumentation_requests-0.52b1-py3-none-any.whl", hash = "sha256:58ae3c415543d8ba2b0091b81ac13b65f2993adef0a4b9a5d3d7ebbe0023986a", size = 12746 },
|
|
3638
3551
|
]
|
|
3639
3552
|
|
|
3640
3553
|
[[package]]
|
|
@@ -3654,7 +3567,7 @@ wheels = [
|
|
|
3654
3567
|
|
|
3655
3568
|
[[package]]
|
|
3656
3569
|
name = "opentelemetry-instrumentation-sqlalchemy"
|
|
3657
|
-
version = "0.
|
|
3570
|
+
version = "0.52b1"
|
|
3658
3571
|
source = { registry = "https://pypi.org/simple" }
|
|
3659
3572
|
dependencies = [
|
|
3660
3573
|
{ name = "opentelemetry-api" },
|
|
@@ -3663,23 +3576,23 @@ dependencies = [
|
|
|
3663
3576
|
{ name = "packaging" },
|
|
3664
3577
|
{ name = "wrapt" },
|
|
3665
3578
|
]
|
|
3666
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
3579
|
+
sdist = { url = "https://files.pythonhosted.org/packages/7f/e0/c64dd0780dd4c4f1eb0f8fc079181d1bfa18e5bb0e3e9ecb3a1de24d0be1/opentelemetry_instrumentation_sqlalchemy-0.52b1.tar.gz", hash = "sha256:6b9255e111eabb7fb0f007333dd1c5012a1df7bcc34dde22c841064826a8a9d9", size = 14584 }
|
|
3667
3580
|
wheels = [
|
|
3668
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3581
|
+
{ url = "https://files.pythonhosted.org/packages/bf/d1/dbcfe7ff77e42209de566fa1cda71b78834bc4ffc7908c97ed3b73cc0899/opentelemetry_instrumentation_sqlalchemy-0.52b1-py3-none-any.whl", hash = "sha256:63228df88472109e43c65de2cb1969dcf97768bbee69cda63dfeb396ff0887d6", size = 14135 },
|
|
3669
3582
|
]
|
|
3670
3583
|
|
|
3671
3584
|
[[package]]
|
|
3672
3585
|
name = "opentelemetry-instrumentation-threading"
|
|
3673
|
-
version = "0.
|
|
3586
|
+
version = "0.52b1"
|
|
3674
3587
|
source = { registry = "https://pypi.org/simple" }
|
|
3675
3588
|
dependencies = [
|
|
3676
3589
|
{ name = "opentelemetry-api" },
|
|
3677
3590
|
{ name = "opentelemetry-instrumentation" },
|
|
3678
3591
|
{ name = "wrapt" },
|
|
3679
3592
|
]
|
|
3680
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
3593
|
+
sdist = { url = "https://files.pythonhosted.org/packages/e2/5a/64b64c609d1d23bb9e5f94bd583f7362552ce488bf7a0e214b9cfef00cee/opentelemetry_instrumentation_threading-0.52b1.tar.gz", hash = "sha256:f69c57c83dfa6b69aa50fd76f0f77833bd4f430799ee0e1df214f9b46256c820", size = 8774 }
|
|
3681
3594
|
wheels = [
|
|
3682
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3595
|
+
{ url = "https://files.pythonhosted.org/packages/f1/35/6fbaae2115409dbabf835ba46da34c72cee896a07c30c1fcc07c52827c98/opentelemetry_instrumentation_threading-0.52b1-py3-none-any.whl", hash = "sha256:8644a4f5507a126f0091da40567918f86bff41b30347e9f085b7536da33e5ce0", size = 9315 },
|
|
3683
3596
|
]
|
|
3684
3597
|
|
|
3685
3598
|
[[package]]
|
|
@@ -3714,7 +3627,7 @@ wheels = [
|
|
|
3714
3627
|
|
|
3715
3628
|
[[package]]
|
|
3716
3629
|
name = "opentelemetry-instrumentation-urllib3"
|
|
3717
|
-
version = "0.
|
|
3630
|
+
version = "0.52b1"
|
|
3718
3631
|
source = { registry = "https://pypi.org/simple" }
|
|
3719
3632
|
dependencies = [
|
|
3720
3633
|
{ name = "opentelemetry-api" },
|
|
@@ -3723,9 +3636,9 @@ dependencies = [
|
|
|
3723
3636
|
{ name = "opentelemetry-util-http" },
|
|
3724
3637
|
{ name = "wrapt" },
|
|
3725
3638
|
]
|
|
3726
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
3639
|
+
sdist = { url = "https://files.pythonhosted.org/packages/97/4b/f0c0f7ee7c06a7068a7016de2f212e03f4a8e9ff17ea1b887b444a20cb62/opentelemetry_instrumentation_urllib3-0.52b1.tar.gz", hash = "sha256:b607aefd2c02ff7fbf6eea4b863f63348e64b29592ffa90dcc970a5bbcbe3c6b", size = 15697 }
|
|
3727
3640
|
wheels = [
|
|
3728
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3641
|
+
{ url = "https://files.pythonhosted.org/packages/a0/01/f5cab7bbe73635e9ab351d6d4add625407dbb4aec4b3b6946101776ceb54/opentelemetry_instrumentation_urllib3-0.52b1-py3-none-any.whl", hash = "sha256:4011bac1639a6336c443252d93709eff17e316523f335ddee4ddb47bf464305e", size = 13124 },
|
|
3729
3642
|
]
|
|
3730
3643
|
|
|
3731
3644
|
[[package]]
|
|
@@ -3775,14 +3688,14 @@ wheels = [
|
|
|
3775
3688
|
|
|
3776
3689
|
[[package]]
|
|
3777
3690
|
name = "opentelemetry-proto"
|
|
3778
|
-
version = "1.31.
|
|
3691
|
+
version = "1.31.1"
|
|
3779
3692
|
source = { registry = "https://pypi.org/simple" }
|
|
3780
3693
|
dependencies = [
|
|
3781
3694
|
{ name = "protobuf" },
|
|
3782
3695
|
]
|
|
3783
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
3696
|
+
sdist = { url = "https://files.pythonhosted.org/packages/5b/b0/e763f335b9b63482f1f31f46f9299c4d8388e91fc12737aa14fdb5d124ac/opentelemetry_proto-1.31.1.tar.gz", hash = "sha256:d93e9c2b444e63d1064fb50ae035bcb09e5822274f1683886970d2734208e790", size = 34363 }
|
|
3784
3697
|
wheels = [
|
|
3785
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3698
|
+
{ url = "https://files.pythonhosted.org/packages/b6/f1/3baee86eab4f1b59b755f3c61a9b5028f380c88250bb9b7f89340502dbba/opentelemetry_proto-1.31.1-py3-none-any.whl", hash = "sha256:1398ffc6d850c2f1549ce355744e574c8cd7c1dba3eea900d630d52c41d07178", size = 55854 },
|
|
3786
3699
|
]
|
|
3787
3700
|
|
|
3788
3701
|
[[package]]
|
|
@@ -3802,29 +3715,29 @@ wheels = [
|
|
|
3802
3715
|
|
|
3803
3716
|
[[package]]
|
|
3804
3717
|
name = "opentelemetry-sdk"
|
|
3805
|
-
version = "1.31.
|
|
3718
|
+
version = "1.31.1"
|
|
3806
3719
|
source = { registry = "https://pypi.org/simple" }
|
|
3807
3720
|
dependencies = [
|
|
3808
3721
|
{ name = "opentelemetry-api" },
|
|
3809
3722
|
{ name = "opentelemetry-semantic-conventions" },
|
|
3810
3723
|
{ name = "typing-extensions" },
|
|
3811
3724
|
]
|
|
3812
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
3725
|
+
sdist = { url = "https://files.pythonhosted.org/packages/63/d9/4fe159908a63661e9e635e66edc0d0d816ed20cebcce886132b19ae87761/opentelemetry_sdk-1.31.1.tar.gz", hash = "sha256:c95f61e74b60769f8ff01ec6ffd3d29684743404603df34b20aa16a49dc8d903", size = 159523 }
|
|
3813
3726
|
wheels = [
|
|
3814
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3727
|
+
{ url = "https://files.pythonhosted.org/packages/bc/36/758e5d3746bc86a2af20aa5e2236a7c5aa4264b501dc0e9f40efd9078ef0/opentelemetry_sdk-1.31.1-py3-none-any.whl", hash = "sha256:882d021321f223e37afaca7b4e06c1d8bbc013f9e17ff48a7aa017460a8e7dae", size = 118866 },
|
|
3815
3728
|
]
|
|
3816
3729
|
|
|
3817
3730
|
[[package]]
|
|
3818
3731
|
name = "opentelemetry-semantic-conventions"
|
|
3819
|
-
version = "0.
|
|
3732
|
+
version = "0.52b1"
|
|
3820
3733
|
source = { registry = "https://pypi.org/simple" }
|
|
3821
3734
|
dependencies = [
|
|
3822
3735
|
{ name = "deprecated" },
|
|
3823
3736
|
{ name = "opentelemetry-api" },
|
|
3824
3737
|
]
|
|
3825
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
3738
|
+
sdist = { url = "https://files.pythonhosted.org/packages/06/8c/599f9f27cff097ec4d76fbe9fe6d1a74577ceec52efe1a999511e3c42ef5/opentelemetry_semantic_conventions-0.52b1.tar.gz", hash = "sha256:7b3d226ecf7523c27499758a58b542b48a0ac8d12be03c0488ff8ec60c5bae5d", size = 111275 }
|
|
3826
3739
|
wheels = [
|
|
3827
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3740
|
+
{ url = "https://files.pythonhosted.org/packages/98/be/d4ba300cfc1d4980886efbc9b48ee75242b9fcf940d9c4ccdc9ef413a7cf/opentelemetry_semantic_conventions-0.52b1-py3-none-any.whl", hash = "sha256:72b42db327e29ca8bb1b91e8082514ddf3bbf33f32ec088feb09526ade4bc77e", size = 183409 },
|
|
3828
3741
|
]
|
|
3829
3742
|
|
|
3830
3743
|
[[package]]
|
|
@@ -3838,58 +3751,91 @@ wheels = [
|
|
|
3838
3751
|
|
|
3839
3752
|
[[package]]
|
|
3840
3753
|
name = "opentelemetry-util-http"
|
|
3841
|
-
version = "0.
|
|
3754
|
+
version = "0.52b1"
|
|
3842
3755
|
source = { registry = "https://pypi.org/simple" }
|
|
3843
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
3756
|
+
sdist = { url = "https://files.pythonhosted.org/packages/23/3f/16a4225a953bbaae7d800140ed99813f092ea3071ba7780683299a87049b/opentelemetry_util_http-0.52b1.tar.gz", hash = "sha256:c03c8c23f1b75fadf548faece7ead3aecd50761c5593a2b2831b48730eee5b31", size = 8044 }
|
|
3844
3757
|
wheels = [
|
|
3845
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3758
|
+
{ url = "https://files.pythonhosted.org/packages/2c/00/1591b397c9efc0e4215d223553a1cb9090c8499888a4447f842443077d31/opentelemetry_util_http-0.52b1-py3-none-any.whl", hash = "sha256:6a6ab6bfa23fef96f4995233e874f67602adf9d224895981b4ab9d4dde23de78", size = 7305 },
|
|
3846
3759
|
]
|
|
3847
3760
|
|
|
3848
3761
|
[[package]]
|
|
3849
3762
|
name = "orjson"
|
|
3850
|
-
version = "3.10.
|
|
3851
|
-
source = { registry = "https://pypi.org/simple" }
|
|
3852
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
3853
|
-
wheels = [
|
|
3854
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3855
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3856
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3857
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3858
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3859
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3860
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3861
|
-
{ url = "https://files.pythonhosted.org/packages/53/
|
|
3862
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3863
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3864
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3865
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3866
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3867
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3868
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3869
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3870
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3871
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3872
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3873
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3874
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3875
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3876
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3877
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3878
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3879
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3880
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3881
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3882
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3883
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3884
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3885
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3886
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3887
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3888
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3889
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3890
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3891
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3892
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3763
|
+
version = "3.10.16"
|
|
3764
|
+
source = { registry = "https://pypi.org/simple" }
|
|
3765
|
+
sdist = { url = "https://files.pythonhosted.org/packages/98/c7/03913cc4332174071950acf5b0735463e3f63760c80585ef369270c2b372/orjson-3.10.16.tar.gz", hash = "sha256:d2aaa5c495e11d17b9b93205f5fa196737ee3202f000aaebf028dc9a73750f10", size = 5410415 }
|
|
3766
|
+
wheels = [
|
|
3767
|
+
{ url = "https://files.pythonhosted.org/packages/9d/a6/22cb9b03baf167bc2d659c9e74d7580147f36e6a155e633801badfd5a74d/orjson-3.10.16-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:4cb473b8e79154fa778fb56d2d73763d977be3dcc140587e07dbc545bbfc38f8", size = 249179 },
|
|
3768
|
+
{ url = "https://files.pythonhosted.org/packages/d7/ce/3e68cc33020a6ebd8f359b8628b69d2132cd84fea68155c33057e502ee51/orjson-3.10.16-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:622a8e85eeec1948690409a19ca1c7d9fd8ff116f4861d261e6ae2094fe59a00", size = 138510 },
|
|
3769
|
+
{ url = "https://files.pythonhosted.org/packages/dc/12/63bee7764ce12052f7c1a1393ce7f26dc392c93081eb8754dd3dce9b7c6b/orjson-3.10.16-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c682d852d0ce77613993dc967e90e151899fe2d8e71c20e9be164080f468e370", size = 132373 },
|
|
3770
|
+
{ url = "https://files.pythonhosted.org/packages/b3/d5/2998c2f319adcd572f2b03ba2083e8176863d1055d8d713683ddcf927b71/orjson-3.10.16-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8c520ae736acd2e32df193bcff73491e64c936f3e44a2916b548da048a48b46b", size = 136774 },
|
|
3771
|
+
{ url = "https://files.pythonhosted.org/packages/00/03/88c236ae307bd0604623204d4a835e15fbf9c75b8535c8f13ef45abd413f/orjson-3.10.16-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:134f87c76bfae00f2094d85cfab261b289b76d78c6da8a7a3b3c09d362fd1e06", size = 138030 },
|
|
3772
|
+
{ url = "https://files.pythonhosted.org/packages/66/ba/3e256ddfeb364f98fd6ac65774844090d356158b2d1de8998db2bf984503/orjson-3.10.16-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b59afde79563e2cf37cfe62ee3b71c063fd5546c8e662d7fcfc2a3d5031a5c4c", size = 142677 },
|
|
3773
|
+
{ url = "https://files.pythonhosted.org/packages/2c/71/73a1214bd27baa2ea5184fff4aa6193a114dfb0aa5663dad48fe63e8cd29/orjson-3.10.16-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:113602f8241daaff05d6fad25bd481d54c42d8d72ef4c831bb3ab682a54d9e15", size = 132798 },
|
|
3774
|
+
{ url = "https://files.pythonhosted.org/packages/53/ac/0b2f41c0a1e8c095439d0fab3b33103cf41a39be8e6aa2c56298a6034259/orjson-3.10.16-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:4fc0077d101f8fab4031e6554fc17b4c2ad8fdbc56ee64a727f3c95b379e31da", size = 135450 },
|
|
3775
|
+
{ url = "https://files.pythonhosted.org/packages/d9/ca/7524c7b0bc815d426ca134dab54cad519802287b808a3846b047a5b2b7a3/orjson-3.10.16-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:9c6bf6ff180cd69e93f3f50380224218cfab79953a868ea3908430bcfaf9cb5e", size = 412356 },
|
|
3776
|
+
{ url = "https://files.pythonhosted.org/packages/05/1d/3ae2367c255276bf16ff7e1b210dd0af18bc8da20c4e4295755fc7de1268/orjson-3.10.16-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:5673eadfa952f95a7cd76418ff189df11b0a9c34b1995dff43a6fdbce5d63bf4", size = 152769 },
|
|
3777
|
+
{ url = "https://files.pythonhosted.org/packages/d3/2d/8eb10b6b1d30bb69c35feb15e5ba5ac82466cf743d562e3e8047540efd2f/orjson-3.10.16-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:5fe638a423d852b0ae1e1a79895851696cb0d9fa0946fdbfd5da5072d9bb9551", size = 137223 },
|
|
3778
|
+
{ url = "https://files.pythonhosted.org/packages/47/42/f043717930cb2de5fbebe47f308f101bed9ec2b3580b1f99c8284b2f5fe8/orjson-3.10.16-cp310-cp310-win32.whl", hash = "sha256:33af58f479b3c6435ab8f8b57999874b4b40c804c7a36b5cc6b54d8f28e1d3dd", size = 141734 },
|
|
3779
|
+
{ url = "https://files.pythonhosted.org/packages/67/99/795ad7282b425b9fddcfb8a31bded5dcf84dba78ecb1e7ae716e84e794da/orjson-3.10.16-cp310-cp310-win_amd64.whl", hash = "sha256:0338356b3f56d71293c583350af26f053017071836b07e064e92819ecf1aa055", size = 133779 },
|
|
3780
|
+
{ url = "https://files.pythonhosted.org/packages/97/29/43f91a5512b5d2535594438eb41c5357865fd5e64dec745d90a588820c75/orjson-3.10.16-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:44fcbe1a1884f8bc9e2e863168b0f84230c3d634afe41c678637d2728ea8e739", size = 249180 },
|
|
3781
|
+
{ url = "https://files.pythonhosted.org/packages/0c/36/2a72d55e266473c19a86d97b7363bb8bf558ab450f75205689a287d5ce61/orjson-3.10.16-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:78177bf0a9d0192e0b34c3d78bcff7fe21d1b5d84aeb5ebdfe0dbe637b885225", size = 138510 },
|
|
3782
|
+
{ url = "https://files.pythonhosted.org/packages/bb/ad/f86d6f55c1a68b57ff6ea7966bce5f4e5163f2e526ddb7db9fc3c2c8d1c4/orjson-3.10.16-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:12824073a010a754bb27330cad21d6e9b98374f497f391b8707752b96f72e741", size = 132373 },
|
|
3783
|
+
{ url = "https://files.pythonhosted.org/packages/5e/8b/d18f2711493a809f3082a88fda89342bc8e16767743b909cd3c34989fba3/orjson-3.10.16-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ddd41007e56284e9867864aa2f29f3136bb1dd19a49ca43c0b4eda22a579cf53", size = 136773 },
|
|
3784
|
+
{ url = "https://files.pythonhosted.org/packages/a1/dc/ce025f002f8e0749e3f057c4d773a4d4de32b7b4c1fc5a50b429e7532586/orjson-3.10.16-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0877c4d35de639645de83666458ca1f12560d9fa7aa9b25d8bb8f52f61627d14", size = 138029 },
|
|
3785
|
+
{ url = "https://files.pythonhosted.org/packages/0e/1b/cf9df85852b91160029d9f26014230366a2b4deb8cc51fabe68e250a8c1a/orjson-3.10.16-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9a09a539e9cc3beead3e7107093b4ac176d015bec64f811afb5965fce077a03c", size = 142677 },
|
|
3786
|
+
{ url = "https://files.pythonhosted.org/packages/92/18/5b1e1e995bffad49dc4311a0bdfd874bc6f135fd20f0e1f671adc2c9910e/orjson-3.10.16-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:31b98bc9b40610fec971d9a4d67bb2ed02eec0a8ae35f8ccd2086320c28526ca", size = 132800 },
|
|
3787
|
+
{ url = "https://files.pythonhosted.org/packages/d6/eb/467f25b580e942fcca1344adef40633b7f05ac44a65a63fc913f9a805d58/orjson-3.10.16-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:0ce243f5a8739f3a18830bc62dc2e05b69a7545bafd3e3249f86668b2bcd8e50", size = 135451 },
|
|
3788
|
+
{ url = "https://files.pythonhosted.org/packages/8d/4b/9d10888038975cb375982e9339d9495bac382d5c976c500b8d6f2c8e2e4e/orjson-3.10.16-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:64792c0025bae049b3074c6abe0cf06f23c8e9f5a445f4bab31dc5ca23dbf9e1", size = 412358 },
|
|
3789
|
+
{ url = "https://files.pythonhosted.org/packages/3b/e2/cfbcfcc4fbe619e0ca9bdbbfccb2d62b540bbfe41e0ee77d44a628594f59/orjson-3.10.16-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:ea53f7e68eec718b8e17e942f7ca56c6bd43562eb19db3f22d90d75e13f0431d", size = 152772 },
|
|
3790
|
+
{ url = "https://files.pythonhosted.org/packages/b9/d6/627a1b00569be46173007c11dde3da4618c9bfe18409325b0e3e2a82fe29/orjson-3.10.16-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a741ba1a9488c92227711bde8c8c2b63d7d3816883268c808fbeada00400c164", size = 137225 },
|
|
3791
|
+
{ url = "https://files.pythonhosted.org/packages/0a/7b/a73c67b505021af845b9f05c7c848793258ea141fa2058b52dd9b067c2b4/orjson-3.10.16-cp311-cp311-win32.whl", hash = "sha256:c7ed2c61bb8226384c3fdf1fb01c51b47b03e3f4536c985078cccc2fd19f1619", size = 141733 },
|
|
3792
|
+
{ url = "https://files.pythonhosted.org/packages/f4/22/5e8217c48d68c0adbfb181e749d6a733761074e598b083c69a1383d18147/orjson-3.10.16-cp311-cp311-win_amd64.whl", hash = "sha256:cd67d8b3e0e56222a2e7b7f7da9031e30ecd1fe251c023340b9f12caca85ab60", size = 133784 },
|
|
3793
|
+
{ url = "https://files.pythonhosted.org/packages/5d/15/67ce9d4c959c83f112542222ea3b9209c1d424231d71d74c4890ea0acd2b/orjson-3.10.16-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6d3444abbfa71ba21bb042caa4b062535b122248259fdb9deea567969140abca", size = 249325 },
|
|
3794
|
+
{ url = "https://files.pythonhosted.org/packages/da/2c/1426b06f30a1b9ada74b6f512c1ddf9d2760f53f61cdb59efeb9ad342133/orjson-3.10.16-cp312-cp312-macosx_15_0_arm64.whl", hash = "sha256:30245c08d818fdcaa48b7d5b81499b8cae09acabb216fe61ca619876b128e184", size = 133621 },
|
|
3795
|
+
{ url = "https://files.pythonhosted.org/packages/9e/88/18d26130954bc73bee3be10f95371ea1dfb8679e0e2c46b0f6d8c6289402/orjson-3.10.16-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0ba1d0baa71bf7579a4ccdcf503e6f3098ef9542106a0eca82395898c8a500a", size = 138270 },
|
|
3796
|
+
{ url = "https://files.pythonhosted.org/packages/4f/f9/6d8b64fcd58fae072e80ee7981be8ba0d7c26ace954e5cd1d027fc80518f/orjson-3.10.16-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:eb0beefa5ef3af8845f3a69ff2a4aa62529b5acec1cfe5f8a6b4141033fd46ef", size = 132346 },
|
|
3797
|
+
{ url = "https://files.pythonhosted.org/packages/16/3f/2513fd5bc786f40cd12af569c23cae6381aeddbefeed2a98f0a666eb5d0d/orjson-3.10.16-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6daa0e1c9bf2e030e93c98394de94506f2a4d12e1e9dadd7c53d5e44d0f9628e", size = 136845 },
|
|
3798
|
+
{ url = "https://files.pythonhosted.org/packages/6d/42/b0e7b36720f5ab722b48e8ccf06514d4f769358dd73c51abd8728ef58d0b/orjson-3.10.16-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9da9019afb21e02410ef600e56666652b73eb3e4d213a0ec919ff391a7dd52aa", size = 138078 },
|
|
3799
|
+
{ url = "https://files.pythonhosted.org/packages/a3/a8/d220afb8a439604be74fc755dbc740bded5ed14745ca536b304ed32eb18a/orjson-3.10.16-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:daeb3a1ee17b69981d3aae30c3b4e786b0f8c9e6c71f2b48f1aef934f63f38f4", size = 142712 },
|
|
3800
|
+
{ url = "https://files.pythonhosted.org/packages/8c/88/7e41e9883c00f84f92fe357a8371edae816d9d7ef39c67b5106960c20389/orjson-3.10.16-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:80fed80eaf0e20a31942ae5d0728849862446512769692474be5e6b73123a23b", size = 133136 },
|
|
3801
|
+
{ url = "https://files.pythonhosted.org/packages/e9/ca/61116095307ad0be828ea26093febaf59e38596d84a9c8d765c3c5e4934f/orjson-3.10.16-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:73390ed838f03764540a7bdc4071fe0123914c2cc02fb6abf35182d5fd1b7a42", size = 135258 },
|
|
3802
|
+
{ url = "https://files.pythonhosted.org/packages/dc/1b/09493cf7d801505f094c9295f79c98c1e0af2ac01c7ed8d25b30fcb19ada/orjson-3.10.16-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:a22bba012a0c94ec02a7768953020ab0d3e2b884760f859176343a36c01adf87", size = 412326 },
|
|
3803
|
+
{ url = "https://files.pythonhosted.org/packages/ea/02/125d7bbd7f7a500190ddc8ae5d2d3c39d87ed3ed28f5b37cfe76962c678d/orjson-3.10.16-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:5385bbfdbc90ff5b2635b7e6bebf259652db00a92b5e3c45b616df75b9058e88", size = 152800 },
|
|
3804
|
+
{ url = "https://files.pythonhosted.org/packages/f9/09/7658a9e3e793d5b3b00598023e0fb6935d0e7bbb8ff72311c5415a8ce677/orjson-3.10.16-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:02c6279016346e774dd92625d46c6c40db687b8a0d685aadb91e26e46cc33e1e", size = 137516 },
|
|
3805
|
+
{ url = "https://files.pythonhosted.org/packages/29/87/32b7a4831e909d347278101a48d4cf9f3f25901b2295e7709df1651f65a1/orjson-3.10.16-cp312-cp312-win32.whl", hash = "sha256:7ca55097a11426db80f79378e873a8c51f4dde9ffc22de44850f9696b7eb0e8c", size = 141759 },
|
|
3806
|
+
{ url = "https://files.pythonhosted.org/packages/35/ce/81a27e7b439b807bd393585271364cdddf50dc281fc57c4feef7ccb186a6/orjson-3.10.16-cp312-cp312-win_amd64.whl", hash = "sha256:86d127efdd3f9bf5f04809b70faca1e6836556ea3cc46e662b44dab3fe71f3d6", size = 133944 },
|
|
3807
|
+
]
|
|
3808
|
+
|
|
3809
|
+
[[package]]
|
|
3810
|
+
name = "ormsgpack"
|
|
3811
|
+
version = "1.9.1"
|
|
3812
|
+
source = { registry = "https://pypi.org/simple" }
|
|
3813
|
+
sdist = { url = "https://files.pythonhosted.org/packages/25/a7/462cf8ff5e29241868b82d3a5ec124d690eb6a6a5c6fa5bb1367b839e027/ormsgpack-1.9.1.tar.gz", hash = "sha256:3da6e63d82565e590b98178545e64f0f8506137b92bd31a2d04fd7c82baf5794", size = 56887 }
|
|
3814
|
+
wheels = [
|
|
3815
|
+
{ url = "https://files.pythonhosted.org/packages/7f/32/5f504c0695ff96aaaf0452bee522d79b5a3ee809f22fd77fdb0dd5756d86/ormsgpack-1.9.1-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:f1f804fd9c0fd84213a6022c34172f82323b34afa7052a4af18797582cf56365", size = 382793 },
|
|
3816
|
+
{ url = "https://files.pythonhosted.org/packages/1e/c6/64fe1270271b61495611f1d3068baedb57d76e0f93ce7156f3763fb79b32/ormsgpack-1.9.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:eab5cec99c46276b37071d570aab98603f3d0309b3818da3247eb64bb95e5cfc", size = 213974 },
|
|
3817
|
+
{ url = "https://files.pythonhosted.org/packages/13/56/6666d6a9b82c7d2021fce6823ff823bc373a4e7280979c1b453317678fbc/ormsgpack-1.9.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1c12c6bb30e6df6fc0213b77f0a5e143f371d618be2e8eb4d555340ce01c6900", size = 217200 },
|
|
3818
|
+
{ url = "https://files.pythonhosted.org/packages/5f/fb/b844ed1e69d8615163525a8403d7abd3548b3fbfa0f3a973808f36145a0f/ormsgpack-1.9.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:994d4bbb7ee333264a3e55e30ccee063df6635d785f21a08bf52f67821454a51", size = 223648 },
|
|
3819
|
+
{ url = "https://files.pythonhosted.org/packages/f2/26/c40c3e300f9c61a5ed7a6921656dd0d2907a8174936e1e643677585e497c/ormsgpack-1.9.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:a668a584cf4bb6e1a6ef5a35f3f0d0fdae80cfb7237344ad19a50cce8c79317b", size = 394197 },
|
|
3820
|
+
{ url = "https://files.pythonhosted.org/packages/2d/4c/7a4ae187f18e7abf7ab0662b473264a60a5aa4e9bff266f541a8855df163/ormsgpack-1.9.1-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:aaf77699203822638014c604d100f132583844d4fd01eb639a2266970c02cfdf", size = 480550 },
|
|
3821
|
+
{ url = "https://files.pythonhosted.org/packages/b1/33/5c465dfd5571f816835bb9e371987bf081b529c64ef28a72d18b0b59902d/ormsgpack-1.9.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:003d7e1992b447898caf25a820b3037ec68a57864b3e2f34b64693b7d60a9984", size = 396955 },
|
|
3822
|
+
{ url = "https://files.pythonhosted.org/packages/8f/fd/8f64f477b5c6d66e9c6343d7d3f32d7063ba20ab151dd36884e6504899ab/ormsgpack-1.9.1-cp310-cp310-win_amd64.whl", hash = "sha256:67fefc77e4ba9469f79426769eb4c78acf21f22bef3ab1239a72dd728036ffc2", size = 125102 },
|
|
3823
|
+
{ url = "https://files.pythonhosted.org/packages/d8/3b/388e7915a28db6ab3daedfd4937bd7b063c50dd1543068daa31c0a3b70ed/ormsgpack-1.9.1-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:16eaf32c33ab4249e242181d59e2509b8e0330d6f65c1d8bf08c3dea38fd7c02", size = 382794 },
|
|
3824
|
+
{ url = "https://files.pythonhosted.org/packages/0f/b4/3f4afba058822bf69b274e0defe507056be0340e65363c3ebcd312b01b84/ormsgpack-1.9.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c70f2e5b2f9975536e8f7936a9721601dc54febe363d2d82f74c9b31d4fe1c65", size = 213974 },
|
|
3825
|
+
{ url = "https://files.pythonhosted.org/packages/bf/be/f0e21366d51b6e28fc3a55425be6a125545370d3479bf25be081e83ee236/ormsgpack-1.9.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:17c9e18b07d69e3db2e0f8af4731040175e11bdfde78ad8e28126e9e66ec5167", size = 217200 },
|
|
3826
|
+
{ url = "https://files.pythonhosted.org/packages/cc/90/67a23c1c880a6e5552acb45f9555b642528f89c8bcf75283a2ea64ef7175/ormsgpack-1.9.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:73538d749096bb6470328601a2be8f7bdec28849ec6fd19595c232a5848d7124", size = 223649 },
|
|
3827
|
+
{ url = "https://files.pythonhosted.org/packages/80/ad/116c1f970b5b4453e4faa52645517a2e5eaf1ab385ba09a5c54253d07d0e/ormsgpack-1.9.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:827ff71de228cfd6d07b9d6b47911aa61b1e8dc995dec3caf8fdcdf4f874bcd0", size = 394200 },
|
|
3828
|
+
{ url = "https://files.pythonhosted.org/packages/c5/a2/b224a5ef193628a15205e473179276b87e8290d321693e4934a05cbd6ccf/ormsgpack-1.9.1-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:7307f808b3df282c8e8ed92c6ebceeb3eea3d8eeec808438f3f212226b25e217", size = 480551 },
|
|
3829
|
+
{ url = "https://files.pythonhosted.org/packages/b5/f4/a0f528196af6ab46e6c3f3051cf7403016bdc7b7d3e673ea5b04b145be98/ormsgpack-1.9.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:f30aad7fb083bed1c540a3c163c6a9f63a94e3c538860bf8f13386c29b560ad5", size = 396959 },
|
|
3830
|
+
{ url = "https://files.pythonhosted.org/packages/bc/6b/60c6f4787e3e93f5eb34fccb163753a8771465983a579e3405152f2422fd/ormsgpack-1.9.1-cp311-cp311-win_amd64.whl", hash = "sha256:829a1b4c5bc3c38ece0c55cf91ebc09c3b987fceb24d3f680c2bcd03fd3789a4", size = 125100 },
|
|
3831
|
+
{ url = "https://files.pythonhosted.org/packages/dd/f1/155a598cc8030526ccaaf91ba4d61530f87900645559487edba58b0a90a2/ormsgpack-1.9.1-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:1ede445fc3fdba219bb0e0d1f289df26a9c7602016b7daac6fafe8fe4e91548f", size = 383225 },
|
|
3832
|
+
{ url = "https://files.pythonhosted.org/packages/23/1c/ef3097ba550fad55c79525f461febdd4e0d9cc18d065248044536f09488e/ormsgpack-1.9.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:db50b9f918e25b289114312ed775794d0978b469831b992bdc65bfe20b91fe30", size = 214056 },
|
|
3833
|
+
{ url = "https://files.pythonhosted.org/packages/27/77/64d0da25896b2cbb99505ca518c109d7dd1964d7fde14c10943731738b60/ormsgpack-1.9.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8c7d8fc58e4333308f58ec720b1ee6b12b2b3fe2d2d8f0766ab751cb351e8757", size = 217339 },
|
|
3834
|
+
{ url = "https://files.pythonhosted.org/packages/6c/10/c3a7fd0a0068b0bb52cccbfeb5656db895d69e895a3abbc210c4b3f98ff8/ormsgpack-1.9.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:aeee6d08c040db265cb8563444aba343ecb32cbdbe2414a489dcead9f70c6765", size = 223816 },
|
|
3835
|
+
{ url = "https://files.pythonhosted.org/packages/43/e7/aee1238dba652f2116c2523d36fd1c5f9775436032be5c233108fd2a1415/ormsgpack-1.9.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2fbb8181c198bdc413a4e889e5200f010724eea4b6d5a9a7eee2df039ac04aca", size = 394287 },
|
|
3836
|
+
{ url = "https://files.pythonhosted.org/packages/c7/09/1b452a92376f29d7a2da7c18fb01cf09978197a8eccbb8b204e72fd5a970/ormsgpack-1.9.1-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:16488f094ac0e2250cceea6caf72962614aa432ee11dd57ef45e1ad25ece3eff", size = 480709 },
|
|
3837
|
+
{ url = "https://files.pythonhosted.org/packages/de/13/7fa9fee5a73af8a73a42bf8c2e69489605714f65f5a41454400a05e84a3b/ormsgpack-1.9.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:422d960bfd6ad88be20794f50ec7953d8f7a0f2df60e19d0e8feb994e2ed64ee", size = 397247 },
|
|
3838
|
+
{ url = "https://files.pythonhosted.org/packages/a1/2d/2e87cb28110db0d3bb750edd4d8719b5068852a2eef5e96b0bf376bb8a81/ormsgpack-1.9.1-cp312-cp312-win_amd64.whl", hash = "sha256:e6e2f9eab527cf43fb4a4293e493370276b1c8716cf305689202d646c6a782ef", size = 125368 },
|
|
3893
3839
|
]
|
|
3894
3840
|
|
|
3895
3841
|
[[package]]
|
|
@@ -3965,29 +3911,29 @@ wheels = [
|
|
|
3965
3911
|
|
|
3966
3912
|
[[package]]
|
|
3967
3913
|
name = "pdfminer-six"
|
|
3968
|
-
version = "
|
|
3914
|
+
version = "20250327"
|
|
3969
3915
|
source = { registry = "https://pypi.org/simple" }
|
|
3970
3916
|
dependencies = [
|
|
3971
3917
|
{ name = "charset-normalizer" },
|
|
3972
3918
|
{ name = "cryptography" },
|
|
3973
3919
|
]
|
|
3974
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
3920
|
+
sdist = { url = "https://files.pythonhosted.org/packages/08/e9/4688ff2dd985f21380b9c8cd2fa8004bc0f2691f2c301082d767caea7136/pdfminer_six-20250327.tar.gz", hash = "sha256:57f6c34c2702df04cfa3191622a3db0a922ced686d35283232b00094f8914aa1", size = 7381506 }
|
|
3975
3921
|
wheels = [
|
|
3976
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3922
|
+
{ url = "https://files.pythonhosted.org/packages/29/2f/409e174b5a0195aa6a814c7359a1285f1c887a4c84aff17ed03f607c06ba/pdfminer_six-20250327-py3-none-any.whl", hash = "sha256:5af494c85b1ecb7c28df5e3a26bb5234a8226a307503d9a09f4958bc154b16a9", size = 5617445 },
|
|
3977
3923
|
]
|
|
3978
3924
|
|
|
3979
3925
|
[[package]]
|
|
3980
3926
|
name = "pdfplumber"
|
|
3981
|
-
version = "0.11.
|
|
3927
|
+
version = "0.11.6"
|
|
3982
3928
|
source = { registry = "https://pypi.org/simple" }
|
|
3983
3929
|
dependencies = [
|
|
3984
3930
|
{ name = "pdfminer-six" },
|
|
3985
3931
|
{ name = "pillow" },
|
|
3986
3932
|
{ name = "pypdfium2" },
|
|
3987
3933
|
]
|
|
3988
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
3934
|
+
sdist = { url = "https://files.pythonhosted.org/packages/ce/37/dca4c8290c252f530e52e758f58e211bb047b34e15d52703355a357524f4/pdfplumber-0.11.6.tar.gz", hash = "sha256:d0f419e031641d9eac70dc18c60e1fc3ca2ec28cce7e149644923c030a0003ff", size = 115611 }
|
|
3989
3935
|
wheels = [
|
|
3990
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
3936
|
+
{ url = "https://files.pythonhosted.org/packages/e6/c4/d2e09fbc937d1f76baae34e526662cc718e23a904321bf4a40282d190033/pdfplumber-0.11.6-py3-none-any.whl", hash = "sha256:169fc2b8dbf328c81a4e9bab30af0c304ad4b472fd7816616eabdb79dc5d9d17", size = 60233 },
|
|
3991
3937
|
]
|
|
3992
3938
|
|
|
3993
3939
|
[[package]]
|
|
@@ -4052,24 +3998,24 @@ wheels = [
|
|
|
4052
3998
|
|
|
4053
3999
|
[[package]]
|
|
4054
4000
|
name = "platformdirs"
|
|
4055
|
-
version = "4.3.
|
|
4001
|
+
version = "4.3.7"
|
|
4056
4002
|
source = { registry = "https://pypi.org/simple" }
|
|
4057
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
4003
|
+
sdist = { url = "https://files.pythonhosted.org/packages/b6/2d/7d512a3913d60623e7eb945c6d1b4f0bddf1d0b7ada5225274c87e5b53d1/platformdirs-4.3.7.tar.gz", hash = "sha256:eb437d586b6a0986388f0d6f74aa0cde27b48d0e3d66843640bfb6bdcdb6e351", size = 21291 }
|
|
4058
4004
|
wheels = [
|
|
4059
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4005
|
+
{ url = "https://files.pythonhosted.org/packages/6d/45/59578566b3275b8fd9157885918fcd0c4d74162928a5310926887b856a51/platformdirs-4.3.7-py3-none-any.whl", hash = "sha256:a03875334331946f13c549dbd8f4bac7a13a50a895a0eb1e8c6a8ace80d40a94", size = 18499 },
|
|
4060
4006
|
]
|
|
4061
4007
|
|
|
4062
4008
|
[[package]]
|
|
4063
4009
|
name = "plotly"
|
|
4064
|
-
version = "6.0.
|
|
4010
|
+
version = "6.0.1"
|
|
4065
4011
|
source = { registry = "https://pypi.org/simple" }
|
|
4066
4012
|
dependencies = [
|
|
4067
4013
|
{ name = "narwhals" },
|
|
4068
4014
|
{ name = "packaging" },
|
|
4069
4015
|
]
|
|
4070
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
4016
|
+
sdist = { url = "https://files.pythonhosted.org/packages/c7/cc/e41b5f697ae403f0b50e47b7af2e36642a193085f553bf7cc1169362873a/plotly-6.0.1.tar.gz", hash = "sha256:dd8400229872b6e3c964b099be699f8d00c489a974f2cfccfad5e8240873366b", size = 8094643 }
|
|
4071
4017
|
wheels = [
|
|
4072
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4018
|
+
{ url = "https://files.pythonhosted.org/packages/02/65/ad2bc85f7377f5cfba5d4466d5474423a3fb7f6a97fd807c06f92dd3e721/plotly-6.0.1-py3-none-any.whl", hash = "sha256:4714db20fea57a435692c548a4eb4fae454f7daddf15f8d8ba7e1045681d7768", size = 14805757 },
|
|
4073
4019
|
]
|
|
4074
4020
|
|
|
4075
4021
|
[[package]]
|
|
@@ -4083,7 +4029,7 @@ wheels = [
|
|
|
4083
4029
|
|
|
4084
4030
|
[[package]]
|
|
4085
4031
|
name = "posthog"
|
|
4086
|
-
version = "3.
|
|
4032
|
+
version = "3.23.0"
|
|
4087
4033
|
source = { registry = "https://pypi.org/simple" }
|
|
4088
4034
|
dependencies = [
|
|
4089
4035
|
{ name = "backoff" },
|
|
@@ -4093,9 +4039,9 @@ dependencies = [
|
|
|
4093
4039
|
{ name = "requests" },
|
|
4094
4040
|
{ name = "six" },
|
|
4095
4041
|
]
|
|
4096
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
4042
|
+
sdist = { url = "https://files.pythonhosted.org/packages/5a/dd/30f7d2e992f80fcaedc5b99761e006bbb0b954813243542c480b9576b4be/posthog-3.23.0.tar.gz", hash = "sha256:1ac0305ab6c54a80c4a82c137231f17616bef007bbf474d1a529cda032d808eb", size = 72077 }
|
|
4097
4043
|
wheels = [
|
|
4098
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4044
|
+
{ url = "https://files.pythonhosted.org/packages/17/1e/aa457f5b15c9a018434dd71567c4a8f09c1701607a1d4daf5f01d6eccb7a/posthog-3.23.0-py2.py3-none-any.whl", hash = "sha256:2b07d06670170ac2e21465dffa8d356722834cc877ab34e583da6e525c1037df", size = 84976 },
|
|
4099
4045
|
]
|
|
4100
4046
|
|
|
4101
4047
|
[[package]]
|
|
@@ -4121,59 +4067,59 @@ wheels = [
|
|
|
4121
4067
|
|
|
4122
4068
|
[[package]]
|
|
4123
4069
|
name = "propcache"
|
|
4124
|
-
version = "0.3.
|
|
4070
|
+
version = "0.3.1"
|
|
4125
4071
|
source = { registry = "https://pypi.org/simple" }
|
|
4126
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
4127
|
-
wheels = [
|
|
4128
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4129
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4130
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4131
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4132
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4133
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4134
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4135
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4136
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4137
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4138
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4139
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4140
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4141
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4142
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4143
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4144
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4145
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4146
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4147
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4148
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4149
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4150
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4151
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4152
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4153
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4154
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4155
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4156
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4157
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4158
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4159
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4160
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4161
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4162
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4163
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4164
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4165
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4166
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4167
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4168
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4169
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4170
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4171
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4172
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4173
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4174
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4175
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4176
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4072
|
+
sdist = { url = "https://files.pythonhosted.org/packages/07/c8/fdc6686a986feae3541ea23dcaa661bd93972d3940460646c6bb96e21c40/propcache-0.3.1.tar.gz", hash = "sha256:40d980c33765359098837527e18eddefc9a24cea5b45e078a7f3bb5b032c6ecf", size = 43651 }
|
|
4073
|
+
wheels = [
|
|
4074
|
+
{ url = "https://files.pythonhosted.org/packages/20/56/e27c136101addf877c8291dbda1b3b86ae848f3837ce758510a0d806c92f/propcache-0.3.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:f27785888d2fdd918bc36de8b8739f2d6c791399552333721b58193f68ea3e98", size = 80224 },
|
|
4075
|
+
{ url = "https://files.pythonhosted.org/packages/63/bd/88e98836544c4f04db97eefd23b037c2002fa173dd2772301c61cd3085f9/propcache-0.3.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d4e89cde74154c7b5957f87a355bb9c8ec929c167b59c83d90654ea36aeb6180", size = 46491 },
|
|
4076
|
+
{ url = "https://files.pythonhosted.org/packages/15/43/0b8eb2a55753c4a574fc0899885da504b521068d3b08ca56774cad0bea2b/propcache-0.3.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:730178f476ef03d3d4d255f0c9fa186cb1d13fd33ffe89d39f2cda4da90ceb71", size = 45927 },
|
|
4077
|
+
{ url = "https://files.pythonhosted.org/packages/ad/6c/d01f9dfbbdc613305e0a831016844987a1fb4861dd221cd4c69b1216b43f/propcache-0.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:967a8eec513dbe08330f10137eacb427b2ca52118769e82ebcfcab0fba92a649", size = 206135 },
|
|
4078
|
+
{ url = "https://files.pythonhosted.org/packages/9a/8a/e6e1c77394088f4cfdace4a91a7328e398ebed745d59c2f6764135c5342d/propcache-0.3.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5b9145c35cc87313b5fd480144f8078716007656093d23059e8993d3a8fa730f", size = 220517 },
|
|
4079
|
+
{ url = "https://files.pythonhosted.org/packages/19/3b/6c44fa59d6418f4239d5db8b1ece757351e85d6f3ca126dfe37d427020c8/propcache-0.3.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9e64e948ab41411958670f1093c0a57acfdc3bee5cf5b935671bbd5313bcf229", size = 218952 },
|
|
4080
|
+
{ url = "https://files.pythonhosted.org/packages/7c/e4/4aeb95a1cd085e0558ab0de95abfc5187329616193a1012a6c4c930e9f7a/propcache-0.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:319fa8765bfd6a265e5fa661547556da381e53274bc05094fc9ea50da51bfd46", size = 206593 },
|
|
4081
|
+
{ url = "https://files.pythonhosted.org/packages/da/6a/29fa75de1cbbb302f1e1d684009b969976ca603ee162282ae702287b6621/propcache-0.3.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c66d8ccbc902ad548312b96ed8d5d266d0d2c6d006fd0f66323e9d8f2dd49be7", size = 196745 },
|
|
4082
|
+
{ url = "https://files.pythonhosted.org/packages/19/7e/2237dad1dbffdd2162de470599fa1a1d55df493b16b71e5d25a0ac1c1543/propcache-0.3.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:2d219b0dbabe75e15e581fc1ae796109b07c8ba7d25b9ae8d650da582bed01b0", size = 203369 },
|
|
4083
|
+
{ url = "https://files.pythonhosted.org/packages/a4/bc/a82c5878eb3afb5c88da86e2cf06e1fe78b7875b26198dbb70fe50a010dc/propcache-0.3.1-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:cd6a55f65241c551eb53f8cf4d2f4af33512c39da5d9777694e9d9c60872f519", size = 198723 },
|
|
4084
|
+
{ url = "https://files.pythonhosted.org/packages/17/76/9632254479c55516f51644ddbf747a45f813031af5adcb8db91c0b824375/propcache-0.3.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:9979643ffc69b799d50d3a7b72b5164a2e97e117009d7af6dfdd2ab906cb72cd", size = 200751 },
|
|
4085
|
+
{ url = "https://files.pythonhosted.org/packages/3e/c3/a90b773cf639bd01d12a9e20c95be0ae978a5a8abe6d2d343900ae76cd71/propcache-0.3.1-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:4cf9e93a81979f1424f1a3d155213dc928f1069d697e4353edb8a5eba67c6259", size = 210730 },
|
|
4086
|
+
{ url = "https://files.pythonhosted.org/packages/ed/ec/ad5a952cdb9d65c351f88db7c46957edd3d65ffeee72a2f18bd6341433e0/propcache-0.3.1-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:2fce1df66915909ff6c824bbb5eb403d2d15f98f1518e583074671a30fe0c21e", size = 213499 },
|
|
4087
|
+
{ url = "https://files.pythonhosted.org/packages/83/c0/ea5133dda43e298cd2010ec05c2821b391e10980e64ee72c0a76cdbb813a/propcache-0.3.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:4d0dfdd9a2ebc77b869a0b04423591ea8823f791293b527dc1bb896c1d6f1136", size = 207132 },
|
|
4088
|
+
{ url = "https://files.pythonhosted.org/packages/79/dd/71aae9dec59333064cfdd7eb31a63fa09f64181b979802a67a90b2abfcba/propcache-0.3.1-cp310-cp310-win32.whl", hash = "sha256:1f6cc0ad7b4560e5637eb2c994e97b4fa41ba8226069c9277eb5ea7101845b42", size = 40952 },
|
|
4089
|
+
{ url = "https://files.pythonhosted.org/packages/31/0a/49ff7e5056c17dfba62cbdcbb90a29daffd199c52f8e65e5cb09d5f53a57/propcache-0.3.1-cp310-cp310-win_amd64.whl", hash = "sha256:47ef24aa6511e388e9894ec16f0fbf3313a53ee68402bc428744a367ec55b833", size = 45163 },
|
|
4090
|
+
{ url = "https://files.pythonhosted.org/packages/90/0f/5a5319ee83bd651f75311fcb0c492c21322a7fc8f788e4eef23f44243427/propcache-0.3.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:7f30241577d2fef2602113b70ef7231bf4c69a97e04693bde08ddab913ba0ce5", size = 80243 },
|
|
4091
|
+
{ url = "https://files.pythonhosted.org/packages/ce/84/3db5537e0879942783e2256616ff15d870a11d7ac26541336fe1b673c818/propcache-0.3.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:43593c6772aa12abc3af7784bff4a41ffa921608dd38b77cf1dfd7f5c4e71371", size = 46503 },
|
|
4092
|
+
{ url = "https://files.pythonhosted.org/packages/e2/c8/b649ed972433c3f0d827d7f0cf9ea47162f4ef8f4fe98c5f3641a0bc63ff/propcache-0.3.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:a75801768bbe65499495660b777e018cbe90c7980f07f8aa57d6be79ea6f71da", size = 45934 },
|
|
4093
|
+
{ url = "https://files.pythonhosted.org/packages/59/f9/4c0a5cf6974c2c43b1a6810c40d889769cc8f84cea676cbe1e62766a45f8/propcache-0.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f6f1324db48f001c2ca26a25fa25af60711e09b9aaf4b28488602776f4f9a744", size = 233633 },
|
|
4094
|
+
{ url = "https://files.pythonhosted.org/packages/e7/64/66f2f4d1b4f0007c6e9078bd95b609b633d3957fe6dd23eac33ebde4b584/propcache-0.3.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5cdb0f3e1eb6dfc9965d19734d8f9c481b294b5274337a8cb5cb01b462dcb7e0", size = 241124 },
|
|
4095
|
+
{ url = "https://files.pythonhosted.org/packages/aa/bf/7b8c9fd097d511638fa9b6af3d986adbdf567598a567b46338c925144c1b/propcache-0.3.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1eb34d90aac9bfbced9a58b266f8946cb5935869ff01b164573a7634d39fbcb5", size = 240283 },
|
|
4096
|
+
{ url = "https://files.pythonhosted.org/packages/fa/c9/e85aeeeaae83358e2a1ef32d6ff50a483a5d5248bc38510d030a6f4e2816/propcache-0.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f35c7070eeec2cdaac6fd3fe245226ed2a6292d3ee8c938e5bb645b434c5f256", size = 232498 },
|
|
4097
|
+
{ url = "https://files.pythonhosted.org/packages/8e/66/acb88e1f30ef5536d785c283af2e62931cb934a56a3ecf39105887aa8905/propcache-0.3.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b23c11c2c9e6d4e7300c92e022046ad09b91fd00e36e83c44483df4afa990073", size = 221486 },
|
|
4098
|
+
{ url = "https://files.pythonhosted.org/packages/f5/f9/233ddb05ffdcaee4448508ee1d70aa7deff21bb41469ccdfcc339f871427/propcache-0.3.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:3e19ea4ea0bf46179f8a3652ac1426e6dcbaf577ce4b4f65be581e237340420d", size = 222675 },
|
|
4099
|
+
{ url = "https://files.pythonhosted.org/packages/98/b8/eb977e28138f9e22a5a789daf608d36e05ed93093ef12a12441030da800a/propcache-0.3.1-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:bd39c92e4c8f6cbf5f08257d6360123af72af9f4da75a690bef50da77362d25f", size = 215727 },
|
|
4100
|
+
{ url = "https://files.pythonhosted.org/packages/89/2d/5f52d9c579f67b8ee1edd9ec073c91b23cc5b7ff7951a1e449e04ed8fdf3/propcache-0.3.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:b0313e8b923b3814d1c4a524c93dfecea5f39fa95601f6a9b1ac96cd66f89ea0", size = 217878 },
|
|
4101
|
+
{ url = "https://files.pythonhosted.org/packages/7a/fd/5283e5ed8a82b00c7a989b99bb6ea173db1ad750bf0bf8dff08d3f4a4e28/propcache-0.3.1-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:e861ad82892408487be144906a368ddbe2dc6297074ade2d892341b35c59844a", size = 230558 },
|
|
4102
|
+
{ url = "https://files.pythonhosted.org/packages/90/38/ab17d75938ef7ac87332c588857422ae126b1c76253f0f5b1242032923ca/propcache-0.3.1-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:61014615c1274df8da5991a1e5da85a3ccb00c2d4701ac6f3383afd3ca47ab0a", size = 233754 },
|
|
4103
|
+
{ url = "https://files.pythonhosted.org/packages/06/5d/3b921b9c60659ae464137508d3b4c2b3f52f592ceb1964aa2533b32fcf0b/propcache-0.3.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:71ebe3fe42656a2328ab08933d420df5f3ab121772eef78f2dc63624157f0ed9", size = 226088 },
|
|
4104
|
+
{ url = "https://files.pythonhosted.org/packages/54/6e/30a11f4417d9266b5a464ac5a8c5164ddc9dd153dfa77bf57918165eb4ae/propcache-0.3.1-cp311-cp311-win32.whl", hash = "sha256:58aa11f4ca8b60113d4b8e32d37e7e78bd8af4d1a5b5cb4979ed856a45e62005", size = 40859 },
|
|
4105
|
+
{ url = "https://files.pythonhosted.org/packages/1d/3a/8a68dd867da9ca2ee9dfd361093e9cb08cb0f37e5ddb2276f1b5177d7731/propcache-0.3.1-cp311-cp311-win_amd64.whl", hash = "sha256:9532ea0b26a401264b1365146c440a6d78269ed41f83f23818d4b79497aeabe7", size = 45153 },
|
|
4106
|
+
{ url = "https://files.pythonhosted.org/packages/41/aa/ca78d9be314d1e15ff517b992bebbed3bdfef5b8919e85bf4940e57b6137/propcache-0.3.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:f78eb8422acc93d7b69964012ad7048764bb45a54ba7a39bb9e146c72ea29723", size = 80430 },
|
|
4107
|
+
{ url = "https://files.pythonhosted.org/packages/1a/d8/f0c17c44d1cda0ad1979af2e593ea290defdde9eaeb89b08abbe02a5e8e1/propcache-0.3.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:89498dd49c2f9a026ee057965cdf8192e5ae070ce7d7a7bd4b66a8e257d0c976", size = 46637 },
|
|
4108
|
+
{ url = "https://files.pythonhosted.org/packages/ae/bd/c1e37265910752e6e5e8a4c1605d0129e5b7933c3dc3cf1b9b48ed83b364/propcache-0.3.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:09400e98545c998d57d10035ff623266927cb784d13dd2b31fd33b8a5316b85b", size = 46123 },
|
|
4109
|
+
{ url = "https://files.pythonhosted.org/packages/d4/b0/911eda0865f90c0c7e9f0415d40a5bf681204da5fd7ca089361a64c16b28/propcache-0.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aa8efd8c5adc5a2c9d3b952815ff8f7710cefdcaf5f2c36d26aff51aeca2f12f", size = 243031 },
|
|
4110
|
+
{ url = "https://files.pythonhosted.org/packages/0a/06/0da53397c76a74271621807265b6eb61fb011451b1ddebf43213df763669/propcache-0.3.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c2fe5c910f6007e716a06d269608d307b4f36e7babee5f36533722660e8c4a70", size = 249100 },
|
|
4111
|
+
{ url = "https://files.pythonhosted.org/packages/f1/eb/13090e05bf6b963fc1653cdc922133ced467cb4b8dab53158db5a37aa21e/propcache-0.3.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a0ab8cf8cdd2194f8ff979a43ab43049b1df0b37aa64ab7eca04ac14429baeb7", size = 250170 },
|
|
4112
|
+
{ url = "https://files.pythonhosted.org/packages/3b/4c/f72c9e1022b3b043ec7dc475a0f405d4c3e10b9b1d378a7330fecf0652da/propcache-0.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:563f9d8c03ad645597b8d010ef4e9eab359faeb11a0a2ac9f7b4bc8c28ebef25", size = 245000 },
|
|
4113
|
+
{ url = "https://files.pythonhosted.org/packages/e8/fd/970ca0e22acc829f1adf5de3724085e778c1ad8a75bec010049502cb3a86/propcache-0.3.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fb6e0faf8cb6b4beea5d6ed7b5a578254c6d7df54c36ccd3d8b3eb00d6770277", size = 230262 },
|
|
4114
|
+
{ url = "https://files.pythonhosted.org/packages/c4/42/817289120c6b9194a44f6c3e6b2c3277c5b70bbad39e7df648f177cc3634/propcache-0.3.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:1c5c7ab7f2bb3f573d1cb921993006ba2d39e8621019dffb1c5bc94cdbae81e8", size = 236772 },
|
|
4115
|
+
{ url = "https://files.pythonhosted.org/packages/7c/9c/3b3942b302badd589ad6b672da3ca7b660a6c2f505cafd058133ddc73918/propcache-0.3.1-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:050b571b2e96ec942898f8eb46ea4bfbb19bd5502424747e83badc2d4a99a44e", size = 231133 },
|
|
4116
|
+
{ url = "https://files.pythonhosted.org/packages/98/a1/75f6355f9ad039108ff000dfc2e19962c8dea0430da9a1428e7975cf24b2/propcache-0.3.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:e1c4d24b804b3a87e9350f79e2371a705a188d292fd310e663483af6ee6718ee", size = 230741 },
|
|
4117
|
+
{ url = "https://files.pythonhosted.org/packages/67/0c/3e82563af77d1f8731132166da69fdfd95e71210e31f18edce08a1eb11ea/propcache-0.3.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:e4fe2a6d5ce975c117a6bb1e8ccda772d1e7029c1cca1acd209f91d30fa72815", size = 244047 },
|
|
4118
|
+
{ url = "https://files.pythonhosted.org/packages/f7/50/9fb7cca01532a08c4d5186d7bb2da6c4c587825c0ae134b89b47c7d62628/propcache-0.3.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:feccd282de1f6322f56f6845bf1207a537227812f0a9bf5571df52bb418d79d5", size = 246467 },
|
|
4119
|
+
{ url = "https://files.pythonhosted.org/packages/a9/02/ccbcf3e1c604c16cc525309161d57412c23cf2351523aedbb280eb7c9094/propcache-0.3.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ec314cde7314d2dd0510c6787326bbffcbdc317ecee6b7401ce218b3099075a7", size = 241022 },
|
|
4120
|
+
{ url = "https://files.pythonhosted.org/packages/db/19/e777227545e09ca1e77a6e21274ae9ec45de0f589f0ce3eca2a41f366220/propcache-0.3.1-cp312-cp312-win32.whl", hash = "sha256:7d2d5a0028d920738372630870e7d9644ce437142197f8c827194fca404bf03b", size = 40647 },
|
|
4121
|
+
{ url = "https://files.pythonhosted.org/packages/24/bb/3b1b01da5dd04c77a204c84e538ff11f624e31431cfde7201d9110b092b1/propcache-0.3.1-cp312-cp312-win_amd64.whl", hash = "sha256:88c423efef9d7a59dae0614eaed718449c09a5ac79a5f224a8b9664d603f04a3", size = 44784 },
|
|
4122
|
+
{ url = "https://files.pythonhosted.org/packages/b8/d3/c3cb8f1d6ae3b37f83e1de806713a9b3642c5895f0215a62e1a4bd6e5e34/propcache-0.3.1-py3-none-any.whl", hash = "sha256:9a8ecf38de50a7f518c21568c80f985e776397b902f1ce0b01f799aba1608b40", size = 12376 },
|
|
4177
4123
|
]
|
|
4178
4124
|
|
|
4179
4125
|
[[package]]
|
|
@@ -4190,16 +4136,16 @@ wheels = [
|
|
|
4190
4136
|
|
|
4191
4137
|
[[package]]
|
|
4192
4138
|
name = "protobuf"
|
|
4193
|
-
version = "5.29.
|
|
4139
|
+
version = "5.29.4"
|
|
4194
4140
|
source = { registry = "https://pypi.org/simple" }
|
|
4195
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
4141
|
+
sdist = { url = "https://files.pythonhosted.org/packages/17/7d/b9dca7365f0e2c4fa7c193ff795427cfa6290147e5185ab11ece280a18e7/protobuf-5.29.4.tar.gz", hash = "sha256:4f1dfcd7997b31ef8f53ec82781ff434a28bf71d9102ddde14d076adcfc78c99", size = 424902 }
|
|
4196
4142
|
wheels = [
|
|
4197
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4198
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4199
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4200
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4201
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4202
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4143
|
+
{ url = "https://files.pythonhosted.org/packages/9a/b2/043a1a1a20edd134563699b0e91862726a0dc9146c090743b6c44d798e75/protobuf-5.29.4-cp310-abi3-win32.whl", hash = "sha256:13eb236f8eb9ec34e63fc8b1d6efd2777d062fa6aaa68268fb67cf77f6839ad7", size = 422709 },
|
|
4144
|
+
{ url = "https://files.pythonhosted.org/packages/79/fc/2474b59570daa818de6124c0a15741ee3e5d6302e9d6ce0bdfd12e98119f/protobuf-5.29.4-cp310-abi3-win_amd64.whl", hash = "sha256:bcefcdf3976233f8a502d265eb65ea740c989bacc6c30a58290ed0e519eb4b8d", size = 434506 },
|
|
4145
|
+
{ url = "https://files.pythonhosted.org/packages/46/de/7c126bbb06aa0f8a7b38aaf8bd746c514d70e6a2a3f6dd460b3b7aad7aae/protobuf-5.29.4-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:307ecba1d852ec237e9ba668e087326a67564ef83e45a0189a772ede9e854dd0", size = 417826 },
|
|
4146
|
+
{ url = "https://files.pythonhosted.org/packages/a2/b5/bade14ae31ba871a139aa45e7a8183d869efe87c34a4850c87b936963261/protobuf-5.29.4-cp38-abi3-manylinux2014_aarch64.whl", hash = "sha256:aec4962f9ea93c431d5714ed1be1c93f13e1a8618e70035ba2b0564d9e633f2e", size = 319574 },
|
|
4147
|
+
{ url = "https://files.pythonhosted.org/packages/46/88/b01ed2291aae68b708f7d334288ad5fb3e7aa769a9c309c91a0d55cb91b0/protobuf-5.29.4-cp38-abi3-manylinux2014_x86_64.whl", hash = "sha256:d7d3f7d1d5a66ed4942d4fefb12ac4b14a29028b209d4bfb25c68ae172059922", size = 319672 },
|
|
4148
|
+
{ url = "https://files.pythonhosted.org/packages/12/fb/a586e0c973c95502e054ac5f81f88394f24ccc7982dac19c515acd9e2c93/protobuf-5.29.4-py3-none-any.whl", hash = "sha256:3fde11b505e1597f71b875ef2fc52062b6a9740e5f7c8997ce878b6009145862", size = 172551 },
|
|
4203
4149
|
]
|
|
4204
4150
|
|
|
4205
4151
|
[[package]]
|
|
@@ -4275,14 +4221,14 @@ wheels = [
|
|
|
4275
4221
|
|
|
4276
4222
|
[[package]]
|
|
4277
4223
|
name = "pyasn1-modules"
|
|
4278
|
-
version = "0.4.
|
|
4224
|
+
version = "0.4.2"
|
|
4279
4225
|
source = { registry = "https://pypi.org/simple" }
|
|
4280
4226
|
dependencies = [
|
|
4281
4227
|
{ name = "pyasn1" },
|
|
4282
4228
|
]
|
|
4283
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
4229
|
+
sdist = { url = "https://files.pythonhosted.org/packages/e9/e6/78ebbb10a8c8e4b61a59249394a4a594c1a7af95593dc933a349c8d00964/pyasn1_modules-0.4.2.tar.gz", hash = "sha256:677091de870a80aae844b1ca6134f54652fa2c8c5a52aa396440ac3106e941e6", size = 307892 }
|
|
4284
4230
|
wheels = [
|
|
4285
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4231
|
+
{ url = "https://files.pythonhosted.org/packages/47/8d/d529b5d697919ba8c11ad626e835d4039be708a35b0d22de83a269a6682c/pyasn1_modules-0.4.2-py3-none-any.whl", hash = "sha256:29253a9207ce32b64c3ac6600edc75368f98473906e8fd1043bd6b5b1de2c14a", size = 181259 },
|
|
4286
4232
|
]
|
|
4287
4233
|
|
|
4288
4234
|
[[package]]
|
|
@@ -4422,11 +4368,11 @@ wheels = [
|
|
|
4422
4368
|
|
|
4423
4369
|
[[package]]
|
|
4424
4370
|
name = "pyparsing"
|
|
4425
|
-
version = "3.2.
|
|
4371
|
+
version = "3.2.3"
|
|
4426
4372
|
source = { registry = "https://pypi.org/simple" }
|
|
4427
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
4373
|
+
sdist = { url = "https://files.pythonhosted.org/packages/bb/22/f1129e69d94ffff626bdb5c835506b3a5b4f3d070f17ea295e12c2c6f60f/pyparsing-3.2.3.tar.gz", hash = "sha256:b9c13f1ab8b3b542f72e28f634bad4de758ab3ce4546e4301970ad6fa77c38be", size = 1088608 }
|
|
4428
4374
|
wheels = [
|
|
4429
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4375
|
+
{ url = "https://files.pythonhosted.org/packages/05/e7/df2285f3d08fee213f2d041540fa4fc9ca6c2d44cf36d3a035bf2a8d2bcc/pyparsing-3.2.3-py3-none-any.whl", hash = "sha256:a749938e02d6fd0b59b356ca504a24982314bb090c383e3cf201c95ef7e2bfcf", size = 111120 },
|
|
4430
4376
|
]
|
|
4431
4377
|
|
|
4432
4378
|
[[package]]
|
|
@@ -4492,14 +4438,14 @@ wheels = [
|
|
|
4492
4438
|
|
|
4493
4439
|
[[package]]
|
|
4494
4440
|
name = "pytest-asyncio"
|
|
4495
|
-
version = "0.
|
|
4441
|
+
version = "0.26.0"
|
|
4496
4442
|
source = { registry = "https://pypi.org/simple" }
|
|
4497
4443
|
dependencies = [
|
|
4498
4444
|
{ name = "pytest" },
|
|
4499
4445
|
]
|
|
4500
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
4446
|
+
sdist = { url = "https://files.pythonhosted.org/packages/8e/c4/453c52c659521066969523e87d85d54139bbd17b78f09532fb8eb8cdb58e/pytest_asyncio-0.26.0.tar.gz", hash = "sha256:c4df2a697648241ff39e7f0e4a73050b03f123f760673956cf0d72a4990e312f", size = 54156 }
|
|
4501
4447
|
wheels = [
|
|
4502
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4448
|
+
{ url = "https://files.pythonhosted.org/packages/20/7f/338843f449ace853647ace35870874f69a764d251872ed1b4de9f234822c/pytest_asyncio-0.26.0-py3-none-any.whl", hash = "sha256:7b51ed894f4fbea1340262bdae5135797ebbe21d8638978e35d31c6d19f72fb0", size = 19694 },
|
|
4503
4449
|
]
|
|
4504
4450
|
|
|
4505
4451
|
[[package]]
|
|
@@ -4516,11 +4462,11 @@ wheels = [
|
|
|
4516
4462
|
|
|
4517
4463
|
[[package]]
|
|
4518
4464
|
name = "python-dotenv"
|
|
4519
|
-
version = "1.0
|
|
4465
|
+
version = "1.1.0"
|
|
4520
4466
|
source = { registry = "https://pypi.org/simple" }
|
|
4521
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
4467
|
+
sdist = { url = "https://files.pythonhosted.org/packages/88/2c/7bb1416c5620485aa793f2de31d3df393d3686aa8a8506d11e10e13c5baf/python_dotenv-1.1.0.tar.gz", hash = "sha256:41f90bc6f5f177fb41f53e87666db362025010eb28f60a01c9143bfa33a2b2d5", size = 39920 }
|
|
4522
4468
|
wheels = [
|
|
4523
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4469
|
+
{ url = "https://files.pythonhosted.org/packages/1e/18/98a99ad95133c6a6e2005fe89faedf294a748bd5dc803008059409ac9b1e/python_dotenv-1.1.0-py3-none-any.whl", hash = "sha256:d7c01d9e2293916c18baf562d95698754b0dbbb5e74d457c45d4f6561fb9d55d", size = 20256 },
|
|
4524
4470
|
]
|
|
4525
4471
|
|
|
4526
4472
|
[[package]]
|
|
@@ -4534,11 +4480,11 @@ wheels = [
|
|
|
4534
4480
|
|
|
4535
4481
|
[[package]]
|
|
4536
4482
|
name = "pytz"
|
|
4537
|
-
version = "2025.
|
|
4483
|
+
version = "2025.2"
|
|
4538
4484
|
source = { registry = "https://pypi.org/simple" }
|
|
4539
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
4485
|
+
sdist = { url = "https://files.pythonhosted.org/packages/f8/bf/abbd3cdfb8fbc7fb3d4d38d320f2441b1e7cbe29be4f23797b4a2b5d8aac/pytz-2025.2.tar.gz", hash = "sha256:360b9e3dbb49a209c21ad61809c7fb453643e048b38924c765813546746e81c3", size = 320884 }
|
|
4540
4486
|
wheels = [
|
|
4541
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4487
|
+
{ url = "https://files.pythonhosted.org/packages/81/c4/34e93fe5f5429d7570ec1fa436f1986fb1f00c3e0f43a589fe2bbcd22c3f/pytz-2025.2-py2.py3-none-any.whl", hash = "sha256:5ddf76296dd8c44c26eb8f4b6f35488f3ccbf6fbbd7adee0b7262d43f0ec2f00", size = 509225 },
|
|
4542
4488
|
]
|
|
4543
4489
|
|
|
4544
4490
|
[[package]]
|
|
@@ -4558,18 +4504,18 @@ wheels = [
|
|
|
4558
4504
|
|
|
4559
4505
|
[[package]]
|
|
4560
4506
|
name = "pywin32"
|
|
4561
|
-
version = "
|
|
4507
|
+
version = "310"
|
|
4562
4508
|
source = { registry = "https://pypi.org/simple" }
|
|
4563
4509
|
wheels = [
|
|
4564
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4565
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4566
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4567
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4568
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4569
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4570
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4571
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4572
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4510
|
+
{ url = "https://files.pythonhosted.org/packages/95/da/a5f38fffbba2fb99aa4aa905480ac4b8e83ca486659ac8c95bce47fb5276/pywin32-310-cp310-cp310-win32.whl", hash = "sha256:6dd97011efc8bf51d6793a82292419eba2c71cf8e7250cfac03bba284454abc1", size = 8848240 },
|
|
4511
|
+
{ url = "https://files.pythonhosted.org/packages/aa/fe/d873a773324fa565619ba555a82c9dabd677301720f3660a731a5d07e49a/pywin32-310-cp310-cp310-win_amd64.whl", hash = "sha256:c3e78706e4229b915a0821941a84e7ef420bf2b77e08c9dae3c76fd03fd2ae3d", size = 9601854 },
|
|
4512
|
+
{ url = "https://files.pythonhosted.org/packages/3c/84/1a8e3d7a15490d28a5d816efa229ecb4999cdc51a7c30dd8914f669093b8/pywin32-310-cp310-cp310-win_arm64.whl", hash = "sha256:33babed0cf0c92a6f94cc6cc13546ab24ee13e3e800e61ed87609ab91e4c8213", size = 8522963 },
|
|
4513
|
+
{ url = "https://files.pythonhosted.org/packages/f7/b1/68aa2986129fb1011dabbe95f0136f44509afaf072b12b8f815905a39f33/pywin32-310-cp311-cp311-win32.whl", hash = "sha256:1e765f9564e83011a63321bb9d27ec456a0ed90d3732c4b2e312b855365ed8bd", size = 8784284 },
|
|
4514
|
+
{ url = "https://files.pythonhosted.org/packages/b3/bd/d1592635992dd8db5bb8ace0551bc3a769de1ac8850200cfa517e72739fb/pywin32-310-cp311-cp311-win_amd64.whl", hash = "sha256:126298077a9d7c95c53823934f000599f66ec9296b09167810eb24875f32689c", size = 9520748 },
|
|
4515
|
+
{ url = "https://files.pythonhosted.org/packages/90/b1/ac8b1ffce6603849eb45a91cf126c0fa5431f186c2e768bf56889c46f51c/pywin32-310-cp311-cp311-win_arm64.whl", hash = "sha256:19ec5fc9b1d51c4350be7bb00760ffce46e6c95eaf2f0b2f1150657b1a43c582", size = 8455941 },
|
|
4516
|
+
{ url = "https://files.pythonhosted.org/packages/6b/ec/4fdbe47932f671d6e348474ea35ed94227fb5df56a7c30cbbb42cd396ed0/pywin32-310-cp312-cp312-win32.whl", hash = "sha256:8a75a5cc3893e83a108c05d82198880704c44bbaee4d06e442e471d3c9ea4f3d", size = 8796239 },
|
|
4517
|
+
{ url = "https://files.pythonhosted.org/packages/e3/e5/b0627f8bb84e06991bea89ad8153a9e50ace40b2e1195d68e9dff6b03d0f/pywin32-310-cp312-cp312-win_amd64.whl", hash = "sha256:bf5c397c9a9a19a6f62f3fb821fbf36cac08f03770056711f765ec1503972060", size = 9503839 },
|
|
4518
|
+
{ url = "https://files.pythonhosted.org/packages/1f/32/9ccf53748df72301a89713936645a664ec001abd35ecc8578beda593d37d/pywin32-310-cp312-cp312-win_arm64.whl", hash = "sha256:2349cc906eae872d0663d4d6290d13b90621eaf78964bb1578632ff20e152966", size = 8459470 },
|
|
4573
4519
|
]
|
|
4574
4520
|
|
|
4575
4521
|
[[package]]
|
|
@@ -4847,61 +4793,72 @@ wheels = [
|
|
|
4847
4793
|
|
|
4848
4794
|
[[package]]
|
|
4849
4795
|
name = "rpds-py"
|
|
4850
|
-
version = "0.
|
|
4851
|
-
source = { registry = "https://pypi.org/simple" }
|
|
4852
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
4853
|
-
wheels = [
|
|
4854
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4855
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4856
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4857
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4858
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4859
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4860
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4861
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4862
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4863
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4864
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4865
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4866
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4867
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4868
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4869
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4870
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4871
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4872
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4873
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4874
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4875
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4876
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4877
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4878
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4879
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4880
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4881
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4882
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4883
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4884
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4885
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4886
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4887
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4888
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4889
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4890
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4891
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4892
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4893
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4894
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4895
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4896
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4897
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4898
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4899
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4900
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4901
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4902
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4903
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4904
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4796
|
+
version = "0.24.0"
|
|
4797
|
+
source = { registry = "https://pypi.org/simple" }
|
|
4798
|
+
sdist = { url = "https://files.pythonhosted.org/packages/0b/b3/52b213298a0ba7097c7ea96bee95e1947aa84cc816d48cebb539770cdf41/rpds_py-0.24.0.tar.gz", hash = "sha256:772cc1b2cd963e7e17e6cc55fe0371fb9c704d63e44cacec7b9b7f523b78919e", size = 26863 }
|
|
4799
|
+
wheels = [
|
|
4800
|
+
{ url = "https://files.pythonhosted.org/packages/6a/21/cbc43b220c9deb536b07fbd598c97d463bbb7afb788851891252fc920742/rpds_py-0.24.0-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:006f4342fe729a368c6df36578d7a348c7c716be1da0a1a0f86e3021f8e98724", size = 377531 },
|
|
4801
|
+
{ url = "https://files.pythonhosted.org/packages/42/15/cc4b09ef160483e49c3aab3b56f3d375eadf19c87c48718fb0147e86a446/rpds_py-0.24.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2d53747da70a4e4b17f559569d5f9506420966083a31c5fbd84e764461c4444b", size = 362273 },
|
|
4802
|
+
{ url = "https://files.pythonhosted.org/packages/8c/a2/67718a188a88dbd5138d959bed6efe1cc7413a4caa8283bd46477ed0d1ad/rpds_py-0.24.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e8acd55bd5b071156bae57b555f5d33697998752673b9de554dd82f5b5352727", size = 388111 },
|
|
4803
|
+
{ url = "https://files.pythonhosted.org/packages/e5/e6/cbf1d3163405ad5f4a1a6d23f80245f2204d0c743b18525f34982dec7f4d/rpds_py-0.24.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7e80d375134ddb04231a53800503752093dbb65dad8dabacce2c84cccc78e964", size = 394447 },
|
|
4804
|
+
{ url = "https://files.pythonhosted.org/packages/21/bb/4fe220ccc8a549b38b9e9cec66212dc3385a82a5ee9e37b54411cce4c898/rpds_py-0.24.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:60748789e028d2a46fc1c70750454f83c6bdd0d05db50f5ae83e2db500b34da5", size = 448028 },
|
|
4805
|
+
{ url = "https://files.pythonhosted.org/packages/a5/41/d2d6e0fd774818c4cadb94185d30cf3768de1c2a9e0143fc8bc6ce59389e/rpds_py-0.24.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6e1daf5bf6c2be39654beae83ee6b9a12347cb5aced9a29eecf12a2d25fff664", size = 447410 },
|
|
4806
|
+
{ url = "https://files.pythonhosted.org/packages/a7/a7/6d04d438f53d8bb2356bb000bea9cf5c96a9315e405b577117e344cc7404/rpds_py-0.24.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1b221c2457d92a1fb3c97bee9095c874144d196f47c038462ae6e4a14436f7bc", size = 389531 },
|
|
4807
|
+
{ url = "https://files.pythonhosted.org/packages/23/be/72e6df39bd7ca5a66799762bf54d8e702483fdad246585af96723109d486/rpds_py-0.24.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:66420986c9afff67ef0c5d1e4cdc2d0e5262f53ad11e4f90e5e22448df485bf0", size = 420099 },
|
|
4808
|
+
{ url = "https://files.pythonhosted.org/packages/8c/c9/ca100cd4688ee0aa266197a5cb9f685231676dd7d573041ca53787b23f4e/rpds_py-0.24.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:43dba99f00f1d37b2a0265a259592d05fcc8e7c19d140fe51c6e6f16faabeb1f", size = 564950 },
|
|
4809
|
+
{ url = "https://files.pythonhosted.org/packages/05/98/908cd95686d33b3ac8ac2e582d7ae38e2c3aa2c0377bf1f5663bafd1ffb2/rpds_py-0.24.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:a88c0d17d039333a41d9bf4616bd062f0bd7aa0edeb6cafe00a2fc2a804e944f", size = 591778 },
|
|
4810
|
+
{ url = "https://files.pythonhosted.org/packages/7b/ac/e143726f1dd3215efcb974b50b03bd08a8a1556b404a0a7872af6d197e57/rpds_py-0.24.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cc31e13ce212e14a539d430428cd365e74f8b2d534f8bc22dd4c9c55b277b875", size = 560421 },
|
|
4811
|
+
{ url = "https://files.pythonhosted.org/packages/60/28/add1c1d2fcd5aa354f7225d036d4492261759a22d449cff14841ef36a514/rpds_py-0.24.0-cp310-cp310-win32.whl", hash = "sha256:fc2c1e1b00f88317d9de6b2c2b39b012ebbfe35fe5e7bef980fd2a91f6100a07", size = 222089 },
|
|
4812
|
+
{ url = "https://files.pythonhosted.org/packages/b0/ac/81f8066c6de44c507caca488ba336ae30d35d57f61fe10578824d1a70196/rpds_py-0.24.0-cp310-cp310-win_amd64.whl", hash = "sha256:c0145295ca415668420ad142ee42189f78d27af806fcf1f32a18e51d47dd2052", size = 234622 },
|
|
4813
|
+
{ url = "https://files.pythonhosted.org/packages/80/e6/c1458bbfb257448fdb2528071f1f4e19e26798ed5ef6d47d7aab0cb69661/rpds_py-0.24.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:2d3ee4615df36ab8eb16c2507b11e764dcc11fd350bbf4da16d09cda11fcedef", size = 377679 },
|
|
4814
|
+
{ url = "https://files.pythonhosted.org/packages/dd/26/ea4181ef78f58b2c167548c6a833d7dc22408e5b3b181bda9dda440bb92d/rpds_py-0.24.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:e13ae74a8a3a0c2f22f450f773e35f893484fcfacb00bb4344a7e0f4f48e1f97", size = 362571 },
|
|
4815
|
+
{ url = "https://files.pythonhosted.org/packages/56/fa/1ec54dd492c64c280a2249a047fc3369e2789dc474eac20445ebfc72934b/rpds_py-0.24.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cf86f72d705fc2ef776bb7dd9e5fbba79d7e1f3e258bf9377f8204ad0fc1c51e", size = 388012 },
|
|
4816
|
+
{ url = "https://files.pythonhosted.org/packages/3a/be/bad8b0e0f7e58ef4973bb75e91c472a7d51da1977ed43b09989264bf065c/rpds_py-0.24.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c43583ea8517ed2e780a345dd9960896afc1327e8cf3ac8239c167530397440d", size = 394730 },
|
|
4817
|
+
{ url = "https://files.pythonhosted.org/packages/35/56/ab417fc90c21826df048fc16e55316ac40876e4b790104ececcbce813d8f/rpds_py-0.24.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4cd031e63bc5f05bdcda120646a0d32f6d729486d0067f09d79c8db5368f4586", size = 448264 },
|
|
4818
|
+
{ url = "https://files.pythonhosted.org/packages/b6/75/4c63862d5c05408589196c8440a35a14ea4ae337fa70ded1f03638373f06/rpds_py-0.24.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:34d90ad8c045df9a4259c47d2e16a3f21fdb396665c94520dbfe8766e62187a4", size = 446813 },
|
|
4819
|
+
{ url = "https://files.pythonhosted.org/packages/e7/0c/91cf17dffa9a38835869797a9f041056091ebba6a53963d3641207e3d467/rpds_py-0.24.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e838bf2bb0b91ee67bf2b889a1a841e5ecac06dd7a2b1ef4e6151e2ce155c7ae", size = 389438 },
|
|
4820
|
+
{ url = "https://files.pythonhosted.org/packages/1b/b0/60e6c72727c978276e02851819f3986bc40668f115be72c1bc4d922c950f/rpds_py-0.24.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:04ecf5c1ff4d589987b4d9882872f80ba13da7d42427234fce8f22efb43133bc", size = 420416 },
|
|
4821
|
+
{ url = "https://files.pythonhosted.org/packages/a1/d7/f46f85b9f863fb59fd3c534b5c874c48bee86b19e93423b9da8784605415/rpds_py-0.24.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:630d3d8ea77eabd6cbcd2ea712e1c5cecb5b558d39547ac988351195db433f6c", size = 565236 },
|
|
4822
|
+
{ url = "https://files.pythonhosted.org/packages/2a/d1/1467620ded6dd70afc45ec822cdf8dfe7139537780d1f3905de143deb6fd/rpds_py-0.24.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:ebcb786b9ff30b994d5969213a8430cbb984cdd7ea9fd6df06663194bd3c450c", size = 592016 },
|
|
4823
|
+
{ url = "https://files.pythonhosted.org/packages/5d/13/fb1ded2e6adfaa0c0833106c42feb290973f665300f4facd5bf5d7891d9c/rpds_py-0.24.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:174e46569968ddbbeb8a806d9922f17cd2b524aa753b468f35b97ff9c19cb718", size = 560123 },
|
|
4824
|
+
{ url = "https://files.pythonhosted.org/packages/1e/df/09fc1857ac7cc2eb16465a7199c314cbce7edde53c8ef21d615410d7335b/rpds_py-0.24.0-cp311-cp311-win32.whl", hash = "sha256:5ef877fa3bbfb40b388a5ae1cb00636a624690dcb9a29a65267054c9ea86d88a", size = 222256 },
|
|
4825
|
+
{ url = "https://files.pythonhosted.org/packages/ff/25/939b40bc4d54bf910e5ee60fb5af99262c92458f4948239e8c06b0b750e7/rpds_py-0.24.0-cp311-cp311-win_amd64.whl", hash = "sha256:e274f62cbd274359eff63e5c7e7274c913e8e09620f6a57aae66744b3df046d6", size = 234718 },
|
|
4826
|
+
{ url = "https://files.pythonhosted.org/packages/1a/e0/1c55f4a3be5f1ca1a4fd1f3ff1504a1478c1ed48d84de24574c4fa87e921/rpds_py-0.24.0-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:d8551e733626afec514b5d15befabea0dd70a343a9f23322860c4f16a9430205", size = 366945 },
|
|
4827
|
+
{ url = "https://files.pythonhosted.org/packages/39/1b/a3501574fbf29118164314dbc800d568b8c1c7b3258b505360e8abb3902c/rpds_py-0.24.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0e374c0ce0ca82e5b67cd61fb964077d40ec177dd2c4eda67dba130de09085c7", size = 351935 },
|
|
4828
|
+
{ url = "https://files.pythonhosted.org/packages/dc/47/77d3d71c55f6a374edde29f1aca0b2e547325ed00a9da820cabbc9497d2b/rpds_py-0.24.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d69d003296df4840bd445a5d15fa5b6ff6ac40496f956a221c4d1f6f7b4bc4d9", size = 390817 },
|
|
4829
|
+
{ url = "https://files.pythonhosted.org/packages/4e/ec/1e336ee27484379e19c7f9cc170f4217c608aee406d3ae3a2e45336bff36/rpds_py-0.24.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8212ff58ac6dfde49946bea57474a386cca3f7706fc72c25b772b9ca4af6b79e", size = 401983 },
|
|
4830
|
+
{ url = "https://files.pythonhosted.org/packages/07/f8/39b65cbc272c635eaea6d393c2ad1ccc81c39eca2db6723a0ca4b2108fce/rpds_py-0.24.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:528927e63a70b4d5f3f5ccc1fa988a35456eb5d15f804d276709c33fc2f19bda", size = 451719 },
|
|
4831
|
+
{ url = "https://files.pythonhosted.org/packages/32/05/05c2b27dd9c30432f31738afed0300659cb9415db0ff7429b05dfb09bbde/rpds_py-0.24.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a824d2c7a703ba6daaca848f9c3d5cb93af0505be505de70e7e66829affd676e", size = 442546 },
|
|
4832
|
+
{ url = "https://files.pythonhosted.org/packages/7d/e0/19383c8b5d509bd741532a47821c3e96acf4543d0832beba41b4434bcc49/rpds_py-0.24.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:44d51febb7a114293ffd56c6cf4736cb31cd68c0fddd6aa303ed09ea5a48e029", size = 393695 },
|
|
4833
|
+
{ url = "https://files.pythonhosted.org/packages/9d/15/39f14e96d94981d0275715ae8ea564772237f3fa89bc3c21e24de934f2c7/rpds_py-0.24.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:3fab5f4a2c64a8fb64fc13b3d139848817a64d467dd6ed60dcdd6b479e7febc9", size = 427218 },
|
|
4834
|
+
{ url = "https://files.pythonhosted.org/packages/22/b9/12da7124905a680f690da7a9de6f11de770b5e359f5649972f7181c8bf51/rpds_py-0.24.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:9be4f99bee42ac107870c61dfdb294d912bf81c3c6d45538aad7aecab468b6b7", size = 568062 },
|
|
4835
|
+
{ url = "https://files.pythonhosted.org/packages/88/17/75229017a2143d915f6f803721a6d721eca24f2659c5718a538afa276b4f/rpds_py-0.24.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:564c96b6076a98215af52f55efa90d8419cc2ef45d99e314fddefe816bc24f91", size = 596262 },
|
|
4836
|
+
{ url = "https://files.pythonhosted.org/packages/aa/64/8e8a1d8bd1b6b638d6acb6d41ab2cec7f2067a5b8b4c9175703875159a7c/rpds_py-0.24.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:75a810b7664c17f24bf2ffd7f92416c00ec84b49bb68e6a0d93e542406336b56", size = 564306 },
|
|
4837
|
+
{ url = "https://files.pythonhosted.org/packages/68/1c/a7eac8d8ed8cb234a9b1064647824c387753343c3fab6ed7c83481ed0be7/rpds_py-0.24.0-cp312-cp312-win32.whl", hash = "sha256:f6016bd950be4dcd047b7475fdf55fb1e1f59fc7403f387be0e8123e4a576d30", size = 224281 },
|
|
4838
|
+
{ url = "https://files.pythonhosted.org/packages/bb/46/b8b5424d1d21f2f2f3f2d468660085318d4f74a8df8289e3dd6ad224d488/rpds_py-0.24.0-cp312-cp312-win_amd64.whl", hash = "sha256:998c01b8e71cf051c28f5d6f1187abbdf5cf45fc0efce5da6c06447cba997034", size = 239719 },
|
|
4839
|
+
{ url = "https://files.pythonhosted.org/packages/99/48/11dae46d0c7f7e156ca0971a83f89c510af0316cd5d42c771b7cef945f0c/rpds_py-0.24.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:619ca56a5468f933d940e1bf431c6f4e13bef8e688698b067ae68eb4f9b30e3a", size = 378224 },
|
|
4840
|
+
{ url = "https://files.pythonhosted.org/packages/33/18/e8398d255369e35d312942f3bb8ecaff013c44968904891be2ab63b3aa94/rpds_py-0.24.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:4b28e5122829181de1898c2c97f81c0b3246d49f585f22743a1246420bb8d399", size = 363252 },
|
|
4841
|
+
{ url = "https://files.pythonhosted.org/packages/17/39/dd73ba691f4df3e6834bf982de214086ac3359ab3ac035adfb30041570e3/rpds_py-0.24.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e8e5ab32cf9eb3647450bc74eb201b27c185d3857276162c101c0f8c6374e098", size = 388871 },
|
|
4842
|
+
{ url = "https://files.pythonhosted.org/packages/2f/2e/da0530b25cabd0feca2a759b899d2df325069a94281eeea8ac44c6cfeff7/rpds_py-0.24.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:208b3a70a98cf3710e97cabdc308a51cd4f28aa6e7bb11de3d56cd8b74bab98d", size = 394766 },
|
|
4843
|
+
{ url = "https://files.pythonhosted.org/packages/4c/ee/dd1c5040a431beb40fad4a5d7868acf343444b0bc43e627c71df2506538b/rpds_py-0.24.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bbc4362e06f950c62cad3d4abf1191021b2ffaf0b31ac230fbf0526453eee75e", size = 448712 },
|
|
4844
|
+
{ url = "https://files.pythonhosted.org/packages/f5/ec/6b93ffbb686be948e4d91ec76f4e6757f8551034b2a8176dd848103a1e34/rpds_py-0.24.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ebea2821cdb5f9fef44933617be76185b80150632736f3d76e54829ab4a3b4d1", size = 447150 },
|
|
4845
|
+
{ url = "https://files.pythonhosted.org/packages/55/d5/a1c23760adad85b432df074ced6f910dd28f222b8c60aeace5aeb9a6654e/rpds_py-0.24.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b9a4df06c35465ef4d81799999bba810c68d29972bf1c31db61bfdb81dd9d5bb", size = 390662 },
|
|
4846
|
+
{ url = "https://files.pythonhosted.org/packages/a5/f3/419cb1f9bfbd3a48c256528c156e00f3349e3edce5ad50cbc141e71f66a5/rpds_py-0.24.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d3aa13bdf38630da298f2e0d77aca967b200b8cc1473ea05248f6c5e9c9bdb44", size = 421351 },
|
|
4847
|
+
{ url = "https://files.pythonhosted.org/packages/98/8e/62d1a55078e5ede0b3b09f35e751fa35924a34a0d44d7c760743383cd54a/rpds_py-0.24.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:041f00419e1da7a03c46042453598479f45be3d787eb837af382bfc169c0db33", size = 566074 },
|
|
4848
|
+
{ url = "https://files.pythonhosted.org/packages/fc/69/b7d1003166d78685da032b3c4ff1599fa536a3cfe6e5ce2da87c9c431906/rpds_py-0.24.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:d8754d872a5dfc3c5bf9c0e059e8107451364a30d9fd50f1f1a85c4fb9481164", size = 592398 },
|
|
4849
|
+
{ url = "https://files.pythonhosted.org/packages/ea/a8/1c98bc99338c37faadd28dd667d336df7409d77b4da999506a0b6b1c0aa2/rpds_py-0.24.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:896c41007931217a343eff197c34513c154267636c8056fb409eafd494c3dcdc", size = 561114 },
|
|
4850
|
+
{ url = "https://files.pythonhosted.org/packages/2b/41/65c91443685a4c7b5f1dd271beadc4a3e063d57c3269221548dd9416e15c/rpds_py-0.24.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:92558d37d872e808944c3c96d0423b8604879a3d1c86fdad508d7ed91ea547d5", size = 235548 },
|
|
4851
|
+
{ url = "https://files.pythonhosted.org/packages/65/53/40bcc246a8354530d51a26d2b5b9afd1deacfb0d79e67295cc74df362f52/rpds_py-0.24.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl", hash = "sha256:f9e0057a509e096e47c87f753136c9b10d7a91842d8042c2ee6866899a717c0d", size = 378386 },
|
|
4852
|
+
{ url = "https://files.pythonhosted.org/packages/80/b0/5ea97dd2f53e3618560aa1f9674e896e63dff95a9b796879a201bc4c1f00/rpds_py-0.24.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:d6e109a454412ab82979c5b1b3aee0604eca4bbf9a02693bb9df027af2bfa91a", size = 363440 },
|
|
4853
|
+
{ url = "https://files.pythonhosted.org/packages/57/9d/259b6eada6f747cdd60c9a5eb3efab15f6704c182547149926c38e5bd0d5/rpds_py-0.24.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fc1c892b1ec1f8cbd5da8de287577b455e388d9c328ad592eabbdcb6fc93bee5", size = 388816 },
|
|
4854
|
+
{ url = "https://files.pythonhosted.org/packages/94/c1/faafc7183712f89f4b7620c3c15979ada13df137d35ef3011ae83e93b005/rpds_py-0.24.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9c39438c55983d48f4bb3487734d040e22dad200dab22c41e331cee145e7a50d", size = 395058 },
|
|
4855
|
+
{ url = "https://files.pythonhosted.org/packages/6c/96/d7fa9d2a7b7604a61da201cc0306a355006254942093779d7121c64700ce/rpds_py-0.24.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9d7e8ce990ae17dda686f7e82fd41a055c668e13ddcf058e7fb5e9da20b57793", size = 448692 },
|
|
4856
|
+
{ url = "https://files.pythonhosted.org/packages/96/37/a3146c6eebc65d6d8c96cc5ffdcdb6af2987412c789004213227fbe52467/rpds_py-0.24.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9ea7f4174d2e4194289cb0c4e172d83e79a6404297ff95f2875cf9ac9bced8ba", size = 446462 },
|
|
4857
|
+
{ url = "https://files.pythonhosted.org/packages/1f/13/6481dfd9ac7de43acdaaa416e3a7da40bc4bb8f5c6ca85e794100aa54596/rpds_py-0.24.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bb2954155bb8f63bb19d56d80e5e5320b61d71084617ed89efedb861a684baea", size = 390460 },
|
|
4858
|
+
{ url = "https://files.pythonhosted.org/packages/61/e1/37e36bce65e109543cc4ff8d23206908649023549604fa2e7fbeba5342f7/rpds_py-0.24.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:04f2b712a2206e13800a8136b07aaedc23af3facab84918e7aa89e4be0260032", size = 421609 },
|
|
4859
|
+
{ url = "https://files.pythonhosted.org/packages/20/dd/1f1a923d6cd798b8582176aca8a0784676f1a0449fb6f07fce6ac1cdbfb6/rpds_py-0.24.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:eda5c1e2a715a4cbbca2d6d304988460942551e4e5e3b7457b50943cd741626d", size = 565818 },
|
|
4860
|
+
{ url = "https://files.pythonhosted.org/packages/56/ec/d8da6df6a1eb3a418944a17b1cb38dd430b9e5a2e972eafd2b06f10c7c46/rpds_py-0.24.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl", hash = "sha256:9abc80fe8c1f87218db116016de575a7998ab1629078c90840e8d11ab423ee25", size = 592627 },
|
|
4861
|
+
{ url = "https://files.pythonhosted.org/packages/b3/14/c492b9c7d5dd133e13f211ddea6bb9870f99e4f73932f11aa00bc09a9be9/rpds_py-0.24.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:6a727fd083009bc83eb83d6950f0c32b3c94c8b80a9b667c87f4bd1274ca30ba", size = 560885 },
|
|
4905
4862
|
]
|
|
4906
4863
|
|
|
4907
4864
|
[[package]]
|
|
@@ -4918,27 +4875,27 @@ wheels = [
|
|
|
4918
4875
|
|
|
4919
4876
|
[[package]]
|
|
4920
4877
|
name = "ruff"
|
|
4921
|
-
version = "0.
|
|
4922
|
-
source = { registry = "https://pypi.org/simple" }
|
|
4923
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
4924
|
-
wheels = [
|
|
4925
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4926
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4927
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4928
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4929
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4930
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4931
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4932
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4933
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4934
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4935
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4936
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4937
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4938
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4939
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4940
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4941
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
4878
|
+
version = "0.11.2"
|
|
4879
|
+
source = { registry = "https://pypi.org/simple" }
|
|
4880
|
+
sdist = { url = "https://files.pythonhosted.org/packages/90/61/fb87430f040e4e577e784e325351186976516faef17d6fcd921fe28edfd7/ruff-0.11.2.tar.gz", hash = "sha256:ec47591497d5a1050175bdf4e1a4e6272cddff7da88a2ad595e1e326041d8d94", size = 3857511 }
|
|
4881
|
+
wheels = [
|
|
4882
|
+
{ url = "https://files.pythonhosted.org/packages/62/99/102578506f0f5fa29fd7e0df0a273864f79af044757aef73d1cae0afe6ad/ruff-0.11.2-py3-none-linux_armv6l.whl", hash = "sha256:c69e20ea49e973f3afec2c06376eb56045709f0212615c1adb0eda35e8a4e477", size = 10113146 },
|
|
4883
|
+
{ url = "https://files.pythonhosted.org/packages/74/ad/5cd4ba58ab602a579997a8494b96f10f316e874d7c435bcc1a92e6da1b12/ruff-0.11.2-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:2c5424cc1c4eb1d8ecabe6d4f1b70470b4f24a0c0171356290b1953ad8f0e272", size = 10867092 },
|
|
4884
|
+
{ url = "https://files.pythonhosted.org/packages/fc/3e/d3f13619e1d152c7b600a38c1a035e833e794c6625c9a6cea6f63dbf3af4/ruff-0.11.2-py3-none-macosx_11_0_arm64.whl", hash = "sha256:ecf20854cc73f42171eedb66f006a43d0a21bfb98a2523a809931cda569552d9", size = 10224082 },
|
|
4885
|
+
{ url = "https://files.pythonhosted.org/packages/90/06/f77b3d790d24a93f38e3806216f263974909888fd1e826717c3ec956bbcd/ruff-0.11.2-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0c543bf65d5d27240321604cee0633a70c6c25c9a2f2492efa9f6d4b8e4199bb", size = 10394818 },
|
|
4886
|
+
{ url = "https://files.pythonhosted.org/packages/99/7f/78aa431d3ddebfc2418cd95b786642557ba8b3cb578c075239da9ce97ff9/ruff-0.11.2-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:20967168cc21195db5830b9224be0e964cc9c8ecf3b5a9e3ce19876e8d3a96e3", size = 9952251 },
|
|
4887
|
+
{ url = "https://files.pythonhosted.org/packages/30/3e/f11186d1ddfaca438c3bbff73c6a2fdb5b60e6450cc466129c694b0ab7a2/ruff-0.11.2-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:955a9ce63483999d9f0b8f0b4a3ad669e53484232853054cc8b9d51ab4c5de74", size = 11563566 },
|
|
4888
|
+
{ url = "https://files.pythonhosted.org/packages/22/6c/6ca91befbc0a6539ee133d9a9ce60b1a354db12c3c5d11cfdbf77140f851/ruff-0.11.2-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:86b3a27c38b8fce73bcd262b0de32e9a6801b76d52cdb3ae4c914515f0cef608", size = 12208721 },
|
|
4889
|
+
{ url = "https://files.pythonhosted.org/packages/19/b0/24516a3b850d55b17c03fc399b681c6a549d06ce665915721dc5d6458a5c/ruff-0.11.2-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a3b66a03b248c9fcd9d64d445bafdf1589326bee6fc5c8e92d7562e58883e30f", size = 11662274 },
|
|
4890
|
+
{ url = "https://files.pythonhosted.org/packages/d7/65/76be06d28ecb7c6070280cef2bcb20c98fbf99ff60b1c57d2fb9b8771348/ruff-0.11.2-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0397c2672db015be5aa3d4dac54c69aa012429097ff219392c018e21f5085147", size = 13792284 },
|
|
4891
|
+
{ url = "https://files.pythonhosted.org/packages/ce/d2/4ceed7147e05852876f3b5f3fdc23f878ce2b7e0b90dd6e698bda3d20787/ruff-0.11.2-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:869bcf3f9abf6457fbe39b5a37333aa4eecc52a3b99c98827ccc371a8e5b6f1b", size = 11327861 },
|
|
4892
|
+
{ url = "https://files.pythonhosted.org/packages/c4/78/4935ecba13706fd60ebe0e3dc50371f2bdc3d9bc80e68adc32ff93914534/ruff-0.11.2-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:2a2b50ca35457ba785cd8c93ebbe529467594087b527a08d487cf0ee7b3087e9", size = 10276560 },
|
|
4893
|
+
{ url = "https://files.pythonhosted.org/packages/81/7f/1b2435c3f5245d410bb5dc80f13ec796454c21fbda12b77d7588d5cf4e29/ruff-0.11.2-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:7c69c74bf53ddcfbc22e6eb2f31211df7f65054bfc1f72288fc71e5f82db3eab", size = 9945091 },
|
|
4894
|
+
{ url = "https://files.pythonhosted.org/packages/39/c4/692284c07e6bf2b31d82bb8c32f8840f9d0627d92983edaac991a2b66c0a/ruff-0.11.2-py3-none-musllinux_1_2_i686.whl", hash = "sha256:6e8fb75e14560f7cf53b15bbc55baf5ecbe373dd5f3aab96ff7aa7777edd7630", size = 10977133 },
|
|
4895
|
+
{ url = "https://files.pythonhosted.org/packages/94/cf/8ab81cb7dd7a3b0a3960c2769825038f3adcd75faf46dd6376086df8b128/ruff-0.11.2-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:842a472d7b4d6f5924e9297aa38149e5dcb1e628773b70e6387ae2c97a63c58f", size = 11378514 },
|
|
4896
|
+
{ url = "https://files.pythonhosted.org/packages/d9/3a/a647fa4f316482dacf2fd68e8a386327a33d6eabd8eb2f9a0c3d291ec549/ruff-0.11.2-py3-none-win32.whl", hash = "sha256:aca01ccd0eb5eb7156b324cfaa088586f06a86d9e5314b0eb330cb48415097cc", size = 10319835 },
|
|
4897
|
+
{ url = "https://files.pythonhosted.org/packages/86/54/3c12d3af58012a5e2cd7ebdbe9983f4834af3f8cbea0e8a8c74fa1e23b2b/ruff-0.11.2-py3-none-win_amd64.whl", hash = "sha256:3170150172a8f994136c0c66f494edf199a0bbea7a409f649e4bc8f4d7084080", size = 11373713 },
|
|
4898
|
+
{ url = "https://files.pythonhosted.org/packages/d6/d4/dd813703af8a1e2ac33bf3feb27e8a5ad514c9f219df80c64d69807e7f71/ruff-0.11.2-py3-none-win_arm64.whl", hash = "sha256:52933095158ff328f4c77af3d74f0379e34fd52f175144cefc1b192e7ccd32b4", size = 10441990 },
|
|
4942
4899
|
]
|
|
4943
4900
|
|
|
4944
4901
|
[[package]]
|
|
@@ -5056,11 +5013,11 @@ wheels = [
|
|
|
5056
5013
|
|
|
5057
5014
|
[[package]]
|
|
5058
5015
|
name = "setuptools"
|
|
5059
|
-
version = "
|
|
5016
|
+
version = "78.1.0"
|
|
5060
5017
|
source = { registry = "https://pypi.org/simple" }
|
|
5061
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
5018
|
+
sdist = { url = "https://files.pythonhosted.org/packages/a9/5a/0db4da3bc908df06e5efae42b44e75c81dd52716e10192ff36d0c1c8e379/setuptools-78.1.0.tar.gz", hash = "sha256:18fd474d4a82a5f83dac888df697af65afa82dec7323d09c3e37d1f14288da54", size = 1367827 }
|
|
5062
5019
|
wheels = [
|
|
5063
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5020
|
+
{ url = "https://files.pythonhosted.org/packages/54/21/f43f0a1fa8b06b32812e0975981f4677d28e0f3271601dc88ac5a5b83220/setuptools-78.1.0-py3-none-any.whl", hash = "sha256:3e386e96793c8702ae83d17b853fb93d3e09ef82ec62722e61da5cd22376dcd8", size = 1256108 },
|
|
5064
5021
|
]
|
|
5065
5022
|
|
|
5066
5023
|
[[package]]
|
|
@@ -5139,39 +5096,39 @@ wheels = [
|
|
|
5139
5096
|
|
|
5140
5097
|
[[package]]
|
|
5141
5098
|
name = "sqlalchemy"
|
|
5142
|
-
version = "2.0.
|
|
5099
|
+
version = "2.0.40"
|
|
5143
5100
|
source = { registry = "https://pypi.org/simple" }
|
|
5144
5101
|
dependencies = [
|
|
5145
5102
|
{ 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'" },
|
|
5146
5103
|
{ name = "typing-extensions" },
|
|
5147
5104
|
]
|
|
5148
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
5149
|
-
wheels = [
|
|
5150
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5151
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5152
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5153
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5154
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5155
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5156
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5157
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5158
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5159
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5160
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5161
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5162
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5163
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5164
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5165
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5166
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5167
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5168
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5169
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5170
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5171
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5172
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5173
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5174
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5105
|
+
sdist = { url = "https://files.pythonhosted.org/packages/68/c3/3f2bfa5e4dcd9938405fe2fab5b6ab94a9248a4f9536ea2fd497da20525f/sqlalchemy-2.0.40.tar.gz", hash = "sha256:d827099289c64589418ebbcaead0145cd19f4e3e8a93919a0100247af245fa00", size = 9664299 }
|
|
5106
|
+
wheels = [
|
|
5107
|
+
{ url = "https://files.pythonhosted.org/packages/87/fa/8e8fd93684b04e65816be864bebf0000fe1602e5452d006f9acc5db14ce5/sqlalchemy-2.0.40-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:f1ea21bef99c703f44444ad29c2c1b6bd55d202750b6de8e06a955380f4725d7", size = 2112843 },
|
|
5108
|
+
{ url = "https://files.pythonhosted.org/packages/ba/87/06992f78a9ce545dfd1fea3dd99262bec5221f6f9d2d2066c3e94662529f/sqlalchemy-2.0.40-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:afe63b208153f3a7a2d1a5b9df452b0673082588933e54e7c8aac457cf35e758", size = 2104032 },
|
|
5109
|
+
{ url = "https://files.pythonhosted.org/packages/92/ee/57dc77282e8be22d686bd4681825299aa1069bbe090564868ea270ed5214/sqlalchemy-2.0.40-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a8aae085ea549a1eddbc9298b113cffb75e514eadbb542133dd2b99b5fb3b6af", size = 3086406 },
|
|
5110
|
+
{ url = "https://files.pythonhosted.org/packages/94/3f/ceb9ab214b2e42d2e74a9209b3a2f2f073504eee16cddd2df81feeb67c2f/sqlalchemy-2.0.40-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5ea9181284754d37db15156eb7be09c86e16e50fbe77610e9e7bee09291771a1", size = 3094652 },
|
|
5111
|
+
{ url = "https://files.pythonhosted.org/packages/00/0a/3401232a5b6d91a2df16c1dc39c6504c54575744c2faafa1e5a50de96621/sqlalchemy-2.0.40-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:5434223b795be5c5ef8244e5ac98056e290d3a99bdcc539b916e282b160dda00", size = 3050503 },
|
|
5112
|
+
{ url = "https://files.pythonhosted.org/packages/93/c2/ea7171415ab131397f71a2673645c2fe29ebe9a93063d458eb89e42bf051/sqlalchemy-2.0.40-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:15d08d5ef1b779af6a0909b97be6c1fd4298057504eb6461be88bd1696cb438e", size = 3076011 },
|
|
5113
|
+
{ url = "https://files.pythonhosted.org/packages/3d/ee/d8e229280d621bed8c51eebf1dd413aa09ca89e309b1fff40d881dd149af/sqlalchemy-2.0.40-cp310-cp310-win32.whl", hash = "sha256:cd2f75598ae70bcfca9117d9e51a3b06fe29edd972fdd7fd57cc97b4dbf3b08a", size = 2085136 },
|
|
5114
|
+
{ url = "https://files.pythonhosted.org/packages/60/7f/ea1086136bc648cd4713a1e01869f7fc31979d67b3a8f973f5d9ab8de7e1/sqlalchemy-2.0.40-cp310-cp310-win_amd64.whl", hash = "sha256:2cbafc8d39ff1abdfdda96435f38fab141892dc759a2165947d1a8fffa7ef596", size = 2109421 },
|
|
5115
|
+
{ url = "https://files.pythonhosted.org/packages/77/7e/55044a9ec48c3249bb38d5faae93f09579c35e862bb318ebd1ed7a1994a5/sqlalchemy-2.0.40-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:f6bacab7514de6146a1976bc56e1545bee247242fab030b89e5f70336fc0003e", size = 2114025 },
|
|
5116
|
+
{ url = "https://files.pythonhosted.org/packages/77/0f/dcf7bba95f847aec72f638750747b12d37914f71c8cc7c133cf326ab945c/sqlalchemy-2.0.40-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:5654d1ac34e922b6c5711631f2da497d3a7bffd6f9f87ac23b35feea56098011", size = 2104419 },
|
|
5117
|
+
{ url = "https://files.pythonhosted.org/packages/75/70/c86a5c20715e4fe903dde4c2fd44fc7e7a0d5fb52c1b954d98526f65a3ea/sqlalchemy-2.0.40-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:35904d63412db21088739510216e9349e335f142ce4a04b69e2528020ee19ed4", size = 3222720 },
|
|
5118
|
+
{ url = "https://files.pythonhosted.org/packages/12/cf/b891a8c1d0c27ce9163361664c2128c7a57de3f35000ea5202eb3a2917b7/sqlalchemy-2.0.40-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c7a80ed86d6aaacb8160a1caef6680d4ddd03c944d985aecee940d168c411d1", size = 3222682 },
|
|
5119
|
+
{ url = "https://files.pythonhosted.org/packages/15/3f/7709d8c8266953d945435a96b7f425ae4172a336963756b58e996fbef7f3/sqlalchemy-2.0.40-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:519624685a51525ddaa7d8ba8265a1540442a2ec71476f0e75241eb8263d6f51", size = 3159542 },
|
|
5120
|
+
{ url = "https://files.pythonhosted.org/packages/85/7e/717eaabaf0f80a0132dc2032ea8f745b7a0914451c984821a7c8737fb75a/sqlalchemy-2.0.40-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:2ee5f9999a5b0e9689bed96e60ee53c3384f1a05c2dd8068cc2e8361b0df5b7a", size = 3179864 },
|
|
5121
|
+
{ url = "https://files.pythonhosted.org/packages/e4/cc/03eb5dfcdb575cbecd2bd82487b9848f250a4b6ecfb4707e834b4ce4ec07/sqlalchemy-2.0.40-cp311-cp311-win32.whl", hash = "sha256:c0cae71e20e3c02c52f6b9e9722bca70e4a90a466d59477822739dc31ac18b4b", size = 2084675 },
|
|
5122
|
+
{ url = "https://files.pythonhosted.org/packages/9a/48/440946bf9dc4dc231f4f31ef0d316f7135bf41d4b86aaba0c0655150d370/sqlalchemy-2.0.40-cp311-cp311-win_amd64.whl", hash = "sha256:574aea2c54d8f1dd1699449f332c7d9b71c339e04ae50163a3eb5ce4c4325ee4", size = 2110099 },
|
|
5123
|
+
{ url = "https://files.pythonhosted.org/packages/92/06/552c1f92e880b57d8b92ce6619bd569b25cead492389b1d84904b55989d8/sqlalchemy-2.0.40-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:9d3b31d0a1c44b74d3ae27a3de422dfccd2b8f0b75e51ecb2faa2bf65ab1ba0d", size = 2112620 },
|
|
5124
|
+
{ url = "https://files.pythonhosted.org/packages/01/72/a5bc6e76c34cebc071f758161dbe1453de8815ae6e662393910d3be6d70d/sqlalchemy-2.0.40-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:37f7a0f506cf78c80450ed1e816978643d3969f99c4ac6b01104a6fe95c5490a", size = 2103004 },
|
|
5125
|
+
{ url = "https://files.pythonhosted.org/packages/bf/fd/0e96c8e6767618ed1a06e4d7a167fe13734c2f8113c4cb704443e6783038/sqlalchemy-2.0.40-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0bb933a650323e476a2e4fbef8997a10d0003d4da996aad3fd7873e962fdde4d", size = 3252440 },
|
|
5126
|
+
{ url = "https://files.pythonhosted.org/packages/cd/6a/eb82e45b15a64266a2917a6833b51a334ea3c1991728fd905bfccbf5cf63/sqlalchemy-2.0.40-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6959738971b4745eea16f818a2cd086fb35081383b078272c35ece2b07012716", size = 3263277 },
|
|
5127
|
+
{ url = "https://files.pythonhosted.org/packages/45/97/ebe41ab4530f50af99e3995ebd4e0204bf1b0dc0930f32250dde19c389fe/sqlalchemy-2.0.40-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:110179728e442dae85dd39591beb74072ae4ad55a44eda2acc6ec98ead80d5f2", size = 3198591 },
|
|
5128
|
+
{ url = "https://files.pythonhosted.org/packages/e6/1c/a569c1b2b2f5ac20ba6846a1321a2bf52e9a4061001f282bf1c5528dcd69/sqlalchemy-2.0.40-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:e8040680eaacdce4d635f12c55c714f3d4c7f57da2bc47a01229d115bd319191", size = 3225199 },
|
|
5129
|
+
{ url = "https://files.pythonhosted.org/packages/8f/91/87cc71a6b10065ca0209d19a4bb575378abda6085e72fa0b61ffb2201b84/sqlalchemy-2.0.40-cp312-cp312-win32.whl", hash = "sha256:650490653b110905c10adac69408380688cefc1f536a137d0d69aca1069dc1d1", size = 2082959 },
|
|
5130
|
+
{ url = "https://files.pythonhosted.org/packages/2a/9f/14c511cda174aa1ad9b0e42b64ff5a71db35d08b0d80dc044dae958921e5/sqlalchemy-2.0.40-cp312-cp312-win_amd64.whl", hash = "sha256:2be94d75ee06548d2fc591a3513422b873490efb124048f50556369a834853b0", size = 2108526 },
|
|
5131
|
+
{ url = "https://files.pythonhosted.org/packages/d1/7c/5fc8e802e7506fe8b55a03a2e1dab156eae205c91bee46305755e086d2e2/sqlalchemy-2.0.40-py3-none-any.whl", hash = "sha256:32587e2e1e359276957e6fe5dad089758bc042a971a8a09ae8ecf7a8fe23d07a", size = 1903894 },
|
|
5175
5132
|
]
|
|
5176
5133
|
|
|
5177
5134
|
[[package]]
|
|
@@ -5434,11 +5391,11 @@ wheels = [
|
|
|
5434
5391
|
|
|
5435
5392
|
[[package]]
|
|
5436
5393
|
name = "threadpoolctl"
|
|
5437
|
-
version = "3.
|
|
5394
|
+
version = "3.6.0"
|
|
5438
5395
|
source = { registry = "https://pypi.org/simple" }
|
|
5439
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
5396
|
+
sdist = { url = "https://files.pythonhosted.org/packages/b7/4d/08c89e34946fce2aec4fbb45c9016efd5f4d7f24af8e5d93296e935631d8/threadpoolctl-3.6.0.tar.gz", hash = "sha256:8ab8b4aa3491d812b623328249fab5302a68d2d71745c8a4c719a2fcaba9f44e", size = 21274 }
|
|
5440
5397
|
wheels = [
|
|
5441
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5398
|
+
{ url = "https://files.pythonhosted.org/packages/32/d5/f9a850d79b0851d1d4ef6456097579a9005b31fea68726a4ae5f2d82ddd9/threadpoolctl-3.6.0-py3-none-any.whl", hash = "sha256:43a0b8fd5a2928500110039e43a5eed8480b918967083ea48dc3ab9f13c4a7fb", size = 18638 },
|
|
5442
5399
|
]
|
|
5443
5400
|
|
|
5444
5401
|
[[package]]
|
|
@@ -5485,27 +5442,27 @@ wheels = [
|
|
|
5485
5442
|
|
|
5486
5443
|
[[package]]
|
|
5487
5444
|
name = "tokenizers"
|
|
5488
|
-
version = "0.21.
|
|
5445
|
+
version = "0.21.1"
|
|
5489
5446
|
source = { registry = "https://pypi.org/simple" }
|
|
5490
5447
|
dependencies = [
|
|
5491
5448
|
{ name = "huggingface-hub" },
|
|
5492
5449
|
]
|
|
5493
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
5450
|
+
sdist = { url = "https://files.pythonhosted.org/packages/92/76/5ac0c97f1117b91b7eb7323dcd61af80d72f790b4df71249a7850c195f30/tokenizers-0.21.1.tar.gz", hash = "sha256:a1bb04dc5b448985f86ecd4b05407f5a8d97cb2c0532199b2a302a604a0165ab", size = 343256 }
|
|
5494
5451
|
wheels = [
|
|
5495
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5496
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5497
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5498
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5499
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5500
|
-
{ url = "https://files.pythonhosted.org/packages/4d/
|
|
5501
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5502
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5503
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5504
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5505
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5506
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5507
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5508
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5452
|
+
{ url = "https://files.pythonhosted.org/packages/a5/1f/328aee25f9115bf04262e8b4e5a2050b7b7cf44b59c74e982db7270c7f30/tokenizers-0.21.1-cp39-abi3-macosx_10_12_x86_64.whl", hash = "sha256:e78e413e9e668ad790a29456e677d9d3aa50a9ad311a40905d6861ba7692cf41", size = 2780767 },
|
|
5453
|
+
{ url = "https://files.pythonhosted.org/packages/ae/1a/4526797f3719b0287853f12c5ad563a9be09d446c44ac784cdd7c50f76ab/tokenizers-0.21.1-cp39-abi3-macosx_11_0_arm64.whl", hash = "sha256:cd51cd0a91ecc801633829fcd1fda9cf8682ed3477c6243b9a095539de4aecf3", size = 2650555 },
|
|
5454
|
+
{ url = "https://files.pythonhosted.org/packages/4d/7a/a209b29f971a9fdc1da86f917fe4524564924db50d13f0724feed37b2a4d/tokenizers-0.21.1-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:28da6b72d4fb14ee200a1bd386ff74ade8992d7f725f2bde2c495a9a98cf4d9f", size = 2937541 },
|
|
5455
|
+
{ url = "https://files.pythonhosted.org/packages/3c/1e/b788b50ffc6191e0b1fc2b0d49df8cff16fe415302e5ceb89f619d12c5bc/tokenizers-0.21.1-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:34d8cfde551c9916cb92014e040806122295a6800914bab5865deb85623931cf", size = 2819058 },
|
|
5456
|
+
{ url = "https://files.pythonhosted.org/packages/36/aa/3626dfa09a0ecc5b57a8c58eeaeb7dd7ca9a37ad9dd681edab5acd55764c/tokenizers-0.21.1-cp39-abi3-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:aaa852d23e125b73d283c98f007e06d4595732104b65402f46e8ef24b588d9f8", size = 3133278 },
|
|
5457
|
+
{ url = "https://files.pythonhosted.org/packages/a4/4d/8fbc203838b3d26269f944a89459d94c858f5b3f9a9b6ee9728cdcf69161/tokenizers-0.21.1-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a21a15d5c8e603331b8a59548bbe113564136dc0f5ad8306dd5033459a226da0", size = 3144253 },
|
|
5458
|
+
{ url = "https://files.pythonhosted.org/packages/d8/1b/2bd062adeb7c7511b847b32e356024980c0ffcf35f28947792c2d8ad2288/tokenizers-0.21.1-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2fdbd4c067c60a0ac7eca14b6bd18a5bebace54eb757c706b47ea93204f7a37c", size = 3398225 },
|
|
5459
|
+
{ url = "https://files.pythonhosted.org/packages/8a/63/38be071b0c8e06840bc6046991636bcb30c27f6bb1e670f4f4bc87cf49cc/tokenizers-0.21.1-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2dd9a0061e403546f7377df940e866c3e678d7d4e9643d0461ea442b4f89e61a", size = 3038874 },
|
|
5460
|
+
{ url = "https://files.pythonhosted.org/packages/ec/83/afa94193c09246417c23a3c75a8a0a96bf44ab5630a3015538d0c316dd4b/tokenizers-0.21.1-cp39-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:db9484aeb2e200c43b915a1a0150ea885e35f357a5a8fabf7373af333dcc8dbf", size = 9014448 },
|
|
5461
|
+
{ url = "https://files.pythonhosted.org/packages/ae/b3/0e1a37d4f84c0f014d43701c11eb8072704f6efe8d8fc2dcdb79c47d76de/tokenizers-0.21.1-cp39-abi3-musllinux_1_2_armv7l.whl", hash = "sha256:ed248ab5279e601a30a4d67bdb897ecbe955a50f1e7bb62bd99f07dd11c2f5b6", size = 8937877 },
|
|
5462
|
+
{ url = "https://files.pythonhosted.org/packages/ac/33/ff08f50e6d615eb180a4a328c65907feb6ded0b8f990ec923969759dc379/tokenizers-0.21.1-cp39-abi3-musllinux_1_2_i686.whl", hash = "sha256:9ac78b12e541d4ce67b4dfd970e44c060a2147b9b2a21f509566d556a509c67d", size = 9186645 },
|
|
5463
|
+
{ url = "https://files.pythonhosted.org/packages/5f/aa/8ae85f69a9f6012c6f8011c6f4aa1c96154c816e9eea2e1b758601157833/tokenizers-0.21.1-cp39-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:e5a69c1a4496b81a5ee5d2c1f3f7fbdf95e90a0196101b0ee89ed9956b8a168f", size = 9384380 },
|
|
5464
|
+
{ url = "https://files.pythonhosted.org/packages/e8/5b/a5d98c89f747455e8b7a9504910c865d5e51da55e825a7ae641fb5ff0a58/tokenizers-0.21.1-cp39-abi3-win32.whl", hash = "sha256:1039a3a5734944e09de1d48761ade94e00d0fa760c0e0551151d4dd851ba63e3", size = 2239506 },
|
|
5465
|
+
{ url = "https://files.pythonhosted.org/packages/e6/b6/072a8e053ae600dcc2ac0da81a23548e3b523301a442a6ca900e92ac35be/tokenizers-0.21.1-cp39-abi3-win_amd64.whl", hash = "sha256:0f0dcbcc9f6e13e675a66d7a5f2f225a736745ce484c1a4e07476a89ccdad382", size = 2435481 },
|
|
5509
5466
|
]
|
|
5510
5467
|
|
|
5511
5468
|
[[package]]
|
|
@@ -5674,32 +5631,32 @@ wheels = [
|
|
|
5674
5631
|
|
|
5675
5632
|
[[package]]
|
|
5676
5633
|
name = "types-pyyaml"
|
|
5677
|
-
version = "6.0.12.
|
|
5634
|
+
version = "6.0.12.20250326"
|
|
5678
5635
|
source = { registry = "https://pypi.org/simple" }
|
|
5679
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
5636
|
+
sdist = { url = "https://files.pythonhosted.org/packages/9b/66/f58e386be67589d5c3c9c0a368600783ac1321b7e6ee213c8f51848dbf0c/types_pyyaml-6.0.12.20250326.tar.gz", hash = "sha256:5e2d86d8706697803f361ba0b8188eef2999e1c372cd4faee4ebb0844b8a4190", size = 17346 }
|
|
5680
5637
|
wheels = [
|
|
5681
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5638
|
+
{ url = "https://files.pythonhosted.org/packages/e9/1e/5609fea65117db83cc060342d4f6810f3cf1d3453b9f81bfe5f03f679633/types_pyyaml-6.0.12.20250326-py3-none-any.whl", hash = "sha256:961871cfbdc1ad8ae3cb6ae3f13007262bcfc168adc513119755a6e4d5d7ed65", size = 20398 },
|
|
5682
5639
|
]
|
|
5683
5640
|
|
|
5684
5641
|
[[package]]
|
|
5685
5642
|
name = "types-requests"
|
|
5686
|
-
version = "2.32.0.
|
|
5643
|
+
version = "2.32.0.20250328"
|
|
5687
5644
|
source = { registry = "https://pypi.org/simple" }
|
|
5688
5645
|
dependencies = [
|
|
5689
5646
|
{ name = "urllib3" },
|
|
5690
5647
|
]
|
|
5691
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
5648
|
+
sdist = { url = "https://files.pythonhosted.org/packages/00/7d/eb174f74e3f5634eaacb38031bbe467dfe2e545bc255e5c90096ec46bc46/types_requests-2.32.0.20250328.tar.gz", hash = "sha256:c9e67228ea103bd811c96984fac36ed2ae8da87a36a633964a21f199d60baf32", size = 22995 }
|
|
5692
5649
|
wheels = [
|
|
5693
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5650
|
+
{ url = "https://files.pythonhosted.org/packages/cc/15/3700282a9d4ea3b37044264d3e4d1b1f0095a4ebf860a99914fd544e3be3/types_requests-2.32.0.20250328-py3-none-any.whl", hash = "sha256:72ff80f84b15eb3aa7a8e2625fffb6a93f2ad5a0c20215fc1dcfa61117bcb2a2", size = 20663 },
|
|
5694
5651
|
]
|
|
5695
5652
|
|
|
5696
5653
|
[[package]]
|
|
5697
5654
|
name = "typing-extensions"
|
|
5698
|
-
version = "4.
|
|
5655
|
+
version = "4.13.0"
|
|
5699
5656
|
source = { registry = "https://pypi.org/simple" }
|
|
5700
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
5657
|
+
sdist = { url = "https://files.pythonhosted.org/packages/0e/3e/b00a62db91a83fff600de219b6ea9908e6918664899a2d85db222f4fbf19/typing_extensions-4.13.0.tar.gz", hash = "sha256:0a4ac55a5820789d87e297727d229866c9650f6521b64206413c4fbada24d95b", size = 106520 }
|
|
5701
5658
|
wheels = [
|
|
5702
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5659
|
+
{ url = "https://files.pythonhosted.org/packages/e0/86/39b65d676ec5732de17b7e3c476e45bb80ec64eb50737a8dce1a4178aba1/typing_extensions-4.13.0-py3-none-any.whl", hash = "sha256:c8dd92cc0d6425a97c18fbb9d1954e5ff92c1ca881a309c45f06ebc0b79058e5", size = 45683 },
|
|
5703
5660
|
]
|
|
5704
5661
|
|
|
5705
5662
|
[[package]]
|
|
@@ -5717,11 +5674,11 @@ wheels = [
|
|
|
5717
5674
|
|
|
5718
5675
|
[[package]]
|
|
5719
5676
|
name = "tzdata"
|
|
5720
|
-
version = "2025.
|
|
5677
|
+
version = "2025.2"
|
|
5721
5678
|
source = { registry = "https://pypi.org/simple" }
|
|
5722
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
5679
|
+
sdist = { url = "https://files.pythonhosted.org/packages/95/32/1a225d6164441be760d75c2c42e2780dc0873fe382da3e98a2e1e48361e5/tzdata-2025.2.tar.gz", hash = "sha256:b60a638fcc0daffadf82fe0f57e53d06bdec2f36c4df66280ae79bce6bd6f2b9", size = 196380 }
|
|
5723
5680
|
wheels = [
|
|
5724
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5681
|
+
{ url = "https://files.pythonhosted.org/packages/5c/23/c7abc0ca0a1526a0774eca151daeb8de62ec457e77262b66b359c3c7679e/tzdata-2025.2-py2.py3-none-any.whl", hash = "sha256:1a403fada01ff9221ca8044d701868fa132215d84beb92242d9acd2147f667a8", size = 347839 },
|
|
5725
5682
|
]
|
|
5726
5683
|
|
|
5727
5684
|
[[package]]
|
|
@@ -5744,27 +5701,27 @@ wheels = [
|
|
|
5744
5701
|
|
|
5745
5702
|
[[package]]
|
|
5746
5703
|
name = "uv"
|
|
5747
|
-
version = "0.6.
|
|
5748
|
-
source = { registry = "https://pypi.org/simple" }
|
|
5749
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
5750
|
-
wheels = [
|
|
5751
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5752
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5753
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5754
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5755
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5756
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5757
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5758
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5759
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5760
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5761
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5762
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5763
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5764
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5765
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5766
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5767
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5704
|
+
version = "0.6.11"
|
|
5705
|
+
source = { registry = "https://pypi.org/simple" }
|
|
5706
|
+
sdist = { url = "https://files.pythonhosted.org/packages/3c/bf/ad296aa142160459fa4f2f6100a2d3a672212c275346ed3a52b99a37ee65/uv-0.6.11.tar.gz", hash = "sha256:15356a53c4bca7f3d1cbf15321a864ed97b58da16c666261f5869115f87fcb04", size = 3119444 }
|
|
5707
|
+
wheels = [
|
|
5708
|
+
{ url = "https://files.pythonhosted.org/packages/9b/aa/e6d3d1c03587b42f9075657234468025f23e10ade68f8db4d7ab473c06bd/uv-0.6.11-py3-none-linux_armv6l.whl", hash = "sha256:5dcf349398a45778fda7677723270158e6c6596e9a49b85f8d7146c50823dd2d", size = 15952567 },
|
|
5709
|
+
{ url = "https://files.pythonhosted.org/packages/2e/89/31140f76b8a33a58c2fd2eb6f5d19101b28f82ec2d28333c8423f9c39af7/uv-0.6.11-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:1a861070b06e749c4e53e5e370df6f337ac567e017fe6c10d5b9a48cc6317033", size = 16111150 },
|
|
5710
|
+
{ url = "https://files.pythonhosted.org/packages/6a/c7/564d3398809645e3894c7f9d9baa32d3d700bc458f7d3f893d4589b34f31/uv-0.6.11-py3-none-macosx_11_0_arm64.whl", hash = "sha256:43af64b66ea1d26ce6c7836caaf61e5d44b3d2025cdee3fc1b8f33a5067cb6fa", size = 14916272 },
|
|
5711
|
+
{ url = "https://files.pythonhosted.org/packages/2f/cb/7bada86750024535592233c62f065da660e39022b0d209828b29e08fdc61/uv-0.6.11-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl", hash = "sha256:5d4125fddfd42c7691309cc16f2c7f3be6dbcdb61804596756188223f459a25e", size = 15369132 },
|
|
5712
|
+
{ url = "https://files.pythonhosted.org/packages/13/43/c2d9ce59291fc4cf8c44b04223962bce6130594902a0e842c66d54d2c712/uv-0.6.11-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:11e979e95a0cfed1b6de96d16f772aa027359642953fa329c7fcf88e7468170a", size = 15697050 },
|
|
5713
|
+
{ url = "https://files.pythonhosted.org/packages/ab/23/2248fa90948486d610e7c2a7b7950a80b44463122b740191790057733c67/uv-0.6.11-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:90ed73a0f4b4930fe310b9dc0c6348da37ec5c6026ddcd750868b516ad6abace", size = 16460088 },
|
|
5714
|
+
{ url = "https://files.pythonhosted.org/packages/d8/d0/e5c5b93f547bbe2c498632cefbc4da2c6c764c3d53a9fd3b2764dc7c751b/uv-0.6.11-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:94cf32e334329ec2db1704706c6ffb7b58edafb95a63499440327f1df2e0d30e", size = 17302986 },
|
|
5715
|
+
{ url = "https://files.pythonhosted.org/packages/e1/74/679b112e5e55a291a9135d396daf74630e28a799b4e111fd069476ed0961/uv-0.6.11-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7dc1df62322c03c2aee465e4f3f28ef7b3c6a948c2c79fde85651d8bccfc303c", size = 17063804 },
|
|
5716
|
+
{ url = "https://files.pythonhosted.org/packages/7f/97/b410f85e704773309241973401203926569f828fe8292b6ae25e7fe871c3/uv-0.6.11-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b8c43a85ca2aa429b13a5abde9abae2c58e0189ebc76d7d214b94e667f7d44e2", size = 21317299 },
|
|
5717
|
+
{ url = "https://files.pythonhosted.org/packages/ff/5d/b13b3a7dbff2f58e1b0fe0f2e8ae5a665e9fb938f66fdb25b99deacb9f5a/uv-0.6.11-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6f3c2adb80f0b93ad312daff7ebb1bf4b26456d7d35a1687827ed03f11d238d7", size = 16756723 },
|
|
5718
|
+
{ url = "https://files.pythonhosted.org/packages/d4/6e/4e5db3258f26eeaef864c8d91938656134a2c1f9b3096dbbe3582be6ab2f/uv-0.6.11-py3-none-manylinux_2_28_aarch64.whl", hash = "sha256:aed91b596d85277342c9252288d8e3e2b39111b28ac947caa1c540c903797496", size = 15632470 },
|
|
5719
|
+
{ url = "https://files.pythonhosted.org/packages/50/ad/0ab8e563e496a40007fcbed4e1bdcd31cbfd0cfc726a18a027590387d491/uv-0.6.11-py3-none-musllinux_1_1_armv7l.whl", hash = "sha256:c0a657830850e4ade1d2185ac66dad39015d0bd17c555c274eb00a73e0644fc4", size = 15653135 },
|
|
5720
|
+
{ url = "https://files.pythonhosted.org/packages/86/55/fc4da876cec3b579aa3c508bc74e4ab47fe13908f504fb4dea5aed7e2488/uv-0.6.11-py3-none-musllinux_1_1_i686.whl", hash = "sha256:6b4248984a30843fbff8eedc846bb64ba3cebb417378fd04bc29e7273eeca022", size = 16017597 },
|
|
5721
|
+
{ url = "https://files.pythonhosted.org/packages/4f/a5/fae7373d07c788602b1535b96fde763e67ecc30963ce43b398f4771619f5/uv-0.6.11-py3-none-musllinux_1_1_x86_64.whl", hash = "sha256:473dbe1d3fb53b08090f2c0f05ca46c85b1eadd134496338e167b2cc94e0aae2", size = 16870461 },
|
|
5722
|
+
{ url = "https://files.pythonhosted.org/packages/c1/6f/bbcb37f9dbd3f4ebe589cefbfb99798fdf75fa51a8da8c43b04ec5e2755b/uv-0.6.11-py3-none-win32.whl", hash = "sha256:0222e801be2e923787118f7cf2d0530dec016666ce07729215055aac24898899", size = 16075417 },
|
|
5723
|
+
{ url = "https://files.pythonhosted.org/packages/d4/48/74771422fefebaae40bb6db615a378576f7eb568ca1e60220a00da2c57c8/uv-0.6.11-py3-none-win_amd64.whl", hash = "sha256:b9aebfd86bb9f8e4ed9a7d89d65b8b84ccd6d98061e1ebbaa96f8e6ee4632f10", size = 17560705 },
|
|
5724
|
+
{ url = "https://files.pythonhosted.org/packages/42/b4/b1c6d7677ad78b0b08593c61da25cd2504cc2fd382a9a50a40d3e4245233/uv-0.6.11-py3-none-win_arm64.whl", hash = "sha256:baeb89b285f6a16bce390d81005b877c89600b0bfe1fc24895984efd117fa597", size = 16330881 },
|
|
5768
5725
|
]
|
|
5769
5726
|
|
|
5770
5727
|
[[package]]
|