Spaces:
Sleeping
Sleeping
Update
Browse files- README.md +1 -1
- app.py +6 -8
- pyproject.toml +3 -7
- requirements.txt +3 -3
- uv.lock +160 -160
README.md
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
---
|
2 |
-
title:
|
3 |
emoji: ⚡
|
4 |
colorFrom: red
|
5 |
colorTo: purple
|
|
|
1 |
---
|
2 |
+
title: JMMMU dataset viewer
|
3 |
emoji: ⚡
|
4 |
colorFrom: red
|
5 |
colorTo: purple
|
app.py
CHANGED
@@ -8,7 +8,7 @@ import gradio as gr
|
|
8 |
import PIL.Image
|
9 |
|
10 |
DESCRIPTION = """\
|
11 |
-
# [
|
12 |
"""
|
13 |
|
14 |
SHOW_ANSWER = os.getenv("SHOW_ANSWER", "false").lower() == "true"
|
@@ -18,8 +18,6 @@ SUBJECTS = [
|
|
18 |
"Accounting",
|
19 |
"Agriculture",
|
20 |
"Architecture_and_Engineering",
|
21 |
-
"Art",
|
22 |
-
"Art_Theory",
|
23 |
"Basic_Medical_Science",
|
24 |
"Biology",
|
25 |
"Chemistry",
|
@@ -31,9 +29,9 @@ SUBJECTS = [
|
|
31 |
"Electronics",
|
32 |
"Energy_and_Power",
|
33 |
"Finance",
|
34 |
-
"
|
35 |
-
"
|
36 |
-
"
|
37 |
"Manage",
|
38 |
"Marketing",
|
39 |
"Materials",
|
@@ -44,9 +42,9 @@ SUBJECTS = [
|
|
44 |
"Physics",
|
45 |
"Psychology",
|
46 |
"Public_Health",
|
47 |
-
"
|
48 |
]
|
49 |
-
ds = {subject: datasets.load_dataset("
|
50 |
|
51 |
|
52 |
def set_default_subject() -> str:
|
|
|
8 |
import PIL.Image
|
9 |
|
10 |
DESCRIPTION = """\
|
11 |
+
# [JMMMU](https://huggingface.co/datasets/JMMMU/JMMMU) dataset viewer
|
12 |
"""
|
13 |
|
14 |
SHOW_ANSWER = os.getenv("SHOW_ANSWER", "false").lower() == "true"
|
|
|
18 |
"Accounting",
|
19 |
"Agriculture",
|
20 |
"Architecture_and_Engineering",
|
|
|
|
|
21 |
"Basic_Medical_Science",
|
22 |
"Biology",
|
23 |
"Chemistry",
|
|
|
29 |
"Electronics",
|
30 |
"Energy_and_Power",
|
31 |
"Finance",
|
32 |
+
"Japanese_Art",
|
33 |
+
"Japanese_Heritage",
|
34 |
+
"Japanese_History",
|
35 |
"Manage",
|
36 |
"Marketing",
|
37 |
"Materials",
|
|
|
42 |
"Physics",
|
43 |
"Psychology",
|
44 |
"Public_Health",
|
45 |
+
"World_History",
|
46 |
]
|
47 |
+
ds = {subject: datasets.load_dataset("JMMMU/JMMMU", name=subject, split="test") for subject in SUBJECTS}
|
48 |
|
49 |
|
50 |
def set_default_subject() -> str:
|
pyproject.toml
CHANGED
@@ -1,11 +1,7 @@
|
|
1 |
[project]
|
2 |
-
name = "
|
3 |
version = "0.1.0"
|
4 |
-
description = "
|
5 |
readme = "README.md"
|
6 |
requires-python = ">=3.10"
|
7 |
-
dependencies = [
|
8 |
-
"datasets>=3.0.1",
|
9 |
-
"gradio>=4.44.1",
|
10 |
-
"hf-transfer>=0.1.8",
|
11 |
-
]
|
|
|
1 |
[project]
|
2 |
+
name = "jmmmu-dataset-viewer"
|
3 |
version = "0.1.0"
|
4 |
+
description = ""
|
5 |
readme = "README.md"
|
6 |
requires-python = ">=3.10"
|
7 |
+
dependencies = ["datasets>=3.0.1", "gradio>=4.44.1", "hf-transfer>=0.1.8"]
|
|
|
|
|
|
|
|
requirements.txt
CHANGED
@@ -37,7 +37,7 @@ contourpy==1.3.0
|
|
37 |
cycler==0.12.1
|
38 |
# via matplotlib
|
39 |
datasets==3.0.1
|
40 |
-
# via
|
41 |
dill==0.3.8
|
42 |
# via
|
43 |
# datasets
|
@@ -64,7 +64,7 @@ fsspec==2024.6.1
|
|
64 |
# gradio-client
|
65 |
# huggingface-hub
|
66 |
gradio==4.44.1
|
67 |
-
# via
|
68 |
gradio-client==1.3.0
|
69 |
# via gradio
|
70 |
h11==0.14.0
|
@@ -72,7 +72,7 @@ h11==0.14.0
|
|
72 |
# httpcore
|
73 |
# uvicorn
|
74 |
hf-transfer==0.1.8
|
75 |
-
# via
|
76 |
httpcore==1.0.6
|
77 |
# via httpx
|
78 |
httpx==0.27.2
|
|
|
37 |
cycler==0.12.1
|
38 |
# via matplotlib
|
39 |
datasets==3.0.1
|
40 |
+
# via jmmmu-dataset-viewer (pyproject.toml)
|
41 |
dill==0.3.8
|
42 |
# via
|
43 |
# datasets
|
|
|
64 |
# gradio-client
|
65 |
# huggingface-hub
|
66 |
gradio==4.44.1
|
67 |
+
# via jmmmu-dataset-viewer (pyproject.toml)
|
68 |
gradio-client==1.3.0
|
69 |
# via gradio
|
70 |
h11==0.14.0
|
|
|
72 |
# httpcore
|
73 |
# uvicorn
|
74 |
hf-transfer==0.1.8
|
75 |
+
# via jmmmu-dataset-viewer (pyproject.toml)
|
76 |
httpcore==1.0.6
|
77 |
# via httpx
|
78 |
httpx==0.27.2
|
uv.lock
CHANGED
@@ -27,7 +27,7 @@ wheels = [
|
|
27 |
|
28 |
[[package]]
|
29 |
name = "aiohttp"
|
30 |
-
version = "3.10.
|
31 |
source = { registry = "https://pypi.org/simple" }
|
32 |
dependencies = [
|
33 |
{ name = "aiohappyeyeballs" },
|
@@ -38,68 +38,68 @@ dependencies = [
|
|
38 |
{ name = "multidict" },
|
39 |
{ name = "yarl" },
|
40 |
]
|
41 |
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
42 |
-
wheels = [
|
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/
|
84 |
-
{ url = "https://files.pythonhosted.org/packages/
|
85 |
-
{ url = "https://files.pythonhosted.org/packages/
|
86 |
-
{ url = "https://files.pythonhosted.org/packages/
|
87 |
-
{ url = "https://files.pythonhosted.org/packages/
|
88 |
-
{ url = "https://files.pythonhosted.org/packages/
|
89 |
-
{ url = "https://files.pythonhosted.org/packages/
|
90 |
-
{ url = "https://files.pythonhosted.org/packages/
|
91 |
-
{ url = "https://files.pythonhosted.org/packages/
|
92 |
-
{ url = "https://files.pythonhosted.org/packages/
|
93 |
-
{ url = "https://files.pythonhosted.org/packages/
|
94 |
-
{ url = "https://files.pythonhosted.org/packages/
|
95 |
-
{ url = "https://files.pythonhosted.org/packages/
|
96 |
-
{ url = "https://files.pythonhosted.org/packages/
|
97 |
-
{ url = "https://files.pythonhosted.org/packages/
|
98 |
-
{ url = "https://files.pythonhosted.org/packages/
|
99 |
-
{ url = "https://files.pythonhosted.org/packages/
|
100 |
-
{ url = "https://files.pythonhosted.org/packages/
|
101 |
-
{ url = "https://files.pythonhosted.org/packages/
|
102 |
-
{ url = "https://files.pythonhosted.org/packages/
|
103 |
]
|
104 |
|
105 |
[[package]]
|
@@ -671,6 +671,23 @@ wheels = [
|
|
671 |
{ url = "https://files.pythonhosted.org/packages/31/80/3a54838c3fb461f6fec263ebf3a3a41771bd05190238de3486aae8540c36/jinja2-3.1.4-py3-none-any.whl", hash = "sha256:bc5dd2abb727a5319567b7a813e6a2e7318c39f4f487cfe6c89c6f9c7d25197d", size = 133271 },
|
672 |
]
|
673 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
674 |
[[package]]
|
675 |
name = "kiwisolver"
|
676 |
version = "1.4.7"
|
@@ -856,23 +873,6 @@ wheels = [
|
|
856 |
{ url = "https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl", hash = "sha256:84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8", size = 9979 },
|
857 |
]
|
858 |
|
859 |
-
[[package]]
|
860 |
-
name = "mmmu-dataset-viewer"
|
861 |
-
version = "0.1.0"
|
862 |
-
source = { virtual = "." }
|
863 |
-
dependencies = [
|
864 |
-
{ name = "datasets" },
|
865 |
-
{ name = "gradio" },
|
866 |
-
{ name = "hf-transfer" },
|
867 |
-
]
|
868 |
-
|
869 |
-
[package.metadata]
|
870 |
-
requires-dist = [
|
871 |
-
{ name = "datasets", specifier = ">=3.0.1" },
|
872 |
-
{ name = "gradio", specifier = ">=4.44.1" },
|
873 |
-
{ name = "hf-transfer", specifier = ">=0.1.8" },
|
874 |
-
]
|
875 |
-
|
876 |
[[package]]
|
877 |
name = "multidict"
|
878 |
version = "6.1.0"
|
@@ -963,62 +963,62 @@ wheels = [
|
|
963 |
|
964 |
[[package]]
|
965 |
name = "numpy"
|
966 |
-
version = "2.1.
|
967 |
-
source = { registry = "https://pypi.org/simple" }
|
968 |
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
969 |
-
wheels = [
|
970 |
-
{ url = "https://files.pythonhosted.org/packages/
|
971 |
-
{ url = "https://files.pythonhosted.org/packages/
|
972 |
-
{ url = "https://files.pythonhosted.org/packages/
|
973 |
-
{ url = "https://files.pythonhosted.org/packages/
|
974 |
-
{ url = "https://files.pythonhosted.org/packages/
|
975 |
-
{ url = "https://files.pythonhosted.org/packages/
|
976 |
-
{ url = "https://files.pythonhosted.org/packages/
|
977 |
-
{ url = "https://files.pythonhosted.org/packages/
|
978 |
-
{ url = "https://files.pythonhosted.org/packages/
|
979 |
-
{ url = "https://files.pythonhosted.org/packages/
|
980 |
-
{ url = "https://files.pythonhosted.org/packages/
|
981 |
-
{ url = "https://files.pythonhosted.org/packages/
|
982 |
-
{ url = "https://files.pythonhosted.org/packages/
|
983 |
-
{ url = "https://files.pythonhosted.org/packages/
|
984 |
-
{ url = "https://files.pythonhosted.org/packages/
|
985 |
-
{ url = "https://files.pythonhosted.org/packages/
|
986 |
-
{ url = "https://files.pythonhosted.org/packages/
|
987 |
-
{ url = "https://files.pythonhosted.org/packages/
|
988 |
-
{ url = "https://files.pythonhosted.org/packages/
|
989 |
-
{ url = "https://files.pythonhosted.org/packages/
|
990 |
-
{ url = "https://files.pythonhosted.org/packages/
|
991 |
-
{ url = "https://files.pythonhosted.org/packages/
|
992 |
-
{ url = "https://files.pythonhosted.org/packages/
|
993 |
-
{ url = "https://files.pythonhosted.org/packages/
|
994 |
-
{ url = "https://files.pythonhosted.org/packages/
|
995 |
-
{ url = "https://files.pythonhosted.org/packages/
|
996 |
-
{ url = "https://files.pythonhosted.org/packages/
|
997 |
-
{ url = "https://files.pythonhosted.org/packages/bf/
|
998 |
-
{ url = "https://files.pythonhosted.org/packages/
|
999 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1000 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1001 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1002 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1003 |
-
{ url = "https://files.pythonhosted.org/packages/3e/
|
1004 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1005 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1006 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1007 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1008 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1009 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1010 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1011 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1012 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1013 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1014 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1015 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1016 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1017 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1018 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1019 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1020 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1021 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1022 |
]
|
1023 |
|
1024 |
[[package]]
|
@@ -1412,41 +1412,41 @@ wheels = [
|
|
1412 |
|
1413 |
[[package]]
|
1414 |
name = "rich"
|
1415 |
-
version = "13.9.
|
1416 |
source = { registry = "https://pypi.org/simple" }
|
1417 |
dependencies = [
|
1418 |
{ name = "markdown-it-py" },
|
1419 |
{ name = "pygments" },
|
1420 |
{ name = "typing-extensions", marker = "python_full_version < '3.11'" },
|
1421 |
]
|
1422 |
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
1423 |
wheels = [
|
1424 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1425 |
]
|
1426 |
|
1427 |
[[package]]
|
1428 |
name = "ruff"
|
1429 |
-
version = "0.6.
|
1430 |
-
source = { registry = "https://pypi.org/simple" }
|
1431 |
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
1432 |
-
wheels = [
|
1433 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1434 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1435 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1436 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1437 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1438 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1439 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1440 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1441 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1442 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1443 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1444 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1445 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1446 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1447 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1448 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1449 |
-
{ url = "https://files.pythonhosted.org/packages/
|
1450 |
]
|
1451 |
|
1452 |
[[package]]
|
|
|
27 |
|
28 |
[[package]]
|
29 |
name = "aiohttp"
|
30 |
+
version = "3.10.9"
|
31 |
source = { registry = "https://pypi.org/simple" }
|
32 |
dependencies = [
|
33 |
{ name = "aiohappyeyeballs" },
|
|
|
38 |
{ name = "multidict" },
|
39 |
{ name = "yarl" },
|
40 |
]
|
41 |
+
sdist = { url = "https://files.pythonhosted.org/packages/14/40/f08c5d26398f987c1a27e1e351a4b461a01ffdbf9dde429c980db5286c92/aiohttp-3.10.9.tar.gz", hash = "sha256:143b0026a9dab07a05ad2dd9e46aa859bffdd6348ddc5967b42161168c24f857", size = 7541983 }
|
42 |
+
wheels = [
|
43 |
+
{ url = "https://files.pythonhosted.org/packages/6d/c9/dbbc67dd2474d4df953f05e0a312181e195eb54c46d9baf382b73ba6d566/aiohttp-3.10.9-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:8b3fb28a9ac8f2558760d8e637dbf27aef1e8b7f1d221e8669a1074d1a266bb2", size = 587387 },
|
44 |
+
{ url = "https://files.pythonhosted.org/packages/88/10/aa4fa5cc30e2116edb02e31e4030d1464ef756a69e48f0c78dec13bbf93a/aiohttp-3.10.9-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:91aa966858593f64c8a65cdefa3d6dc8fe3c2768b159da84c1ddbbb2c01ab4ef", size = 399780 },
|
45 |
+
{ url = "https://files.pythonhosted.org/packages/b8/6e/29ff94c6730ebc67bf7746a5c437e676044b60d3e30eac21dcc2372ccafe/aiohttp-3.10.9-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:63649309da83277f06a15bbdc2a54fbe75efb92caa2c25bb57ca37762789c746", size = 391141 },
|
46 |
+
{ url = "https://files.pythonhosted.org/packages/25/27/a317dbd5a2729d92bab9788b99fdffaa7af09e5a4ff79270748bbfea605c/aiohttp-3.10.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e3e7fabedb3fe06933f47f1538df7b3a8d78e13d7167195f51ca47ee12690373", size = 1229237 },
|
47 |
+
{ url = "https://files.pythonhosted.org/packages/57/c4/4feadf21dc9cf89fab35a3cc71d8884aff5fa7d53fcd70f8f4d7a6ef11b2/aiohttp-3.10.9-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5c070430fda1a550a1c3a4c2d7281d3b8cfc0c6715f616e40e3332201a253067", size = 1265039 },
|
48 |
+
{ url = "https://files.pythonhosted.org/packages/9c/04/3959f2eacca398b8dfa18cfdadead1cbf2d929ea007d86e6e7ff2b6f4dee/aiohttp-3.10.9-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:51d0a4901b27272ae54e42067bc4b9a90e619a690b4dc43ea5950eb3070afc32", size = 1298818 },
|
49 |
+
{ url = "https://files.pythonhosted.org/packages/9a/be/810e82ad2b3e3221530e59177520e0a0a719ef07804a2d8b0d8c73b5f479/aiohttp-3.10.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fec5fac7aea6c060f317f07494961236434928e6f4374e170ef50b3001e14581", size = 1222615 },
|
50 |
+
{ url = "https://files.pythonhosted.org/packages/92/f5/de2625920d5a3bd99347050ddc94182665e5c4cbd8f1d8fa3f3ebd9e4fad/aiohttp-3.10.9-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:172ad884bb61ad31ed7beed8be776eb17e7fb423f1c1be836d5cb357a096bf12", size = 1194222 },
|
51 |
+
{ url = "https://files.pythonhosted.org/packages/6d/b1/9053457d3323301552732a8a45a87e371abbe4f962325822899e7b503ab9/aiohttp-3.10.9-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:d646fdd74c25bbdd4a055414f0fe32896c400f38ffbdfc78c68e62812a9e0257", size = 1193963 },
|
52 |
+
{ url = "https://files.pythonhosted.org/packages/a1/6c/4396e9dd9371604bd8c5d6faba6775476bc01b9def74d3e46df5b4511c10/aiohttp-3.10.9-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e86260b76786c28acf0b5fe31c8dca4c2add95098c709b11e8c35b424ebd4f5b", size = 1193461 },
|
53 |
+
{ url = "https://files.pythonhosted.org/packages/e1/ca/a9b15243a103c2884b5a1e9312b20a8ed44f8c637f0a71fb7509b975769b/aiohttp-3.10.9-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:c7d7cafc11d70fdd8801abfc2ff276744ae4cb39d8060b6b542c7e44e5f2cfc2", size = 1247625 },
|
54 |
+
{ url = "https://files.pythonhosted.org/packages/61/81/85465f60776e3ece45436b061b91ae3cb2ca10494088480c17093fdf3b03/aiohttp-3.10.9-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:fc262c3df78c8ff6020c782d9ce02e4bcffe4900ad71c0ecdad59943cba54442", size = 1264521 },
|
55 |
+
{ url = "https://files.pythonhosted.org/packages/a4/f5/41712c5d385ffd20d372609aa79de6d37ca8c639b93d4edde86e4e65f255/aiohttp-3.10.9-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:482c85cf3d429844396d939b22bc2a03849cb9ad33344689ad1c85697bcba33a", size = 1216165 },
|
56 |
+
{ url = "https://files.pythonhosted.org/packages/43/c4/1b06d5a53ac414836bc6ebf8522e3ea70b3db19814736e417b4f669f614f/aiohttp-3.10.9-cp310-cp310-win32.whl", hash = "sha256:aeebd3061f6f1747c011e1d0b0b5f04f9f54ad1a2ca183e687e7277bef2e0da2", size = 363094 },
|
57 |
+
{ url = "https://files.pythonhosted.org/packages/fd/1c/09b8b3c994cf12db55e8ddf1889567df10e33e8855b948622d9b91288d1a/aiohttp-3.10.9-cp310-cp310-win_amd64.whl", hash = "sha256:fa430b871220dc62572cef9c69b41e0d70fcb9d486a4a207a5de4c1f25d82593", size = 381512 },
|
58 |
+
{ url = "https://files.pythonhosted.org/packages/74/25/9cb2c6f7260e26ad67185b5deeb4e9eb002c352add9e7470ecda6174f3a1/aiohttp-3.10.9-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:16e6a51d8bc96b77f04a6764b4ad03eeef43baa32014fce71e882bd71302c7e4", size = 586917 },
|
59 |
+
{ url = "https://files.pythonhosted.org/packages/72/6f/cb3943cc0eaa1d7cfc0fbd250652587ffc60dbdb87ef175b5819f7a75920/aiohttp-3.10.9-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:8bd9125dd0cc8ebd84bff2be64b10fdba7dc6fd7be431b5eaf67723557de3a31", size = 399398 },
|
60 |
+
{ url = "https://files.pythonhosted.org/packages/99/bd/f5b651f9b16b1408e5d15e27076074baf71cf0c7c398b5875ded822284dd/aiohttp-3.10.9-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:dcf354661f54e6a49193d0b5653a1b011ba856e0b7a76bda2c33e4c6892f34ea", size = 391048 },
|
61 |
+
{ url = "https://files.pythonhosted.org/packages/a5/2f/af600aa1e4cad6ee1437ca00696c3a33e4ff318a352e9a2526431e688fdf/aiohttp-3.10.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42775de0ca04f90c10c5c46291535ec08e9bcc4756f1b48f02a0657febe89b10", size = 1306896 },
|
62 |
+
{ url = "https://files.pythonhosted.org/packages/1c/5e/2744f3085a6c3b8953178480ad596a1742c27c543ccb25e9dfb2f4f80724/aiohttp-3.10.9-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:87d1e4185c5d7187684d41ebb50c9aeaaaa06ca1875f4c57593071b0409d2444", size = 1345076 },
|
63 |
+
{ url = "https://files.pythonhosted.org/packages/be/75/492238db77b095573ed87dd7de9b19a7099310ebfe58a52a1c93abe0fffe/aiohttp-3.10.9-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c2695c61cf53a5d4345a43d689f37fc0f6d3a2dc520660aec27ec0f06288d1f9", size = 1378906 },
|
64 |
+
{ url = "https://files.pythonhosted.org/packages/b6/64/b434024effa2e8d2e46ab771a4b0b6172016722cd9509de0de64d8ba7934/aiohttp-3.10.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8a3f063b41cc06e8d0b3fcbbfc9c05b7420f41287e0cd4f75ce0a1f3d80729e6", size = 1293128 },
|
65 |
+
{ url = "https://files.pythonhosted.org/packages/7f/67/a069742198d5431c3780cbcf6df6e4e07ea5178632a2ea243bfc439328f4/aiohttp-3.10.9-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2d37f4718002863b82c6f391c8efd4d3a817da37030a29e2682a94d2716209de", size = 1252191 },
|
66 |
+
{ url = "https://files.pythonhosted.org/packages/d6/ec/15510a7cb66eeba7c09bef3e8ae153f057714017210eecec21be40b47938/aiohttp-3.10.9-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:2746d8994ebca1bdc55a1e998feff4e94222da709623bb18f6e5cfec8ec01baf", size = 1272135 },
|
67 |
+
{ url = "https://files.pythonhosted.org/packages/d1/6c/91efffd38cfa43f1adecd41ae3b6f38ea5849e230d371247eb6e96cdf594/aiohttp-3.10.9-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:6f3c6648aa123bcd73d6f26607d59967b607b0da8ffcc27d418a4b59f4c98c7c", size = 1266675 },
|
68 |
+
{ url = "https://files.pythonhosted.org/packages/f0/ff/7a23185fbae0c6b8293a9cda167d747e20243a819fee2a4e2a3d704c53f4/aiohttp-3.10.9-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:558b3d223fd631ad134d89adea876e7fdb4c93c849ef195049c063ada82b7d08", size = 1322042 },
|
69 |
+
{ url = "https://files.pythonhosted.org/packages/f9/0f/11f2c383537aa3eba2a0557507c4d00e0d611e134cb5530dd2f43e7f277c/aiohttp-3.10.9-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:4e6cb75f8ddd9c2132d00bc03c9716add57f4beff1263463724f6398b813e7eb", size = 1339642 },
|
70 |
+
{ url = "https://files.pythonhosted.org/packages/d7/9e/f1f6771bc6e8b2d0cc2c47ef88b781618202d1581a5f1d5c70e5d30fecfb/aiohttp-3.10.9-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:608cecd8d58d285bfd52dbca5b6251ca8d6ea567022c8a0eaae03c2589cd9af9", size = 1299481 },
|
71 |
+
{ url = "https://files.pythonhosted.org/packages/8a/f5/77e71fb00177c22dcf2319348006817ff8333ad822ba85c5c20141d0e7f7/aiohttp-3.10.9-cp311-cp311-win32.whl", hash = "sha256:36d4fba838be5f083f5490ddd281813b44d69685db910907636bc5dca6322316", size = 362644 },
|
72 |
+
{ url = "https://files.pythonhosted.org/packages/95/c8/9d1d366dba1641a5fb7642b2193858c54910e614dbe8213ac6e98e759e19/aiohttp-3.10.9-cp311-cp311-win_amd64.whl", hash = "sha256:8be1a65487bdfc285bd5e9baf3208c2132ca92a9b4020e9f27df1b16fab998a9", size = 381988 },
|
73 |
+
{ url = "https://files.pythonhosted.org/packages/95/d3/1f1f100e037316a8de685fa52666b6b7b3454fb6029c7e893d17fca84494/aiohttp-3.10.9-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:4fd16b30567c5b8e167923be6e027eeae0f20cf2b8a26b98a25115f28ad48ee0", size = 583949 },
|
74 |
+
{ url = "https://files.pythonhosted.org/packages/10/6d/0e23bf7f73811f32f44d3ea0435e3fbaa406b4f999f6bfe7d07481a7c73a/aiohttp-3.10.9-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:40ff5b7660f903dc587ed36ef08a88d46840182d9d4b5694e7607877ced698a1", size = 396108 },
|
75 |
+
{ url = "https://files.pythonhosted.org/packages/fd/af/1114d891e104fe7a2cf4111632fc267fe340133fcc0be82d6b14bbc5f6ba/aiohttp-3.10.9-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:4edc3fd701e2b9a0d605a7b23d3de4ad23137d23fc0dbab726aa71d92f11aaaf", size = 391319 },
|
76 |
+
{ url = "https://files.pythonhosted.org/packages/b3/73/ee8f1819ee70135f019981743cc2b20fbdef184f0300d5bd4464e502ed06/aiohttp-3.10.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e525b69ee8a92c146ae5b4da9ecd15e518df4d40003b01b454ad694a27f498b5", size = 1312486 },
|
77 |
+
{ url = "https://files.pythonhosted.org/packages/13/22/5399a58e78b7de12949931a1e0b5d4a7304895bf029d59ee5a7c45fb8f66/aiohttp-3.10.9-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5002a02c17fcfd796d20bac719981d2fca9c006aac0797eb8f430a58e9d12431", size = 1350966 },
|
78 |
+
{ url = "https://files.pythonhosted.org/packages/6d/13/284b1b3417de5480ca7267614d10752311a73b8269dee8487935ae9aeac3/aiohttp-3.10.9-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fd4ceeae2fb8cabdd1b71c82bfdd39662473d3433ec95b962200e9e752fb70d0", size = 1393071 },
|
79 |
+
{ url = "https://files.pythonhosted.org/packages/09/bc/a5168e2e46aed7f52c22604b2327aa0c24bcbf5acfb14a2246e0db97ebb8/aiohttp-3.10.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d6e395c3d1f773cf0651cd3559e25182eb0c03a2777b53b4575d8adc1149c6e9", size = 1306720 },
|
80 |
+
{ url = "https://files.pythonhosted.org/packages/7e/0d/9f31ad6abc903abb92f5c03274231cde833be9a81220a79ffa3836d533bd/aiohttp-3.10.9-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bbdb8def5268f3f9cd753a265756f49228a20ed14a480d151df727808b4531dd", size = 1260673 },
|
81 |
+
{ url = "https://files.pythonhosted.org/packages/28/c0/cf952fe7aa9680eeb8d5c8285d83f58d48c2005480e47ca94bff38f54794/aiohttp-3.10.9-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f82ace0ec57c94aaf5b0e118d4366cff5889097412c75aa14b4fd5fc0c44ee3e", size = 1271554 },
|
82 |
+
{ url = "https://files.pythonhosted.org/packages/92/f6/cd1991bc816f6976e9182a6cde996e16c01ee07a91443eaa76eab57b65d2/aiohttp-3.10.9-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:6ebdc3b3714afe1b134b3bbeb5f745eed3ecbcff92ab25d80e4ef299e83a5465", size = 1280670 },
|
83 |
+
{ url = "https://files.pythonhosted.org/packages/f1/29/a1f593cae76576cac964aab98242b5fd3f09e3160e31c6a981aeaea318f1/aiohttp-3.10.9-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:f9ca09414003c0e96a735daa1f071f7d7ed06962ef4fa29ceb6c80d06696d900", size = 1317221 },
|
84 |
+
{ url = "https://files.pythonhosted.org/packages/78/37/9f491dd5c8e29632ad6486022c1baeb3cf6adf16da98d14f61ee5265da11/aiohttp-3.10.9-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:1298b854fd31d0567cbb916091be9d3278168064fca88e70b8468875ef9ff7e7", size = 1344349 },
|
85 |
+
{ url = "https://files.pythonhosted.org/packages/8e/de/53b365b3cea5bf9b4a31d905c13e1b81a6b1f5379e7513390840fde67e05/aiohttp-3.10.9-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:60ad5b8a7452c0f5645c73d4dad7490afd6119d453d302cd5b72b678a85d6044", size = 1306592 },
|
86 |
+
{ url = "https://files.pythonhosted.org/packages/e9/98/030429cf2d69be27d2ad7c5dbc634d1bd08bddd2343099a81c10dfc105f0/aiohttp-3.10.9-cp312-cp312-win32.whl", hash = "sha256:1a0ee6c0d590c917f1b9629371fce5f3d3f22c317aa96fbdcce3260754d7ea21", size = 359707 },
|
87 |
+
{ url = "https://files.pythonhosted.org/packages/da/cf/893f385d4ade412a242f61a2669f89afc389380cc9d29edf9335fa9f3d35/aiohttp-3.10.9-cp312-cp312-win_amd64.whl", hash = "sha256:c46131c6112b534b178d4e002abe450a0a29840b61413ac25243f1291613806a", size = 379726 },
|
88 |
+
{ url = "https://files.pythonhosted.org/packages/1c/60/36e4b9f165b715b33eb09c199e0b748876bb7ef3480845688e93ff624172/aiohttp-3.10.9-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:2bd9f3eac515c16c4360a6a00c38119333901b8590fe93c3257a9b536026594d", size = 576520 },
|
89 |
+
{ url = "https://files.pythonhosted.org/packages/24/51/1912195eda818b968f257b9774e2aa48b86d61853cecbbb85c7e85c1ea1a/aiohttp-3.10.9-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:8cc0d13b4e3b1362d424ce3f4e8c79e1f7247a00d792823ffd640878abf28e56", size = 392311 },
|
90 |
+
{ url = "https://files.pythonhosted.org/packages/9f/3a/a5dd75d9fc06fa1791b327a3045c78ae2fa621f066da44db11aebbd8ac4a/aiohttp-3.10.9-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:ba1a599255ad6a41022e261e31bc2f6f9355a419575b391f9655c4d9e5df5ff5", size = 387829 },
|
91 |
+
{ url = "https://files.pythonhosted.org/packages/ee/7a/fdf393519f72152b8b6a33dd9c8d4553517358a2df72c78a0c15542df77d/aiohttp-3.10.9-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:776e9f3c9b377fcf097c4a04b241b15691e6662d850168642ff976780609303c", size = 1287492 },
|
92 |
+
{ url = "https://files.pythonhosted.org/packages/00/fb/b783999286077dbe41b99cc5ce34f71fb0e3d68621fc8603ad39d518c229/aiohttp-3.10.9-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8debb45545ad95b58cc16c3c1cc19ad82cffcb106db12b437885dbee265f0ab5", size = 1324034 },
|
93 |
+
{ url = "https://files.pythonhosted.org/packages/8a/43/bdc6215f327da8236972fd15c31ad349100a2a2b186558ddf76e48b66296/aiohttp-3.10.9-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c2555e4949c8d8782f18ef20e9d39730d2656e218a6f1a21a4c4c0b56546a02e", size = 1368824 },
|
94 |
+
{ url = "https://files.pythonhosted.org/packages/0c/c9/a366ae87c0a3e9140623a4d84511e65299b35cf8a1dd2880ff245fe480c3/aiohttp-3.10.9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c54dc329cd44f7f7883a9f4baaefe686e8b9662e2c6c184ea15cceee587d8d69", size = 1283182 },
|
95 |
+
{ url = "https://files.pythonhosted.org/packages/34/cd/f7d222dc983c0e2d625a00c449b923fdfa8c40f56154d2da9483ee9d3b92/aiohttp-3.10.9-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e709d6ac598c5416f879bb1bae3fd751366120ac3fa235a01de763537385d036", size = 1236935 },
|
96 |
+
{ url = "https://files.pythonhosted.org/packages/c3/a3/379086cd1f193f63f8b5b8cb348df6b5aa43e8eda3dd9b1b5748fa0c0090/aiohttp-3.10.9-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:17c272cfe7b07a5bb0c6ad3f234e0c336fb53f3bf17840f66bd77b5815ab3d16", size = 1250756 },
|
97 |
+
{ url = "https://files.pythonhosted.org/packages/44/c2/463d898c6aa0202fc0165aec0bd8d71f1db5876f40d7d297914af7490df4/aiohttp-3.10.9-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:0c21c82df33b264216abffff9f8370f303dab65d8eee3767efbbd2734363f677", size = 1249367 },
|
98 |
+
{ url = "https://files.pythonhosted.org/packages/c0/8f/90c365019d84f90cec9c43d6df8ec97ada513a7610aaa0936bae6cf2bbe0/aiohttp-3.10.9-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:9331dd34145ff105177855017920dde140b447049cd62bb589de320fd6ddd582", size = 1293795 },
|
99 |
+
{ url = "https://files.pythonhosted.org/packages/8e/62/174aa729cb83d5bbbd13715e463181d3c19c13231304fafba3cc20f7b850/aiohttp-3.10.9-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:ac3196952c673822ebed8871cf8802e17254fff2a2ed4835d9c045d9b88c5ec7", size = 1320527 },
|
100 |
+
{ url = "https://files.pythonhosted.org/packages/96/f7/102a9a8d3eef0d5d301328feb7ddecac9f78808589c6186497256c80b3d9/aiohttp-3.10.9-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:2c33fa6e10bb7ed262e3ff03cc69d52869514f16558db0626a7c5c61dde3c29f", size = 1281964 },
|
101 |
+
{ url = "https://files.pythonhosted.org/packages/ab/e2/0c9ef8acfdbe6bd417a8989bc95f5e28ce1af475eb941334b2c9a751d01b/aiohttp-3.10.9-cp313-cp313-win32.whl", hash = "sha256:a14e4b672c257a6b94fe934ee62666bacbc8e45b7876f9dd9502d0f0fe69db16", size = 357936 },
|
102 |
+
{ url = "https://files.pythonhosted.org/packages/71/c0/6d33ac32bfbf9dd91a16c26bc37dd4763084d7f991dc848655d34e31291a/aiohttp-3.10.9-cp313-cp313-win_amd64.whl", hash = "sha256:a35ed3d03910785f7d9d6f5381f0c24002b2b888b298e6f941b2fc94c5055fcd", size = 377205 },
|
103 |
]
|
104 |
|
105 |
[[package]]
|
|
|
671 |
{ url = "https://files.pythonhosted.org/packages/31/80/3a54838c3fb461f6fec263ebf3a3a41771bd05190238de3486aae8540c36/jinja2-3.1.4-py3-none-any.whl", hash = "sha256:bc5dd2abb727a5319567b7a813e6a2e7318c39f4f487cfe6c89c6f9c7d25197d", size = 133271 },
|
672 |
]
|
673 |
|
674 |
+
[[package]]
|
675 |
+
name = "jmmmu-dataset-viewer"
|
676 |
+
version = "0.1.0"
|
677 |
+
source = { virtual = "." }
|
678 |
+
dependencies = [
|
679 |
+
{ name = "datasets" },
|
680 |
+
{ name = "gradio" },
|
681 |
+
{ name = "hf-transfer" },
|
682 |
+
]
|
683 |
+
|
684 |
+
[package.metadata]
|
685 |
+
requires-dist = [
|
686 |
+
{ name = "datasets", specifier = ">=3.0.1" },
|
687 |
+
{ name = "gradio", specifier = ">=4.44.1" },
|
688 |
+
{ name = "hf-transfer", specifier = ">=0.1.8" },
|
689 |
+
]
|
690 |
+
|
691 |
[[package]]
|
692 |
name = "kiwisolver"
|
693 |
version = "1.4.7"
|
|
|
873 |
{ url = "https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl", hash = "sha256:84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8", size = 9979 },
|
874 |
]
|
875 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
876 |
[[package]]
|
877 |
name = "multidict"
|
878 |
version = "6.1.0"
|
|
|
963 |
|
964 |
[[package]]
|
965 |
name = "numpy"
|
966 |
+
version = "2.1.2"
|
967 |
+
source = { registry = "https://pypi.org/simple" }
|
968 |
+
sdist = { url = "https://files.pythonhosted.org/packages/4b/d1/8a730ea07f4a37d94f9172f4ce1d81064b7a64766b460378be278952de75/numpy-2.1.2.tar.gz", hash = "sha256:13532a088217fa624c99b843eeb54640de23b3414b14aa66d023805eb731066c", size = 18878063 }
|
969 |
+
wheels = [
|
970 |
+
{ url = "https://files.pythonhosted.org/packages/1c/a2/40a76d357f168e9f9f06d6cc2c8e22dd5fb2bfbe63fe2c433057258c145a/numpy-2.1.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:30d53720b726ec36a7f88dc873f0eec8447fbc93d93a8f079dfac2629598d6ee", size = 21150947 },
|
971 |
+
{ url = "https://files.pythonhosted.org/packages/b5/d0/ba271ea9108d7278d3889a7eb38d77370a88713fb94339964e71ac184d4a/numpy-2.1.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e8d3ca0a72dd8846eb6f7dfe8f19088060fcb76931ed592d29128e0219652884", size = 13758184 },
|
972 |
+
{ url = "https://files.pythonhosted.org/packages/7c/b9/5c6507439cd756201010f7937bf90712c2469052ae094584af14557dd64f/numpy-2.1.2-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:fc44e3c68ff00fd991b59092a54350e6e4911152682b4782f68070985aa9e648", size = 5354091 },
|
973 |
+
{ url = "https://files.pythonhosted.org/packages/60/21/7938cf724d9e84e45fb886f3fc794ab431d71facfebc261e3e9f19f3233a/numpy-2.1.2-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:7c1c60328bd964b53f8b835df69ae8198659e2b9302ff9ebb7de4e5a5994db3d", size = 6887169 },
|
974 |
+
{ url = "https://files.pythonhosted.org/packages/09/8d/42a124657f5d31902fca73921b25a0d022cead2b32ce7e6975762cd2995a/numpy-2.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6cdb606a7478f9ad91c6283e238544451e3a95f30fb5467fbf715964341a8a86", size = 13888165 },
|
975 |
+
{ url = "https://files.pythonhosted.org/packages/fb/25/ba023652a39a2c127200e85aed975fc6119b421e2c348e5d0171e2046edb/numpy-2.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d666cb72687559689e9906197e3bec7b736764df6a2e58ee265e360663e9baf7", size = 16326954 },
|
976 |
+
{ url = "https://files.pythonhosted.org/packages/34/58/23e6b07fad492b7c47cf09cd8bad6983658f0f925b6c535fd008e3e86274/numpy-2.1.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c6eef7a2dbd0abfb0d9eaf78b73017dbfd0b54051102ff4e6a7b2980d5ac1a03", size = 16702916 },
|
977 |
+
{ url = "https://files.pythonhosted.org/packages/91/24/37b5cf2dc7d385ac97f7b7fe50cba312abb70a2a5eac74c23af028811f73/numpy-2.1.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:12edb90831ff481f7ef5f6bc6431a9d74dc0e5ff401559a71e5e4611d4f2d466", size = 14384372 },
|
978 |
+
{ url = "https://files.pythonhosted.org/packages/ea/ec/0f6d471058a01d1a05a50d2793898de1549280fa715a8537987ee866b5d9/numpy-2.1.2-cp310-cp310-win32.whl", hash = "sha256:a65acfdb9c6ebb8368490dbafe83c03c7e277b37e6857f0caeadbbc56e12f4fb", size = 6535361 },
|
979 |
+
{ url = "https://files.pythonhosted.org/packages/c2/3d/293cc5927f916a7bc6bf74da8f6defab63d1b13f0959d7e21878ad8a20d8/numpy-2.1.2-cp310-cp310-win_amd64.whl", hash = "sha256:860ec6e63e2c5c2ee5e9121808145c7bf86c96cca9ad396c0bd3e0f2798ccbe2", size = 12865501 },
|
980 |
+
{ url = "https://files.pythonhosted.org/packages/aa/9c/9a6ec3ae89cd0648d419781284308f2956d2a61d932b5ac9682c956a171b/numpy-2.1.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b42a1a511c81cc78cbc4539675713bbcf9d9c3913386243ceff0e9429ca892fe", size = 21154845 },
|
981 |
+
{ url = "https://files.pythonhosted.org/packages/02/69/9f05c4ecc75fabf297b17743996371b4c3dfc4d92e15c5c38d8bb3db8d74/numpy-2.1.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:faa88bc527d0f097abdc2c663cddf37c05a1c2f113716601555249805cf573f1", size = 13789409 },
|
982 |
+
{ url = "https://files.pythonhosted.org/packages/34/4e/f95c99217bf77bbfaaf660d693c10bd0dc03b6032d19316d316088c9e479/numpy-2.1.2-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:c82af4b2ddd2ee72d1fc0c6695048d457e00b3582ccde72d8a1c991b808bb20f", size = 5352097 },
|
983 |
+
{ url = "https://files.pythonhosted.org/packages/06/13/f5d87a497c16658e9af8920449b0b5692b469586b8231340c672962071c5/numpy-2.1.2-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:13602b3174432a35b16c4cfb5de9a12d229727c3dd47a6ce35111f2ebdf66ff4", size = 6891195 },
|
984 |
+
{ url = "https://files.pythonhosted.org/packages/6c/89/691ac07429ac061b344d5e37fa8e94be51a6017734aea15f2d9d7c6d119a/numpy-2.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1ebec5fd716c5a5b3d8dfcc439be82a8407b7b24b230d0ad28a81b61c2f4659a", size = 13895153 },
|
985 |
+
{ url = "https://files.pythonhosted.org/packages/23/69/538317f0d925095537745f12aced33be1570bbdc4acde49b33748669af96/numpy-2.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2b49c3c0804e8ecb05d59af8386ec2f74877f7ca8fd9c1e00be2672e4d399b1", size = 16338306 },
|
986 |
+
{ url = "https://files.pythonhosted.org/packages/af/03/863fe7062c2106d3c151f7df9353f2ae2237c1dd6900f127a3eb1f24cb1b/numpy-2.1.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:2cbba4b30bf31ddbe97f1c7205ef976909a93a66bb1583e983adbd155ba72ac2", size = 16710893 },
|
987 |
+
{ url = "https://files.pythonhosted.org/packages/70/77/0ad9efe25482009873f9660d29a40a8c41a6f0e8b541195e3c95c70684c5/numpy-2.1.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8e00ea6fc82e8a804433d3e9cedaa1051a1422cb6e443011590c14d2dea59146", size = 14398048 },
|
988 |
+
{ url = "https://files.pythonhosted.org/packages/3e/0f/e785fe75544db9f2b0bb1c181e13ceff349ce49753d807fd9672916aa06d/numpy-2.1.2-cp311-cp311-win32.whl", hash = "sha256:5006b13a06e0b38d561fab5ccc37581f23c9511879be7693bd33c7cd15ca227c", size = 6533458 },
|
989 |
+
{ url = "https://files.pythonhosted.org/packages/d4/96/450054662295125af861d48d2c4bc081dadcf1974a879b2104613157aa62/numpy-2.1.2-cp311-cp311-win_amd64.whl", hash = "sha256:f1eb068ead09f4994dec71c24b2844f1e4e4e013b9629f812f292f04bd1510d9", size = 12870896 },
|
990 |
+
{ url = "https://files.pythonhosted.org/packages/a0/7d/554a6838f37f3ada5a55f25173c619d556ae98092a6e01afb6e710501d70/numpy-2.1.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:d7bf0a4f9f15b32b5ba53147369e94296f5fffb783db5aacc1be15b4bf72f43b", size = 20848077 },
|
991 |
+
{ url = "https://files.pythonhosted.org/packages/b0/29/cb48a402ea879e645b16218718f3f7d9588a77d674a9dcf22e4c43487636/numpy-2.1.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:b1d0fcae4f0949f215d4632be684a539859b295e2d0cb14f78ec231915d644db", size = 13493242 },
|
992 |
+
{ url = "https://files.pythonhosted.org/packages/56/44/f899b0581766c230da42f751b7b8896d096640b19b312164c267e48d36cb/numpy-2.1.2-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:f751ed0a2f250541e19dfca9f1eafa31a392c71c832b6bb9e113b10d050cb0f1", size = 5089219 },
|
993 |
+
{ url = "https://files.pythonhosted.org/packages/79/8f/b987070d45161a7a4504afc67ed38544ed2c0ed5576263599a0402204a9c/numpy-2.1.2-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:bd33f82e95ba7ad632bc57837ee99dba3d7e006536200c4e9124089e1bf42426", size = 6620167 },
|
994 |
+
{ url = "https://files.pythonhosted.org/packages/c4/a7/af3329fda3c3ec31d9b650e42bbcd3422fc62a765cbb1405fde4177a0996/numpy-2.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1b8cde4f11f0a975d1fd59373b32e2f5a562ade7cde4f85b7137f3de8fbb29a0", size = 13604905 },
|
995 |
+
{ url = "https://files.pythonhosted.org/packages/9b/b4/e3c7e6fab0f77fff6194afa173d1f2342073d91b1d3b4b30b17c3fb4407a/numpy-2.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d95f286b8244b3649b477ac066c6906fbb2905f8ac19b170e2175d3d799f4df", size = 16041825 },
|
996 |
+
{ url = "https://files.pythonhosted.org/packages/e9/50/6828e66a78aa03147c111f84d55f33ce2dde547cb578d6744a3b06a0124b/numpy-2.1.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:ab4754d432e3ac42d33a269c8567413bdb541689b02d93788af4131018cbf366", size = 16409541 },
|
997 |
+
{ url = "https://files.pythonhosted.org/packages/bf/72/66af7916d9c3c6dbfbc8acdd4930c65461e1953374a2bc43d00f948f004a/numpy-2.1.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:e585c8ae871fd38ac50598f4763d73ec5497b0de9a0ab4ef5b69f01c6a046142", size = 14081134 },
|
998 |
+
{ url = "https://files.pythonhosted.org/packages/dc/5a/59a67d84f33fe00ae74f0b5b69dd4f93a586a4aba7f7e19b54b2133db038/numpy-2.1.2-cp312-cp312-win32.whl", hash = "sha256:9c6c754df29ce6a89ed23afb25550d1c2d5fdb9901d9c67a16e0b16eaf7e2550", size = 6237784 },
|
999 |
+
{ url = "https://files.pythonhosted.org/packages/4c/79/73735a6a5dad6059c085f240a4e74c9270feccd2bc66e4d31b5ca01d329c/numpy-2.1.2-cp312-cp312-win_amd64.whl", hash = "sha256:456e3b11cb79ac9946c822a56346ec80275eaf2950314b249b512896c0d2505e", size = 12568254 },
|
1000 |
+
{ url = "https://files.pythonhosted.org/packages/16/72/716fa1dbe92395a9a623d5049203ff8ddb0cfce65b9df9117c3696ccc011/numpy-2.1.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:a84498e0d0a1174f2b3ed769b67b656aa5460c92c9554039e11f20a05650f00d", size = 20834690 },
|
1001 |
+
{ url = "https://files.pythonhosted.org/packages/1e/fb/3e85a39511586053b5c6a59a643879e376fae22230ebfef9cfabb0e032e2/numpy-2.1.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:4d6ec0d4222e8ffdab1744da2560f07856421b367928026fb540e1945f2eeeaf", size = 13507474 },
|
1002 |
+
{ url = "https://files.pythonhosted.org/packages/35/eb/5677556d9ba13436dab51e129f98d4829d95cd1b6bd0e199c14485a4bdb9/numpy-2.1.2-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:259ec80d54999cc34cd1eb8ded513cb053c3bf4829152a2e00de2371bd406f5e", size = 5074742 },
|
1003 |
+
{ url = "https://files.pythonhosted.org/packages/3e/c5/6c5ef5ba41b65a7e51bed50dbf3e1483eb578055633dd013e811a28e96a1/numpy-2.1.2-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:675c741d4739af2dc20cd6c6a5c4b7355c728167845e3c6b0e824e4e5d36a6c3", size = 6606787 },
|
1004 |
+
{ url = "https://files.pythonhosted.org/packages/08/ac/f2f29dd4fd325b379c7dc932a0ebab22f0e031dbe80b2f6019b291a3a544/numpy-2.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:05b2d4e667895cc55e3ff2b56077e4c8a5604361fc21a042845ea3ad67465aa8", size = 13601333 },
|
1005 |
+
{ url = "https://files.pythonhosted.org/packages/44/26/63f5f4e5089654dfb858f4892215ed968cd1a68e6f4a83f9961f84f855cb/numpy-2.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:43cca367bf94a14aca50b89e9bc2061683116cfe864e56740e083392f533ce7a", size = 16038090 },
|
1006 |
+
{ url = "https://files.pythonhosted.org/packages/1d/21/015e0594de9c3a8d5edd24943d2bd23f102ec71aec026083f822f86497e2/numpy-2.1.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:76322dcdb16fccf2ac56f99048af32259dcc488d9b7e25b51e5eca5147a3fb98", size = 16410865 },
|
1007 |
+
{ url = "https://files.pythonhosted.org/packages/df/01/c1bcf9e6025d79077fbf3f3ee503b50aa7bfabfcd8f4b54f5829f4c00f3f/numpy-2.1.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:32e16a03138cabe0cb28e1007ee82264296ac0983714094380b408097a418cfe", size = 14078077 },
|
1008 |
+
{ url = "https://files.pythonhosted.org/packages/ba/06/db9d127d63bd11591770ba9f3d960f8041e0f895184b9351d4b1b5b56983/numpy-2.1.2-cp313-cp313-win32.whl", hash = "sha256:242b39d00e4944431a3cd2db2f5377e15b5785920421993770cddb89992c3f3a", size = 6234904 },
|
1009 |
+
{ url = "https://files.pythonhosted.org/packages/a9/96/9f61f8f95b6e0ea0aa08633b704c75d1882bdcb331bdf8bfd63263b25b00/numpy-2.1.2-cp313-cp313-win_amd64.whl", hash = "sha256:f2ded8d9b6f68cc26f8425eda5d3877b47343e68ca23d0d0846f4d312ecaa445", size = 12561910 },
|
1010 |
+
{ url = "https://files.pythonhosted.org/packages/36/b8/033f627821784a48e8f75c218033471eebbaacdd933f8979c79637a1b44b/numpy-2.1.2-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:2ffef621c14ebb0188a8633348504a35c13680d6da93ab5cb86f4e54b7e922b5", size = 20857719 },
|
1011 |
+
{ url = "https://files.pythonhosted.org/packages/96/46/af5726fde5b74ed83f2f17a73386d399319b7ed4d51279fb23b721d0816d/numpy-2.1.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:ad369ed238b1959dfbade9018a740fb9392c5ac4f9b5173f420bd4f37ba1f7a0", size = 13518826 },
|
1012 |
+
{ url = "https://files.pythonhosted.org/packages/db/6e/8ce677edf36da1c4dae80afe5529f47690697eb55b4864673af260ccea7b/numpy-2.1.2-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:d82075752f40c0ddf57e6e02673a17f6cb0f8eb3f587f63ca1eaab5594da5b17", size = 5115036 },
|
1013 |
+
{ url = "https://files.pythonhosted.org/packages/6a/ba/3cce44fb1b8438042c11847048812a776f75ee0e7070179c22e4cfbf420c/numpy-2.1.2-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:1600068c262af1ca9580a527d43dc9d959b0b1d8e56f8a05d830eea39b7c8af6", size = 6628641 },
|
1014 |
+
{ url = "https://files.pythonhosted.org/packages/59/c8/e722998720ccbd35ffbcf1d1b8ed0aa2304af88d3f1c38e06ebf983599b3/numpy-2.1.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a26ae94658d3ba3781d5e103ac07a876b3e9b29db53f68ed7df432fd033358a8", size = 13574803 },
|
1015 |
+
{ url = "https://files.pythonhosted.org/packages/7c/8e/fc1fdd83a55476765329ac2913321c4aed5b082a7915095628c4ca30ea72/numpy-2.1.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:13311c2db4c5f7609b462bc0f43d3c465424d25c626d95040f073e30f7570e35", size = 16021174 },
|
1016 |
+
{ url = "https://files.pythonhosted.org/packages/2a/b6/a790742aa88067adb4bd6c89a946778c1417d4deaeafce3ca928f26d4c52/numpy-2.1.2-cp313-cp313t-musllinux_1_1_x86_64.whl", hash = "sha256:2abbf905a0b568706391ec6fa15161fad0fb5d8b68d73c461b3c1bab6064dd62", size = 16400117 },
|
1017 |
+
{ url = "https://files.pythonhosted.org/packages/48/6f/129e3c17e3befe7fefdeaa6890f4c4df3f3cf0831aa053802c3862da67aa/numpy-2.1.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:ef444c57d664d35cac4e18c298c47d7b504c66b17c2ea91312e979fcfbdfb08a", size = 14066202 },
|
1018 |
+
{ url = "https://files.pythonhosted.org/packages/73/c9/3e1d6bbe6d3d2e2c5a9483b24b2f29a229b323f62054278a3bba7fee11e5/numpy-2.1.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:bdd407c40483463898b84490770199d5714dcc9dd9b792f6c6caccc523c00952", size = 20981945 },
|
1019 |
+
{ url = "https://files.pythonhosted.org/packages/6e/62/989c4988bde1a8e08117fccc3bab73d2886421fb98cde597168714f3c54e/numpy-2.1.2-pp310-pypy310_pp73-macosx_14_0_x86_64.whl", hash = "sha256:da65fb46d4cbb75cb417cddf6ba5e7582eb7bb0b47db4b99c9fe5787ce5d91f5", size = 6750558 },
|
1020 |
+
{ url = "https://files.pythonhosted.org/packages/53/b1/00ef9f30975f1312a53257f68e57b4513d14d537e03d507e2773a684b1e8/numpy-2.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1c193d0b0238638e6fc5f10f1b074a6993cb13b0b431f64079a509d63d3aa8b7", size = 16141552 },
|
1021 |
+
{ url = "https://files.pythonhosted.org/packages/c0/ec/0c04903b48dfea6be1d7b47ba70f98709fb7198fd970784a1400c391d522/numpy-2.1.2-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:a7d80b2e904faa63068ead63107189164ca443b42dd1930299e0d1cb041cec2e", size = 12789924 },
|
1022 |
]
|
1023 |
|
1024 |
[[package]]
|
|
|
1412 |
|
1413 |
[[package]]
|
1414 |
name = "rich"
|
1415 |
+
version = "13.9.2"
|
1416 |
source = { registry = "https://pypi.org/simple" }
|
1417 |
dependencies = [
|
1418 |
{ name = "markdown-it-py" },
|
1419 |
{ name = "pygments" },
|
1420 |
{ name = "typing-extensions", marker = "python_full_version < '3.11'" },
|
1421 |
]
|
1422 |
+
sdist = { url = "https://files.pythonhosted.org/packages/aa/9e/1784d15b057b0075e5136445aaea92d23955aad2c93eaede673718a40d95/rich-13.9.2.tar.gz", hash = "sha256:51a2c62057461aaf7152b4d611168f93a9fc73068f8ded2790f29fe2b5366d0c", size = 222843 }
|
1423 |
wheels = [
|
1424 |
+
{ url = "https://files.pythonhosted.org/packages/67/91/5474b84e505a6ccc295b2d322d90ff6aa0746745717839ee0c5fb4fdcceb/rich-13.9.2-py3-none-any.whl", hash = "sha256:8c82a3d3f8dcfe9e734771313e606b39d8247bb6b826e196f4914b333b743cf1", size = 242117 },
|
1425 |
]
|
1426 |
|
1427 |
[[package]]
|
1428 |
name = "ruff"
|
1429 |
+
version = "0.6.9"
|
1430 |
+
source = { registry = "https://pypi.org/simple" }
|
1431 |
+
sdist = { url = "https://files.pythonhosted.org/packages/26/0d/6148a48dab5662ca1d5a93b7c0d13c03abd3cc7e2f35db08410e47cef15d/ruff-0.6.9.tar.gz", hash = "sha256:b076ef717a8e5bc819514ee1d602bbdca5b4420ae13a9cf61a0c0a4f53a2baa2", size = 3095355 }
|
1432 |
+
wheels = [
|
1433 |
+
{ url = "https://files.pythonhosted.org/packages/6e/8f/f7a0a0ef1818662efb32ed6df16078c95da7a0a3248d64c2410c1e27799f/ruff-0.6.9-py3-none-linux_armv6l.whl", hash = "sha256:064df58d84ccc0ac0fcd63bc3090b251d90e2a372558c0f057c3f75ed73e1ccd", size = 10440526 },
|
1434 |
+
{ url = "https://files.pythonhosted.org/packages/8b/69/b179a5faf936a9e2ab45bb412a668e4661eded964ccfa19d533f29463ef6/ruff-0.6.9-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:140d4b5c9f5fc7a7b074908a78ab8d384dd7f6510402267bc76c37195c02a7ec", size = 10034612 },
|
1435 |
+
{ url = "https://files.pythonhosted.org/packages/c7/ef/fd1b4be979c579d191eeac37b5cfc0ec906de72c8bcd8595e2c81bb700c1/ruff-0.6.9-py3-none-macosx_11_0_arm64.whl", hash = "sha256:53fd8ca5e82bdee8da7f506d7b03a261f24cd43d090ea9db9a1dc59d9313914c", size = 9706197 },
|
1436 |
+
{ url = "https://files.pythonhosted.org/packages/29/61/b376d775deb5851cb48d893c568b511a6d3625ef2c129ad5698b64fb523c/ruff-0.6.9-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:645d7d8761f915e48a00d4ecc3686969761df69fb561dd914a773c1a8266e14e", size = 10751855 },
|
1437 |
+
{ url = "https://files.pythonhosted.org/packages/13/d7/def9e5f446d75b9a9c19b24231a3a658c075d79163b08582e56fa5dcfa38/ruff-0.6.9-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:eae02b700763e3847595b9d2891488989cac00214da7f845f4bcf2989007d577", size = 10200889 },
|
1438 |
+
{ url = "https://files.pythonhosted.org/packages/6c/d6/7f34160818bcb6e84ce293a5966cba368d9112ff0289b273fbb689046047/ruff-0.6.9-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7d5ccc9e58112441de8ad4b29dcb7a86dc25c5f770e3c06a9d57e0e5eba48829", size = 11038678 },
|
1439 |
+
{ url = "https://files.pythonhosted.org/packages/13/34/a40ff8ae62fb1b26fb8e6fa7e64bc0e0a834b47317880de22edd6bfb54fb/ruff-0.6.9-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:417b81aa1c9b60b2f8edc463c58363075412866ae4e2b9ab0f690dc1e87ac1b5", size = 11808682 },
|
1440 |
+
{ url = "https://files.pythonhosted.org/packages/2e/6d/25a4386ae4009fc798bd10ba48c942d1b0b3e459b5403028f1214b6dd161/ruff-0.6.9-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3c866b631f5fbce896a74a6e4383407ba7507b815ccc52bcedabb6810fdb3ef7", size = 11330446 },
|
1441 |
+
{ url = "https://files.pythonhosted.org/packages/f7/f6/bdf891a9200d692c94ebcd06ae5a2fa5894e522f2c66c2a12dd5d8cb2654/ruff-0.6.9-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7b118afbb3202f5911486ad52da86d1d52305b59e7ef2031cea3425142b97d6f", size = 12483048 },
|
1442 |
+
{ url = "https://files.pythonhosted.org/packages/a7/86/96f4252f41840e325b3fa6c48297e661abb9f564bd7dcc0572398c8daa42/ruff-0.6.9-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a67267654edc23c97335586774790cde402fb6bbdb3c2314f1fc087dee320bfa", size = 10936855 },
|
1443 |
+
{ url = "https://files.pythonhosted.org/packages/45/87/801a52d26c8dbf73424238e9908b9ceac430d903c8ef35eab1b44fcfa2bd/ruff-0.6.9-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:3ef0cc774b00fec123f635ce5c547dac263f6ee9fb9cc83437c5904183b55ceb", size = 10713007 },
|
1444 |
+
{ url = "https://files.pythonhosted.org/packages/be/27/6f7161d90320a389695e32b6ebdbfbedde28ccbf52451e4b723d7ce744ad/ruff-0.6.9-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:12edd2af0c60fa61ff31cefb90aef4288ac4d372b4962c2864aeea3a1a2460c0", size = 10274594 },
|
1445 |
+
{ url = "https://files.pythonhosted.org/packages/00/52/dc311775e7b5f5b19831563cb1572ecce63e62681bccc609867711fae317/ruff-0.6.9-py3-none-musllinux_1_2_i686.whl", hash = "sha256:55bb01caeaf3a60b2b2bba07308a02fca6ab56233302406ed5245180a05c5625", size = 10608024 },
|
1446 |
+
{ url = "https://files.pythonhosted.org/packages/98/b6/be0a1ddcbac65a30c985cf7224c4fce786ba2c51e7efeb5178fe410ed3cf/ruff-0.6.9-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:925d26471fa24b0ce5a6cdfab1bb526fb4159952385f386bdcc643813d472039", size = 10982085 },
|
1447 |
+
{ url = "https://files.pythonhosted.org/packages/bb/a4/c84bc13d0b573cf7bb7d17b16d6d29f84267c92d79b2f478d4ce322e8e72/ruff-0.6.9-py3-none-win32.whl", hash = "sha256:eb61ec9bdb2506cffd492e05ac40e5bc6284873aceb605503d8494180d6fc84d", size = 8522088 },
|
1448 |
+
{ url = "https://files.pythonhosted.org/packages/74/be/fc352bd8ca40daae8740b54c1c3e905a7efe470d420a268cd62150248c91/ruff-0.6.9-py3-none-win_amd64.whl", hash = "sha256:785d31851c1ae91f45b3d8fe23b8ae4b5170089021fbb42402d811135f0b7117", size = 9359275 },
|
1449 |
+
{ url = "https://files.pythonhosted.org/packages/3e/14/fd026bc74ded05e2351681545a5f626e78ef831f8edce064d61acd2e6ec7/ruff-0.6.9-py3-none-win_arm64.whl", hash = "sha256:a9641e31476d601f83cd602608739a0840e348bda93fec9f1ee816f8b6798b93", size = 8679879 },
|
1450 |
]
|
1451 |
|
1452 |
[[package]]
|