-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathuv.lock
More file actions
2226 lines (2093 loc) · 417 KB
/
Copy pathuv.lock
File metadata and controls
2226 lines (2093 loc) · 417 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
version = 1
revision = 3
requires-python = "==3.11.*"
resolution-markers = [
"(platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly' and extra != 'extra-7-maester-rocm' and extra != 'extra-7-maester-rocm-nightly') or (platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly' and extra != 'extra-7-maester-rocm' and extra != 'extra-7-maester-rocm-nightly')",
"platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly' and extra != 'extra-7-maester-rocm' and extra != 'extra-7-maester-rocm-nightly'",
"(platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-7-maester-cuda' and extra != 'extra-7-maester-cuda-nightly' and extra != 'extra-7-maester-rocm' and extra != 'extra-7-maester-rocm-nightly') or (platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-7-maester-cuda' and extra != 'extra-7-maester-cuda-nightly' and extra != 'extra-7-maester-rocm' and extra != 'extra-7-maester-rocm-nightly')",
"platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-7-maester-cuda' and extra != 'extra-7-maester-cuda-nightly' and extra != 'extra-7-maester-rocm' and extra != 'extra-7-maester-rocm-nightly'",
"sys_platform == 'linux' and extra != 'extra-7-maester-cuda' and extra != 'extra-7-maester-cuda-nightly' and extra != 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly'",
"sys_platform == 'linux' and extra != 'extra-7-maester-cuda' and extra != 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm' and extra != 'extra-7-maester-rocm-nightly'",
"sys_platform == 'linux' and extra != 'extra-7-maester-cuda' and extra != 'extra-7-maester-cuda-nightly' and extra != 'extra-7-maester-rocm' and extra != 'extra-7-maester-rocm-nightly'",
"sys_platform == 'darwin' and extra != 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly' and extra != 'extra-7-maester-rocm' and extra != 'extra-7-maester-rocm-nightly'",
"sys_platform == 'darwin' and extra == 'extra-7-maester-cuda' and extra != 'extra-7-maester-cuda-nightly' and extra != 'extra-7-maester-rocm' and extra != 'extra-7-maester-rocm-nightly'",
"sys_platform == 'darwin' and extra != 'extra-7-maester-cuda' and extra != 'extra-7-maester-cuda-nightly' and extra != 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly'",
"sys_platform == 'darwin' and extra != 'extra-7-maester-cuda' and extra != 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm' and extra != 'extra-7-maester-rocm-nightly'",
"sys_platform == 'darwin' and extra != 'extra-7-maester-cuda' and extra != 'extra-7-maester-cuda-nightly' and extra != 'extra-7-maester-rocm' and extra != 'extra-7-maester-rocm-nightly'",
]
supported-markers = [
"sys_platform == 'linux'",
"sys_platform == 'darwin'",
]
conflicts = [[
{ package = "maester", extra = "cuda" },
{ package = "maester", extra = "cuda-nightly" },
], [
{ package = "maester", extra = "rocm" },
{ package = "maester", extra = "rocm-nightly" },
], [
{ package = "maester", extra = "cuda" },
{ package = "maester", extra = "rocm" },
], [
{ package = "maester", extra = "cuda" },
{ package = "maester", extra = "rocm-nightly" },
], [
{ package = "maester", extra = "cuda-nightly" },
{ package = "maester", extra = "rocm" },
], [
{ package = "maester", extra = "cuda-nightly" },
{ package = "maester", extra = "rocm-nightly" },
]]
[[package]]
name = "absl-py"
version = "2.3.1"
source = { registry = "https://pypi.org/simple" }
sdist = { url = "https://files.pythonhosted.org/packages/10/2a/c93173ffa1b39c1d0395b7e842bbdc62e556ca9d8d3b5572926f3e4ca752/absl_py-2.3.1.tar.gz", hash = "sha256:a97820526f7fbfd2ec1bce83f3f25e3a14840dac0d8e02a0b71cd75db3f77fc9", size = 116588, upload-time = "2025-07-03T09:31:44.05Z" }
wheels = [
{ url = "https://files.pythonhosted.org/packages/8f/aa/ba0014cc4659328dc818a28827be78e6d97312ab0cb98105a770924dc11e/absl_py-2.3.1-py3-none-any.whl", hash = "sha256:eeecf07f0c2a93ace0772c92e596ace6d3d3996c042b2128459aaae2a76de11d", size = 135811, upload-time = "2025-07-03T09:31:42.253Z" },
]
[[package]]
name = "aiohappyeyeballs"
version = "2.6.1"
source = { registry = "https://pypi.org/simple" }
sdist = { url = "https://files.pythonhosted.org/packages/26/30/f84a107a9c4331c14b2b586036f40965c128aa4fee4dda5d3d51cb14ad54/aiohappyeyeballs-2.6.1.tar.gz", hash = "sha256:c3f9d0113123803ccadfdf3f0faa505bc78e6a72d1cc4806cbd719826e943558", size = 22760, upload-time = "2025-03-12T01:42:48.764Z" }
wheels = [
{ url = "https://files.pythonhosted.org/packages/0f/15/5bf3b99495fb160b63f95972b81750f18f7f4e02ad051373b669d17d44f2/aiohappyeyeballs-2.6.1-py3-none-any.whl", hash = "sha256:f349ba8f4b75cb25c99c5c2d84e997e485204d2902a9597802b0371f09331fb8", size = 15265, upload-time = "2025-03-12T01:42:47.083Z" },
]
[[package]]
name = "aiohttp"
version = "3.12.15"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "aiohappyeyeballs", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "aiosignal", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "attrs", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "frozenlist", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "multidict", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "propcache", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "yarl", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
]
sdist = { url = "https://files.pythonhosted.org/packages/9b/e7/d92a237d8802ca88483906c388f7c201bbe96cd80a165ffd0ac2f6a8d59f/aiohttp-3.12.15.tar.gz", hash = "sha256:4fc61385e9c98d72fcdf47e6dd81833f47b2f77c114c29cd64a361be57a763a2", size = 7823716, upload-time = "2025-07-29T05:52:32.215Z" }
wheels = [
{ url = "https://files.pythonhosted.org/packages/20/19/9e86722ec8e835959bd97ce8c1efa78cf361fa4531fca372551abcc9cdd6/aiohttp-3.12.15-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:d3ce17ce0220383a0f9ea07175eeaa6aa13ae5a41f30bc61d84df17f0e9b1117", size = 711246, upload-time = "2025-07-29T05:50:15.937Z" },
{ url = "https://files.pythonhosted.org/packages/71/f9/0a31fcb1a7d4629ac9d8f01f1cb9242e2f9943f47f5d03215af91c3c1a26/aiohttp-3.12.15-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:010cc9bbd06db80fe234d9003f67e97a10fe003bfbedb40da7d71c1008eda0fe", size = 483515, upload-time = "2025-07-29T05:50:17.442Z" },
{ url = "https://files.pythonhosted.org/packages/62/6c/94846f576f1d11df0c2e41d3001000527c0fdf63fce7e69b3927a731325d/aiohttp-3.12.15-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3f9d7c55b41ed687b9d7165b17672340187f87a773c98236c987f08c858145a9", size = 471776, upload-time = "2025-07-29T05:50:19.568Z" },
{ url = "https://files.pythonhosted.org/packages/f8/6c/f766d0aaafcee0447fad0328da780d344489c042e25cd58fde566bf40aed/aiohttp-3.12.15-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bc4fbc61bb3548d3b482f9ac7ddd0f18c67e4225aaa4e8552b9f1ac7e6bda9e5", size = 1741977, upload-time = "2025-07-29T05:50:21.665Z" },
{ url = "https://files.pythonhosted.org/packages/17/e5/fb779a05ba6ff44d7bc1e9d24c644e876bfff5abe5454f7b854cace1b9cc/aiohttp-3.12.15-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:7fbc8a7c410bb3ad5d595bb7118147dfbb6449d862cc1125cf8867cb337e8728", size = 1690645, upload-time = "2025-07-29T05:50:23.333Z" },
{ url = "https://files.pythonhosted.org/packages/37/4e/a22e799c2035f5d6a4ad2cf8e7c1d1bd0923192871dd6e367dafb158b14c/aiohttp-3.12.15-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:74dad41b3458dbb0511e760fb355bb0b6689e0630de8a22b1b62a98777136e16", size = 1789437, upload-time = "2025-07-29T05:50:25.007Z" },
{ url = "https://files.pythonhosted.org/packages/28/e5/55a33b991f6433569babb56018b2fb8fb9146424f8b3a0c8ecca80556762/aiohttp-3.12.15-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3b6f0af863cf17e6222b1735a756d664159e58855da99cfe965134a3ff63b0b0", size = 1828482, upload-time = "2025-07-29T05:50:26.693Z" },
{ url = "https://files.pythonhosted.org/packages/c6/82/1ddf0ea4f2f3afe79dffed5e8a246737cff6cbe781887a6a170299e33204/aiohttp-3.12.15-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b5b7fe4972d48a4da367043b8e023fb70a04d1490aa7d68800e465d1b97e493b", size = 1730944, upload-time = "2025-07-29T05:50:28.382Z" },
{ url = "https://files.pythonhosted.org/packages/1b/96/784c785674117b4cb3877522a177ba1b5e4db9ce0fd519430b5de76eec90/aiohttp-3.12.15-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6443cca89553b7a5485331bc9bedb2342b08d073fa10b8c7d1c60579c4a7b9bd", size = 1668020, upload-time = "2025-07-29T05:50:30.032Z" },
{ url = "https://files.pythonhosted.org/packages/12/8a/8b75f203ea7e5c21c0920d84dd24a5c0e971fe1e9b9ebbf29ae7e8e39790/aiohttp-3.12.15-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:6c5f40ec615e5264f44b4282ee27628cea221fcad52f27405b80abb346d9f3f8", size = 1716292, upload-time = "2025-07-29T05:50:31.983Z" },
{ url = "https://files.pythonhosted.org/packages/47/0b/a1451543475bb6b86a5cfc27861e52b14085ae232896a2654ff1231c0992/aiohttp-3.12.15-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:2abbb216a1d3a2fe86dbd2edce20cdc5e9ad0be6378455b05ec7f77361b3ab50", size = 1711451, upload-time = "2025-07-29T05:50:33.989Z" },
{ url = "https://files.pythonhosted.org/packages/55/fd/793a23a197cc2f0d29188805cfc93aa613407f07e5f9da5cd1366afd9d7c/aiohttp-3.12.15-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:db71ce547012a5420a39c1b744d485cfb823564d01d5d20805977f5ea1345676", size = 1691634, upload-time = "2025-07-29T05:50:35.846Z" },
{ url = "https://files.pythonhosted.org/packages/ca/bf/23a335a6670b5f5dfc6d268328e55a22651b440fca341a64fccf1eada0c6/aiohttp-3.12.15-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:ced339d7c9b5030abad5854aa5413a77565e5b6e6248ff927d3e174baf3badf7", size = 1785238, upload-time = "2025-07-29T05:50:37.597Z" },
{ url = "https://files.pythonhosted.org/packages/57/4f/ed60a591839a9d85d40694aba5cef86dde9ee51ce6cca0bb30d6eb1581e7/aiohttp-3.12.15-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:7c7dd29c7b5bda137464dc9bfc738d7ceea46ff70309859ffde8c022e9b08ba7", size = 1805701, upload-time = "2025-07-29T05:50:39.591Z" },
{ url = "https://files.pythonhosted.org/packages/85/e0/444747a9455c5de188c0f4a0173ee701e2e325d4b2550e9af84abb20cdba/aiohttp-3.12.15-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:421da6fd326460517873274875c6c5a18ff225b40da2616083c5a34a7570b685", size = 1718758, upload-time = "2025-07-29T05:50:41.292Z" },
{ url = "https://files.pythonhosted.org/packages/36/ab/1006278d1ffd13a698e5dd4bfa01e5878f6bddefc296c8b62649753ff249/aiohttp-3.12.15-cp311-cp311-win32.whl", hash = "sha256:4420cf9d179ec8dfe4be10e7d0fe47d6d606485512ea2265b0d8c5113372771b", size = 428868, upload-time = "2025-07-29T05:50:43.063Z" },
{ url = "https://files.pythonhosted.org/packages/10/97/ad2b18700708452400278039272032170246a1bf8ec5d832772372c71f1a/aiohttp-3.12.15-cp311-cp311-win_amd64.whl", hash = "sha256:edd533a07da85baa4b423ee8839e3e91681c7bfa19b04260a469ee94b778bf6d", size = 453273, upload-time = "2025-07-29T05:50:44.613Z" },
]
[[package]]
name = "aiosignal"
version = "1.4.0"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "frozenlist", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "typing-extensions", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
]
sdist = { url = "https://files.pythonhosted.org/packages/61/62/06741b579156360248d1ec624842ad0edf697050bbaf7c3e46394e106ad1/aiosignal-1.4.0.tar.gz", hash = "sha256:f47eecd9468083c2029cc99945502cb7708b082c232f9aca65da147157b251c7", size = 25007, upload-time = "2025-07-03T22:54:43.528Z" }
wheels = [
{ url = "https://files.pythonhosted.org/packages/fb/76/641ae371508676492379f16e2fa48f4e2c11741bd63c48be4b12a6b09cba/aiosignal-1.4.0-py3-none-any.whl", hash = "sha256:053243f8b92b990551949e63930a839ff0cf0b0ebbe0597b0f3fb19e1a0fe82e", size = 7490, upload-time = "2025-07-03T22:54:42.156Z" },
]
[[package]]
name = "annotated-types"
version = "0.7.0"
source = { registry = "https://pypi.org/simple" }
sdist = { url = "https://files.pythonhosted.org/packages/ee/67/531ea369ba64dcff5ec9c3402f9f51bf748cec26dde048a2f973a4eea7f5/annotated_types-0.7.0.tar.gz", hash = "sha256:aff07c09a53a08bc8cfccb9c85b05f1aa9a2a6f23728d790723543408344ce89", size = 16081, upload-time = "2024-05-20T21:33:25.928Z" }
wheels = [
{ url = "https://files.pythonhosted.org/packages/78/b6/6307fbef88d9b5ee7421e68d78a9f162e0da4900bc5f5793f6d3d0e34fb8/annotated_types-0.7.0-py3-none-any.whl", hash = "sha256:1f02e8b43a8fbbc3f3e0d4f0f4bfc8131bcb4eebe8849b8e5c773f3a1c582a53", size = 13643, upload-time = "2024-05-20T21:33:24.1Z" },
]
[[package]]
name = "attrs"
version = "25.3.0"
source = { registry = "https://pypi.org/simple" }
sdist = { url = "https://files.pythonhosted.org/packages/5a/b0/1367933a8532ee6ff8d63537de4f1177af4bff9f3e829baf7331f595bb24/attrs-25.3.0.tar.gz", hash = "sha256:75d7cefc7fb576747b2c81b4442d4d4a1ce0900973527c011d1030fd3bf4af1b", size = 812032, upload-time = "2025-03-13T11:10:22.779Z" }
wheels = [
{ url = "https://files.pythonhosted.org/packages/77/06/bb80f5f86020c4551da315d78b3ab75e8228f89f0162f2c3a819e407941a/attrs-25.3.0-py3-none-any.whl", hash = "sha256:427318ce031701fea540783410126f03899a97ffc6f61596ad581ac2e40e3bc3", size = 63815, upload-time = "2025-03-13T11:10:21.14Z" },
]
[[package]]
name = "blobfile"
version = "3.1.0"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "filelock", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "lxml", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "pycryptodomex", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "urllib3", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
]
sdist = { url = "https://files.pythonhosted.org/packages/f0/6d/2e7567da75ddbb24fe979f52284b708da349d67a41042635af36071a5a6b/blobfile-3.1.0.tar.gz", hash = "sha256:d45b6b1fa3b0920732314c23ddbdb4f494ca12f787c2b6eb6bba6faa51382671", size = 77229, upload-time = "2025-09-06T00:36:15.583Z" }
wheels = [
{ url = "https://files.pythonhosted.org/packages/77/a7/51af11120d75af2828f8eede0b13a4caff650d708ac50e62d000aefe1ffb/blobfile-3.1.0-py3-none-any.whl", hash = "sha256:2b4c5e766ebb7dfa20e4990cf6ec3d2106bdc91d632fb9377f170a234c5a5c6a", size = 75741, upload-time = "2025-09-06T00:36:14.11Z" },
]
[[package]]
name = "certifi"
version = "2025.8.3"
source = { registry = "https://pypi.org/simple" }
sdist = { url = "https://files.pythonhosted.org/packages/dc/67/960ebe6bf230a96cda2e0abcf73af550ec4f090005363542f0765df162e0/certifi-2025.8.3.tar.gz", hash = "sha256:e564105f78ded564e3ae7c923924435e1daa7463faeab5bb932bc53ffae63407", size = 162386, upload-time = "2025-08-03T03:07:47.08Z" }
wheels = [
{ url = "https://files.pythonhosted.org/packages/e5/48/1549795ba7742c948d2ad169c1c8cdbae65bc450d6cd753d124b17c8cd32/certifi-2025.8.3-py3-none-any.whl", hash = "sha256:f6c12493cfb1b06ba2ff328595af9350c65d6644968e5d3a2ffd78699af217a5", size = 161216, upload-time = "2025-08-03T03:07:45.777Z" },
]
[[package]]
name = "charset-normalizer"
version = "3.4.3"
source = { registry = "https://pypi.org/simple" }
sdist = { url = "https://files.pythonhosted.org/packages/83/2d/5fd176ceb9b2fc619e63405525573493ca23441330fcdaee6bef9460e924/charset_normalizer-3.4.3.tar.gz", hash = "sha256:6fce4b8500244f6fcb71465d4a4930d132ba9ab8e71a7859e6a5d59851068d14", size = 122371, upload-time = "2025-08-09T07:57:28.46Z" }
wheels = [
{ url = "https://files.pythonhosted.org/packages/7f/b5/991245018615474a60965a7c9cd2b4efbaabd16d582a5547c47ee1c7730b/charset_normalizer-3.4.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:b256ee2e749283ef3ddcff51a675ff43798d92d746d1a6e4631bf8c707d22d0b", size = 204483, upload-time = "2025-08-09T07:55:53.12Z" },
{ url = "https://files.pythonhosted.org/packages/c7/2a/ae245c41c06299ec18262825c1569c5d3298fc920e4ddf56ab011b417efd/charset_normalizer-3.4.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:13faeacfe61784e2559e690fc53fa4c5ae97c6fcedb8eb6fb8d0a15b475d2c64", size = 145520, upload-time = "2025-08-09T07:55:54.712Z" },
{ url = "https://files.pythonhosted.org/packages/3a/a4/b3b6c76e7a635748c4421d2b92c7b8f90a432f98bda5082049af37ffc8e3/charset_normalizer-3.4.3-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:00237675befef519d9af72169d8604a067d92755e84fe76492fef5441db05b91", size = 158876, upload-time = "2025-08-09T07:55:56.024Z" },
{ url = "https://files.pythonhosted.org/packages/e2/e6/63bb0e10f90a8243c5def74b5b105b3bbbfb3e7bb753915fe333fb0c11ea/charset_normalizer-3.4.3-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:585f3b2a80fbd26b048a0be90c5aae8f06605d3c92615911c3a2b03a8a3b796f", size = 156083, upload-time = "2025-08-09T07:55:57.582Z" },
{ url = "https://files.pythonhosted.org/packages/87/df/b7737ff046c974b183ea9aa111b74185ac8c3a326c6262d413bd5a1b8c69/charset_normalizer-3.4.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0e78314bdc32fa80696f72fa16dc61168fda4d6a0c014e0380f9d02f0e5d8a07", size = 150295, upload-time = "2025-08-09T07:55:59.147Z" },
{ url = "https://files.pythonhosted.org/packages/61/f1/190d9977e0084d3f1dc169acd060d479bbbc71b90bf3e7bf7b9927dec3eb/charset_normalizer-3.4.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:96b2b3d1a83ad55310de8c7b4a2d04d9277d5591f40761274856635acc5fcb30", size = 148379, upload-time = "2025-08-09T07:56:00.364Z" },
{ url = "https://files.pythonhosted.org/packages/4c/92/27dbe365d34c68cfe0ca76f1edd70e8705d82b378cb54ebbaeabc2e3029d/charset_normalizer-3.4.3-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:939578d9d8fd4299220161fdd76e86c6a251987476f5243e8864a7844476ba14", size = 160018, upload-time = "2025-08-09T07:56:01.678Z" },
{ url = "https://files.pythonhosted.org/packages/99/04/baae2a1ea1893a01635d475b9261c889a18fd48393634b6270827869fa34/charset_normalizer-3.4.3-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:fd10de089bcdcd1be95a2f73dbe6254798ec1bda9f450d5828c96f93e2536b9c", size = 157430, upload-time = "2025-08-09T07:56:02.87Z" },
{ url = "https://files.pythonhosted.org/packages/2f/36/77da9c6a328c54d17b960c89eccacfab8271fdaaa228305330915b88afa9/charset_normalizer-3.4.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:1e8ac75d72fa3775e0b7cb7e4629cec13b7514d928d15ef8ea06bca03ef01cae", size = 151600, upload-time = "2025-08-09T07:56:04.089Z" },
{ url = "https://files.pythonhosted.org/packages/64/d4/9eb4ff2c167edbbf08cdd28e19078bf195762e9bd63371689cab5ecd3d0d/charset_normalizer-3.4.3-cp311-cp311-win32.whl", hash = "sha256:6cf8fd4c04756b6b60146d98cd8a77d0cdae0e1ca20329da2ac85eed779b6849", size = 99616, upload-time = "2025-08-09T07:56:05.658Z" },
{ url = "https://files.pythonhosted.org/packages/f4/9c/996a4a028222e7761a96634d1820de8a744ff4327a00ada9c8942033089b/charset_normalizer-3.4.3-cp311-cp311-win_amd64.whl", hash = "sha256:31a9a6f775f9bcd865d88ee350f0ffb0e25936a7f930ca98995c05abf1faf21c", size = 107108, upload-time = "2025-08-09T07:56:07.176Z" },
{ url = "https://files.pythonhosted.org/packages/8a/1f/f041989e93b001bc4e44bb1669ccdcf54d3f00e628229a85b08d330615c5/charset_normalizer-3.4.3-py3-none-any.whl", hash = "sha256:ce571ab16d890d23b5c278547ba694193a45011ff86a9162a71307ed9f86759a", size = 53175, upload-time = "2025-08-09T07:57:26.864Z" },
]
[[package]]
name = "click"
version = "8.3.0"
source = { registry = "https://pypi.org/simple" }
sdist = { url = "https://files.pythonhosted.org/packages/46/61/de6cd827efad202d7057d93e0fed9294b96952e188f7384832791c7b2254/click-8.3.0.tar.gz", hash = "sha256:e7b8232224eba16f4ebe410c25ced9f7875cb5f3263ffc93cc3e8da705e229c4", size = 276943, upload-time = "2025-09-18T17:32:23.696Z" }
wheels = [
{ url = "https://files.pythonhosted.org/packages/db/d3/9dcc0f5797f070ec8edf30fbadfb200e71d9db6b84d211e3b2085a7589a0/click-8.3.0-py3-none-any.whl", hash = "sha256:9b9f285302c6e3064f4330c05f05b81945b2a39544279343e6e7c5f27a9baddc", size = 107295, upload-time = "2025-09-18T17:32:22.42Z" },
]
[[package]]
name = "contourpy"
version = "1.3.3"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "numpy", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
]
sdist = { url = "https://files.pythonhosted.org/packages/58/01/1253e6698a07380cd31a736d248a3f2a50a7c88779a1813da27503cadc2a/contourpy-1.3.3.tar.gz", hash = "sha256:083e12155b210502d0bca491432bb04d56dc3432f95a979b429f2848c3dbe880", size = 13466174, upload-time = "2025-07-26T12:03:12.549Z" }
wheels = [
{ url = "https://files.pythonhosted.org/packages/91/2e/c4390a31919d8a78b90e8ecf87cd4b4c4f05a5b48d05ec17db8e5404c6f4/contourpy-1.3.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:709a48ef9a690e1343202916450bc48b9e51c049b089c7f79a267b46cffcdaa1", size = 288773, upload-time = "2025-07-26T12:01:02.277Z" },
{ url = "https://files.pythonhosted.org/packages/0d/44/c4b0b6095fef4dc9c420e041799591e3b63e9619e3044f7f4f6c21c0ab24/contourpy-1.3.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:23416f38bfd74d5d28ab8429cc4d63fa67d5068bd711a85edb1c3fb0c3e2f381", size = 270149, upload-time = "2025-07-26T12:01:04.072Z" },
{ url = "https://files.pythonhosted.org/packages/30/2e/dd4ced42fefac8470661d7cb7e264808425e6c5d56d175291e93890cce09/contourpy-1.3.3-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:929ddf8c4c7f348e4c0a5a3a714b5c8542ffaa8c22954862a46ca1813b667ee7", size = 329222, upload-time = "2025-07-26T12:01:05.688Z" },
{ url = "https://files.pythonhosted.org/packages/f2/74/cc6ec2548e3d276c71389ea4802a774b7aa3558223b7bade3f25787fafc2/contourpy-1.3.3-cp311-cp311-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:9e999574eddae35f1312c2b4b717b7885d4edd6cb46700e04f7f02db454e67c1", size = 377234, upload-time = "2025-07-26T12:01:07.054Z" },
{ url = "https://files.pythonhosted.org/packages/03/b3/64ef723029f917410f75c09da54254c5f9ea90ef89b143ccadb09df14c15/contourpy-1.3.3-cp311-cp311-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:0bf67e0e3f482cb69779dd3061b534eb35ac9b17f163d851e2a547d56dba0a3a", size = 380555, upload-time = "2025-07-26T12:01:08.801Z" },
{ url = "https://files.pythonhosted.org/packages/5f/4b/6157f24ca425b89fe2eb7e7be642375711ab671135be21e6faa100f7448c/contourpy-1.3.3-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:51e79c1f7470158e838808d4a996fa9bac72c498e93d8ebe5119bc1e6becb0db", size = 355238, upload-time = "2025-07-26T12:01:10.319Z" },
{ url = "https://files.pythonhosted.org/packages/98/56/f914f0dd678480708a04cfd2206e7c382533249bc5001eb9f58aa693e200/contourpy-1.3.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:598c3aaece21c503615fd59c92a3598b428b2f01bfb4b8ca9c4edeecc2438620", size = 1326218, upload-time = "2025-07-26T12:01:12.659Z" },
{ url = "https://files.pythonhosted.org/packages/fb/d7/4a972334a0c971acd5172389671113ae82aa7527073980c38d5868ff1161/contourpy-1.3.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:322ab1c99b008dad206d406bb61d014cf0174df491ae9d9d0fac6a6fda4f977f", size = 1392867, upload-time = "2025-07-26T12:01:15.533Z" },
{ url = "https://files.pythonhosted.org/packages/75/3e/f2cc6cd56dc8cff46b1a56232eabc6feea52720083ea71ab15523daab796/contourpy-1.3.3-cp311-cp311-win32.whl", hash = "sha256:fd907ae12cd483cd83e414b12941c632a969171bf90fc937d0c9f268a31cafff", size = 183677, upload-time = "2025-07-26T12:01:17.088Z" },
{ url = "https://files.pythonhosted.org/packages/98/4b/9bd370b004b5c9d8045c6c33cf65bae018b27aca550a3f657cdc99acdbd8/contourpy-1.3.3-cp311-cp311-win_amd64.whl", hash = "sha256:3519428f6be58431c56581f1694ba8e50626f2dd550af225f82fb5f5814d2a42", size = 225234, upload-time = "2025-07-26T12:01:18.256Z" },
{ url = "https://files.pythonhosted.org/packages/d9/b6/71771e02c2e004450c12b1120a5f488cad2e4d5b590b1af8bad060360fe4/contourpy-1.3.3-cp311-cp311-win_arm64.whl", hash = "sha256:15ff10bfada4bf92ec8b31c62bf7c1834c244019b4a33095a68000d7075df470", size = 193123, upload-time = "2025-07-26T12:01:19.848Z" },
{ url = "https://files.pythonhosted.org/packages/a5/29/8dcfe16f0107943fa92388c23f6e05cff0ba58058c4c95b00280d4c75a14/contourpy-1.3.3-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:cd5dfcaeb10f7b7f9dc8941717c6c2ade08f587be2226222c12b25f0483ed497", size = 278809, upload-time = "2025-07-26T12:02:52.74Z" },
{ url = "https://files.pythonhosted.org/packages/85/a9/8b37ef4f7dafeb335daee3c8254645ef5725be4d9c6aa70b50ec46ef2f7e/contourpy-1.3.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:0c1fc238306b35f246d61a1d416a627348b5cf0648648a031e14bb8705fcdfe8", size = 261593, upload-time = "2025-07-26T12:02:54.037Z" },
{ url = "https://files.pythonhosted.org/packages/0a/59/ebfb8c677c75605cc27f7122c90313fd2f375ff3c8d19a1694bda74aaa63/contourpy-1.3.3-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:70f9aad7de812d6541d29d2bbf8feb22ff7e1c299523db288004e3157ff4674e", size = 302202, upload-time = "2025-07-26T12:02:55.947Z" },
{ url = "https://files.pythonhosted.org/packages/3c/37/21972a15834d90bfbfb009b9d004779bd5a07a0ec0234e5ba8f64d5736f4/contourpy-1.3.3-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5ed3657edf08512fc3fe81b510e35c2012fbd3081d2e26160f27ca28affec989", size = 329207, upload-time = "2025-07-26T12:02:57.468Z" },
{ url = "https://files.pythonhosted.org/packages/0c/58/bd257695f39d05594ca4ad60df5bcb7e32247f9951fd09a9b8edb82d1daa/contourpy-1.3.3-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:3d1a3799d62d45c18bafd41c5fa05120b96a28079f2393af559b843d1a966a77", size = 225315, upload-time = "2025-07-26T12:02:58.801Z" },
]
[[package]]
name = "cut-cross-entropy"
version = "25.9.3"
source = { git = "https://github.com/apple/ml-cross-entropy.git#b7a02791b234e187b524fb1dba6a812d521b203a" }
dependencies = [
{ name = "torch", version = "2.7.1+cu128", source = { registry = "https://download.pytorch.org/whl/cu128" }, marker = "(sys_platform == 'darwin' and extra == 'extra-7-maester-cuda') or (sys_platform == 'linux' and extra == 'extra-7-maester-cuda') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'darwin' and extra != 'extra-7-maester-cuda' and extra != 'extra-7-maester-cuda-nightly' and extra != 'extra-7-maester-rocm' and extra != 'extra-7-maester-rocm-nightly') or (sys_platform == 'linux' and extra != 'extra-7-maester-cuda' and extra != 'extra-7-maester-cuda-nightly' and extra != 'extra-7-maester-rocm' and extra != 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "torch", version = "2.8.0+rocm6.3", source = { registry = "https://download.pytorch.org/whl/rocm6.3" }, marker = "(sys_platform == 'darwin' and extra == 'extra-7-maester-rocm') or (sys_platform == 'linux' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "torch", version = "2.10.0.dev20250926+rocm6.3", source = { registry = "https://download.pytorch.org/whl/nightly/rocm6.3" }, marker = "(sys_platform == 'darwin' and extra == 'extra-7-maester-rocm-nightly') or (sys_platform == 'linux' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "torch", version = "2.10.0.dev20250929+cu128", source = { registry = "https://download.pytorch.org/whl/nightly/cu128" }, marker = "(sys_platform == 'darwin' and extra == 'extra-7-maester-cuda-nightly') or (sys_platform == 'linux' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "triton", version = "3.3.1", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'extra-7-maester-cuda') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "triton", version = "3.4.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra != 'extra-7-maester-cuda') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly')" },
]
[[package]]
name = "cycler"
version = "0.12.1"
source = { registry = "https://pypi.org/simple" }
sdist = { url = "https://files.pythonhosted.org/packages/a9/95/a3dbbb5028f35eafb79008e7522a75244477d2838f38cbb722248dabc2a8/cycler-0.12.1.tar.gz", hash = "sha256:88bb128f02ba341da8ef447245a9e138fae777f6a23943da4540077d3601eb1c", size = 7615, upload-time = "2023-10-07T05:32:18.335Z" }
wheels = [
{ url = "https://files.pythonhosted.org/packages/e7/05/c19819d5e3d95294a6f5947fb9b9629efb316b96de511b418c53d245aae6/cycler-0.12.1-py3-none-any.whl", hash = "sha256:85cef7cff222d8644161529808465972e51340599459b8ac3ccbac5a854e0d30", size = 8321, upload-time = "2023-10-07T05:32:16.783Z" },
]
[[package]]
name = "datasets"
version = "4.1.1"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "dill", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "filelock", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "fsspec", extra = ["http"], marker = "sys_platform == 'darwin' or sys_platform == 'linux' or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "huggingface-hub", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "multiprocess", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "numpy", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "packaging", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "pandas", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "pyarrow", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "pyyaml", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "requests", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "tqdm", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "xxhash", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
]
sdist = { url = "https://files.pythonhosted.org/packages/91/a4/73f8e6ef52c535e1d20d5b2ca83bfe6de399d8b8b8a61ccc8d63d60735aa/datasets-4.1.1.tar.gz", hash = "sha256:7d8d5ba8b12861d2c44bfff9c83484ebfafff1ff553371e5901a8d3aab5450e2", size = 579324, upload-time = "2025-09-18T13:14:27.108Z" }
wheels = [
{ url = "https://files.pythonhosted.org/packages/f4/c8/09012ac195a0aab58755800d2efdc0e7d5905053509f12cb5d136c911cda/datasets-4.1.1-py3-none-any.whl", hash = "sha256:62e4f6899a36be9ec74a7e759a6951253cc85b3fcfa0a759b0efa8353b149dac", size = 503623, upload-time = "2025-09-18T13:14:25.111Z" },
]
[[package]]
name = "dill"
version = "0.4.0"
source = { registry = "https://pypi.org/simple" }
sdist = { url = "https://files.pythonhosted.org/packages/12/80/630b4b88364e9a8c8c5797f4602d0f76ef820909ee32f0bacb9f90654042/dill-0.4.0.tar.gz", hash = "sha256:0633f1d2df477324f53a895b02c901fb961bdbf65a17122586ea7019292cbcf0", size = 186976, upload-time = "2025-04-16T00:41:48.867Z" }
wheels = [
{ url = "https://files.pythonhosted.org/packages/50/3d/9373ad9c56321fdab5b41197068e1d8c25883b3fea29dd361f9b55116869/dill-0.4.0-py3-none-any.whl", hash = "sha256:44f54bf6412c2c8464c14e8243eb163690a9800dbe2c367330883b19c7561049", size = 119668, upload-time = "2025-04-16T00:41:47.671Z" },
]
[[package]]
name = "filelock"
version = "3.19.1"
source = { registry = "https://pypi.org/simple" }
sdist = { url = "https://files.pythonhosted.org/packages/40/bb/0ab3e58d22305b6f5440629d20683af28959bf793d98d11950e305c1c326/filelock-3.19.1.tar.gz", hash = "sha256:66eda1888b0171c998b35be2bcc0f6d75c388a7ce20c3f3f37aa8e96c2dddf58", size = 17687, upload-time = "2025-08-14T16:56:03.016Z" }
wheels = [
{ url = "https://files.pythonhosted.org/packages/42/14/42b2651a2f46b022ccd948bca9f2d5af0fd8929c4eec235b8d6d844fbe67/filelock-3.19.1-py3-none-any.whl", hash = "sha256:d38e30481def20772f5baf097c122c3babc4fcdb7e14e57049eb9d88c6dc017d", size = 15988, upload-time = "2025-08-14T16:56:01.633Z" },
]
[[package]]
name = "fonttools"
version = "4.60.0"
source = { registry = "https://pypi.org/simple" }
sdist = { url = "https://files.pythonhosted.org/packages/27/d9/4eabd956fe123651a1f0efe29d9758b3837b5ae9a98934bdb571117033bb/fonttools-4.60.0.tar.gz", hash = "sha256:8f5927f049091a0ca74d35cce7f78e8f7775c83a6901a8fbe899babcc297146a", size = 3553671, upload-time = "2025-09-17T11:34:01.504Z" }
wheels = [
{ url = "https://files.pythonhosted.org/packages/da/3d/c57731fbbf204ef1045caca28d5176430161ead73cd9feac3e9d9ef77ee6/fonttools-4.60.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:a9106c202d68ff5f9b4a0094c4d7ad2eaa7e9280f06427b09643215e706eb016", size = 2830883, upload-time = "2025-09-17T11:32:10.552Z" },
{ url = "https://files.pythonhosted.org/packages/cc/2d/b7a6ebaed464ce441c755252cc222af11edc651d17c8f26482f429cc2c0e/fonttools-4.60.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:9da3a4a3f2485b156bb429b4f8faa972480fc01f553f7c8c80d05d48f17eec89", size = 2356005, upload-time = "2025-09-17T11:32:13.248Z" },
{ url = "https://files.pythonhosted.org/packages/ee/c2/ea834e921324e2051403e125c1fe0bfbdde4951a7c1784e4ae6bdbd286cc/fonttools-4.60.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1f84de764c6057b2ffd4feb50ddef481d92e348f0c70f2c849b723118d352bf3", size = 5041201, upload-time = "2025-09-17T11:32:15.373Z" },
{ url = "https://files.pythonhosted.org/packages/93/3c/1c64a338e9aa410d2d0728827d5bb1301463078cb225b94589f27558b427/fonttools-4.60.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:800b3fa0d5c12ddff02179d45b035a23989a6c597a71c8035c010fff3b2ef1bb", size = 4977696, upload-time = "2025-09-17T11:32:17.674Z" },
{ url = "https://files.pythonhosted.org/packages/07/cc/c8c411a0d9732bb886b870e052f20658fec9cf91118314f253950d2c1d65/fonttools-4.60.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8dd68f60b030277f292a582d31c374edfadc60bb33d51ec7b6cd4304531819ba", size = 5020386, upload-time = "2025-09-17T11:32:20.089Z" },
{ url = "https://files.pythonhosted.org/packages/13/01/1d3bc07cf92e7f4fc27f06d4494bf6078dc595b2e01b959157a4fd23df12/fonttools-4.60.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:53328e3ca9e5c8660ef6de07c35f8f312c189b757535e12141be7a8ec942de6e", size = 5131575, upload-time = "2025-09-17T11:32:22.582Z" },
{ url = "https://files.pythonhosted.org/packages/5a/16/08db3917ee19e89d2eb0ee637d37cd4136c849dc421ff63f406b9165c1a1/fonttools-4.60.0-cp311-cp311-win32.whl", hash = "sha256:d493c175ddd0b88a5376e61163e3e6fde3be8b8987db9b092e0a84650709c9e7", size = 2229297, upload-time = "2025-09-17T11:32:24.834Z" },
{ url = "https://files.pythonhosted.org/packages/d2/0b/76764da82c0dfcea144861f568d9e83f4b921e84f2be617b451257bb25a7/fonttools-4.60.0-cp311-cp311-win_amd64.whl", hash = "sha256:cc2770c9dc49c2d0366e9683f4d03beb46c98042d7ccc8ddbadf3459ecb051a7", size = 2277193, upload-time = "2025-09-17T11:32:27.094Z" },
{ url = "https://files.pythonhosted.org/packages/f9/a4/247d3e54eb5ed59e94e09866cfc4f9567e274fbf310ba390711851f63b3b/fonttools-4.60.0-py3-none-any.whl", hash = "sha256:496d26e4d14dcccdd6ada2e937e4d174d3138e3d73f5c9b6ec6eb2fd1dab4f66", size = 1142186, upload-time = "2025-09-17T11:33:59.287Z" },
]
[[package]]
name = "frozenlist"
version = "1.7.0"
source = { registry = "https://pypi.org/simple" }
sdist = { url = "https://files.pythonhosted.org/packages/79/b1/b64018016eeb087db503b038296fd782586432b9c077fc5c7839e9cb6ef6/frozenlist-1.7.0.tar.gz", hash = "sha256:2e310d81923c2437ea8670467121cc3e9b0f76d3043cc1d2331d56c7fb7a3a8f", size = 45078, upload-time = "2025-06-09T23:02:35.538Z" }
wheels = [
{ url = "https://files.pythonhosted.org/packages/34/7e/803dde33760128acd393a27eb002f2020ddb8d99d30a44bfbaab31c5f08a/frozenlist-1.7.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:aa51e147a66b2d74de1e6e2cf5921890de6b0f4820b257465101d7f37b49fb5a", size = 82251, upload-time = "2025-06-09T23:00:16.279Z" },
{ url = "https://files.pythonhosted.org/packages/75/a9/9c2c5760b6ba45eae11334db454c189d43d34a4c0b489feb2175e5e64277/frozenlist-1.7.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:9b35db7ce1cd71d36ba24f80f0c9e7cff73a28d7a74e91fe83e23d27c7828750", size = 48183, upload-time = "2025-06-09T23:00:17.698Z" },
{ url = "https://files.pythonhosted.org/packages/47/be/4038e2d869f8a2da165f35a6befb9158c259819be22eeaf9c9a8f6a87771/frozenlist-1.7.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:34a69a85e34ff37791e94542065c8416c1afbf820b68f720452f636d5fb990cd", size = 47107, upload-time = "2025-06-09T23:00:18.952Z" },
{ url = "https://files.pythonhosted.org/packages/79/26/85314b8a83187c76a37183ceed886381a5f992975786f883472fcb6dc5f2/frozenlist-1.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4a646531fa8d82c87fe4bb2e596f23173caec9185bfbca5d583b4ccfb95183e2", size = 237333, upload-time = "2025-06-09T23:00:20.275Z" },
{ url = "https://files.pythonhosted.org/packages/1f/fd/e5b64f7d2c92a41639ffb2ad44a6a82f347787abc0c7df5f49057cf11770/frozenlist-1.7.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:79b2ffbba483f4ed36a0f236ccb85fbb16e670c9238313709638167670ba235f", size = 231724, upload-time = "2025-06-09T23:00:21.705Z" },
{ url = "https://files.pythonhosted.org/packages/20/fb/03395c0a43a5976af4bf7534759d214405fbbb4c114683f434dfdd3128ef/frozenlist-1.7.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a26f205c9ca5829cbf82bb2a84b5c36f7184c4316617d7ef1b271a56720d6b30", size = 245842, upload-time = "2025-06-09T23:00:23.148Z" },
{ url = "https://files.pythonhosted.org/packages/d0/15/c01c8e1dffdac5d9803507d824f27aed2ba76b6ed0026fab4d9866e82f1f/frozenlist-1.7.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:bcacfad3185a623fa11ea0e0634aac7b691aa925d50a440f39b458e41c561d98", size = 239767, upload-time = "2025-06-09T23:00:25.103Z" },
{ url = "https://files.pythonhosted.org/packages/14/99/3f4c6fe882c1f5514b6848aa0a69b20cb5e5d8e8f51a339d48c0e9305ed0/frozenlist-1.7.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:72c1b0fe8fe451b34f12dce46445ddf14bd2a5bcad7e324987194dc8e3a74c86", size = 224130, upload-time = "2025-06-09T23:00:27.061Z" },
{ url = "https://files.pythonhosted.org/packages/4d/83/220a374bd7b2aeba9d0725130665afe11de347d95c3620b9b82cc2fcab97/frozenlist-1.7.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:61d1a5baeaac6c0798ff6edfaeaa00e0e412d49946c53fae8d4b8e8b3566c4ae", size = 235301, upload-time = "2025-06-09T23:00:29.02Z" },
{ url = "https://files.pythonhosted.org/packages/03/3c/3e3390d75334a063181625343e8daab61b77e1b8214802cc4e8a1bb678fc/frozenlist-1.7.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:7edf5c043c062462f09b6820de9854bf28cc6cc5b6714b383149745e287181a8", size = 234606, upload-time = "2025-06-09T23:00:30.514Z" },
{ url = "https://files.pythonhosted.org/packages/23/1e/58232c19608b7a549d72d9903005e2d82488f12554a32de2d5fb59b9b1ba/frozenlist-1.7.0-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:d50ac7627b3a1bd2dcef6f9da89a772694ec04d9a61b66cf87f7d9446b4a0c31", size = 248372, upload-time = "2025-06-09T23:00:31.966Z" },
{ url = "https://files.pythonhosted.org/packages/c0/a4/e4a567e01702a88a74ce8a324691e62a629bf47d4f8607f24bf1c7216e7f/frozenlist-1.7.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:ce48b2fece5aeb45265bb7a58259f45027db0abff478e3077e12b05b17fb9da7", size = 229860, upload-time = "2025-06-09T23:00:33.375Z" },
{ url = "https://files.pythonhosted.org/packages/73/a6/63b3374f7d22268b41a9db73d68a8233afa30ed164c46107b33c4d18ecdd/frozenlist-1.7.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:fe2365ae915a1fafd982c146754e1de6ab3478def8a59c86e1f7242d794f97d5", size = 245893, upload-time = "2025-06-09T23:00:35.002Z" },
{ url = "https://files.pythonhosted.org/packages/6d/eb/d18b3f6e64799a79673c4ba0b45e4cfbe49c240edfd03a68be20002eaeaa/frozenlist-1.7.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:45a6f2fdbd10e074e8814eb98b05292f27bad7d1883afbe009d96abdcf3bc898", size = 246323, upload-time = "2025-06-09T23:00:36.468Z" },
{ url = "https://files.pythonhosted.org/packages/5a/f5/720f3812e3d06cd89a1d5db9ff6450088b8f5c449dae8ffb2971a44da506/frozenlist-1.7.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:21884e23cffabb157a9dd7e353779077bf5b8f9a58e9b262c6caad2ef5f80a56", size = 233149, upload-time = "2025-06-09T23:00:37.963Z" },
{ url = "https://files.pythonhosted.org/packages/69/68/03efbf545e217d5db8446acfd4c447c15b7c8cf4dbd4a58403111df9322d/frozenlist-1.7.0-cp311-cp311-win32.whl", hash = "sha256:284d233a8953d7b24f9159b8a3496fc1ddc00f4db99c324bd5fb5f22d8698ea7", size = 39565, upload-time = "2025-06-09T23:00:39.753Z" },
{ url = "https://files.pythonhosted.org/packages/58/17/fe61124c5c333ae87f09bb67186d65038834a47d974fc10a5fadb4cc5ae1/frozenlist-1.7.0-cp311-cp311-win_amd64.whl", hash = "sha256:387cbfdcde2f2353f19c2f66bbb52406d06ed77519ac7ee21be0232147c2592d", size = 44019, upload-time = "2025-06-09T23:00:40.988Z" },
{ url = "https://files.pythonhosted.org/packages/ee/45/b82e3c16be2182bff01179db177fe144d58b5dc787a7d4492c6ed8b9317f/frozenlist-1.7.0-py3-none-any.whl", hash = "sha256:9a5af342e34f7e97caf8c995864c7a396418ae2859cc6fdf1b1073020d516a7e", size = 13106, upload-time = "2025-06-09T23:02:34.204Z" },
]
[[package]]
name = "fsspec"
version = "2025.9.0"
source = { registry = "https://pypi.org/simple" }
sdist = { url = "https://files.pythonhosted.org/packages/de/e0/bab50af11c2d75c9c4a2a26a5254573c0bd97cea152254401510950486fa/fsspec-2025.9.0.tar.gz", hash = "sha256:19fd429483d25d28b65ec68f9f4adc16c17ea2c7c7bf54ec61360d478fb19c19", size = 304847, upload-time = "2025-09-02T19:10:49.215Z" }
wheels = [
{ url = "https://files.pythonhosted.org/packages/47/71/70db47e4f6ce3e5c37a607355f80da8860a33226be640226ac52cb05ef2e/fsspec-2025.9.0-py3-none-any.whl", hash = "sha256:530dc2a2af60a414a832059574df4a6e10cce927f6f4a78209390fe38955cfb7", size = 199289, upload-time = "2025-09-02T19:10:47.708Z" },
]
[package.optional-dependencies]
http = [
{ name = "aiohttp", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
]
[[package]]
name = "gitdb"
version = "4.0.12"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "smmap", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
]
sdist = { url = "https://files.pythonhosted.org/packages/72/94/63b0fc47eb32792c7ba1fe1b694daec9a63620db1e313033d18140c2320a/gitdb-4.0.12.tar.gz", hash = "sha256:5ef71f855d191a3326fcfbc0d5da835f26b13fbcba60c32c21091c349ffdb571", size = 394684, upload-time = "2025-01-02T07:20:46.413Z" }
wheels = [
{ url = "https://files.pythonhosted.org/packages/a0/61/5c78b91c3143ed5c14207f463aecfc8f9dbb5092fb2869baf37c273b2705/gitdb-4.0.12-py3-none-any.whl", hash = "sha256:67073e15955400952c6565cc3e707c554a4eea2e428946f7a4c162fab9bd9bcf", size = 62794, upload-time = "2025-01-02T07:20:43.624Z" },
]
[[package]]
name = "gitpython"
version = "3.1.45"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "gitdb", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
]
sdist = { url = "https://files.pythonhosted.org/packages/9a/c8/dd58967d119baab745caec2f9d853297cec1989ec1d63f677d3880632b88/gitpython-3.1.45.tar.gz", hash = "sha256:85b0ee964ceddf211c41b9f27a49086010a190fd8132a24e21f362a4b36a791c", size = 215076, upload-time = "2025-07-24T03:45:54.871Z" }
wheels = [
{ url = "https://files.pythonhosted.org/packages/01/61/d4b89fec821f72385526e1b9d9a3a0385dda4a72b206d28049e2c7cd39b8/gitpython-3.1.45-py3-none-any.whl", hash = "sha256:8908cb2e02fb3b93b7eb0f2827125cb699869470432cc885f019b8fd0fccff77", size = 208168, upload-time = "2025-07-24T03:45:52.517Z" },
]
[[package]]
name = "grpcio"
version = "1.75.1"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "typing-extensions", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
]
sdist = { url = "https://files.pythonhosted.org/packages/9d/f7/8963848164c7604efb3a3e6ee457fdb3a469653e19002bd24742473254f8/grpcio-1.75.1.tar.gz", hash = "sha256:3e81d89ece99b9ace23a6916880baca613c03a799925afb2857887efa8b1b3d2", size = 12731327, upload-time = "2025-09-26T09:03:36.887Z" }
wheels = [
{ url = "https://files.pythonhosted.org/packages/0c/3c/35ca9747473a306bfad0cee04504953f7098527cd112a4ab55c55af9e7bd/grpcio-1.75.1-cp311-cp311-linux_armv7l.whl", hash = "sha256:573855ca2e58e35032aff30bfbd1ee103fbcf4472e4b28d4010757700918e326", size = 5709761, upload-time = "2025-09-26T09:01:28.528Z" },
{ url = "https://files.pythonhosted.org/packages/c9/2c/ecbcb4241e4edbe85ac2663f885726fea0e947767401288b50d8fdcb9200/grpcio-1.75.1-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:6a4996a2c8accc37976dc142d5991adf60733e223e5c9a2219e157dc6a8fd3a2", size = 11496691, upload-time = "2025-09-26T09:01:31.214Z" },
{ url = "https://files.pythonhosted.org/packages/81/40/bc07aee2911f0d426fa53fe636216100c31a8ea65a400894f280274cb023/grpcio-1.75.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:b1ea1bbe77ecbc1be00af2769f4ae4a88ce93be57a4f3eebd91087898ed749f9", size = 6296084, upload-time = "2025-09-26T09:01:34.596Z" },
{ url = "https://files.pythonhosted.org/packages/b8/d1/10c067f6c67396cbf46448b80f27583b5e8c4b46cdfbe18a2a02c2c2f290/grpcio-1.75.1-cp311-cp311-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:e5b425aee54cc5e3e3c58f00731e8a33f5567965d478d516d35ef99fd648ab68", size = 6950403, upload-time = "2025-09-26T09:01:36.736Z" },
{ url = "https://files.pythonhosted.org/packages/3f/42/5f628abe360b84dfe8dd8f32be6b0606dc31dc04d3358eef27db791ea4d5/grpcio-1.75.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:0049a7bf547dafaeeb1db17079ce79596c298bfe308fc084d023c8907a845b9a", size = 6470166, upload-time = "2025-09-26T09:01:39.474Z" },
{ url = "https://files.pythonhosted.org/packages/c3/93/a24035080251324019882ee2265cfde642d6476c0cf8eb207fc693fcebdc/grpcio-1.75.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:5b8ea230c7f77c0a1a3208a04a1eda164633fb0767b4cefd65a01079b65e5b1f", size = 7107828, upload-time = "2025-09-26T09:01:41.782Z" },
{ url = "https://files.pythonhosted.org/packages/e4/f8/d18b984c1c9ba0318e3628dbbeb6af77a5007f02abc378c845070f2d3edd/grpcio-1.75.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:36990d629c3c9fb41e546414e5af52d0a7af37ce7113d9682c46d7e2919e4cca", size = 8045421, upload-time = "2025-09-26T09:01:45.835Z" },
{ url = "https://files.pythonhosted.org/packages/7e/b6/4bf9aacff45deca5eac5562547ed212556b831064da77971a4e632917da3/grpcio-1.75.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:b10ad908118d38c2453ade7ff790e5bce36580c3742919007a2a78e3a1e521ca", size = 7503290, upload-time = "2025-09-26T09:01:49.28Z" },
{ url = "https://files.pythonhosted.org/packages/3b/15/d8d69d10223cb54c887a2180bd29fe5fa2aec1d4995c8821f7aa6eaf72e4/grpcio-1.75.1-cp311-cp311-win32.whl", hash = "sha256:d6be2b5ee7bea656c954dcf6aa8093c6f0e6a3ef9945c99d99fcbfc88c5c0bfe", size = 3950631, upload-time = "2025-09-26T09:01:51.23Z" },
{ url = "https://files.pythonhosted.org/packages/8a/40/7b8642d45fff6f83300c24eaac0380a840e5e7fe0e8d80afd31b99d7134e/grpcio-1.75.1-cp311-cp311-win_amd64.whl", hash = "sha256:61c692fb05956b17dd6d1ab480f7f10ad0536dba3bc8fd4e3c7263dc244ed772", size = 4646131, upload-time = "2025-09-26T09:01:53.266Z" },
]
[[package]]
name = "hf-xet"
version = "1.1.10"
source = { registry = "https://pypi.org/simple" }
sdist = { url = "https://files.pythonhosted.org/packages/74/31/feeddfce1748c4a233ec1aa5b7396161c07ae1aa9b7bdbc9a72c3c7dd768/hf_xet-1.1.10.tar.gz", hash = "sha256:408aef343800a2102374a883f283ff29068055c111f003ff840733d3b715bb97", size = 487910, upload-time = "2025-09-12T20:10:27.12Z" }
wheels = [
{ url = "https://files.pythonhosted.org/packages/f7/a2/343e6d05de96908366bdc0081f2d8607d61200be2ac802769c4284cc65bd/hf_xet-1.1.10-cp37-abi3-macosx_10_12_x86_64.whl", hash = "sha256:686083aca1a6669bc85c21c0563551cbcdaa5cf7876a91f3d074a030b577231d", size = 2761466, upload-time = "2025-09-12T20:10:22.836Z" },
{ url = "https://files.pythonhosted.org/packages/31/f9/6215f948ac8f17566ee27af6430ea72045e0418ce757260248b483f4183b/hf_xet-1.1.10-cp37-abi3-macosx_11_0_arm64.whl", hash = "sha256:71081925383b66b24eedff3013f8e6bbd41215c3338be4b94ba75fd75b21513b", size = 2623807, upload-time = "2025-09-12T20:10:21.118Z" },
{ url = "https://files.pythonhosted.org/packages/15/07/86397573efefff941e100367bbda0b21496ffcdb34db7ab51912994c32a2/hf_xet-1.1.10-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6b6bceb6361c80c1cc42b5a7b4e3efd90e64630bcf11224dcac50ef30a47e435", size = 3186960, upload-time = "2025-09-12T20:10:19.336Z" },
{ url = "https://files.pythonhosted.org/packages/01/a7/0b2e242b918cc30e1f91980f3c4b026ff2eedaf1e2ad96933bca164b2869/hf_xet-1.1.10-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:eae7c1fc8a664e54753ffc235e11427ca61f4b0477d757cc4eb9ae374b69f09c", size = 3087167, upload-time = "2025-09-12T20:10:17.255Z" },
{ url = "https://files.pythonhosted.org/packages/4a/25/3e32ab61cc7145b11eee9d745988e2f0f4fafda81b25980eebf97d8cff15/hf_xet-1.1.10-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:0a0005fd08f002180f7a12d4e13b22be277725bc23ed0529f8add5c7a6309c06", size = 3248612, upload-time = "2025-09-12T20:10:24.093Z" },
{ url = "https://files.pythonhosted.org/packages/2c/3d/ab7109e607ed321afaa690f557a9ada6d6d164ec852fd6bf9979665dc3d6/hf_xet-1.1.10-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:f900481cf6e362a6c549c61ff77468bd59d6dd082f3170a36acfef2eb6a6793f", size = 3353360, upload-time = "2025-09-12T20:10:25.563Z" },
{ url = "https://files.pythonhosted.org/packages/ee/0e/471f0a21db36e71a2f1752767ad77e92d8cde24e974e03d662931b1305ec/hf_xet-1.1.10-cp37-abi3-win_amd64.whl", hash = "sha256:5f54b19cc347c13235ae7ee98b330c26dd65ef1df47e5316ffb1e87713ca7045", size = 2804691, upload-time = "2025-09-12T20:10:28.433Z" },
]
[[package]]
name = "huggingface-hub"
version = "0.35.3"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "filelock", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "fsspec", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "hf-xet", marker = "(platform_machine == 'aarch64' and sys_platform == 'darwin') or (platform_machine == 'amd64' and sys_platform == 'darwin') or (platform_machine == 'arm64' and sys_platform == 'darwin') or (platform_machine == 'x86_64' and sys_platform == 'darwin') or (platform_machine == 'aarch64' and sys_platform == 'linux') or (platform_machine == 'amd64' and sys_platform == 'linux') or (platform_machine == 'arm64' and sys_platform == 'linux') or (platform_machine == 'x86_64' and sys_platform == 'linux') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly') or (sys_platform == 'darwin' and extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (sys_platform == 'darwin' and extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (sys_platform == 'darwin' and extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (sys_platform == 'darwin' and extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (sys_platform == 'darwin' and extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (sys_platform == 'darwin' and extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly') or (sys_platform == 'linux' and extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (sys_platform == 'linux' and extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (sys_platform == 'linux' and extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (sys_platform == 'linux' and extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (sys_platform == 'linux' and extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (sys_platform == 'linux' and extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "packaging", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "pyyaml", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "requests", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "tqdm", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "typing-extensions", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
]
sdist = { url = "https://files.pythonhosted.org/packages/10/7e/a0a97de7c73671863ca6b3f61fa12518caf35db37825e43d63a70956738c/huggingface_hub-0.35.3.tar.gz", hash = "sha256:350932eaa5cc6a4747efae85126ee220e4ef1b54e29d31c3b45c5612ddf0b32a", size = 461798, upload-time = "2025-09-29T14:29:58.625Z" }
wheels = [
{ url = "https://files.pythonhosted.org/packages/31/a0/651f93d154cb72323358bf2bbae3e642bdb5d2f1bfc874d096f7cb159fa0/huggingface_hub-0.35.3-py3-none-any.whl", hash = "sha256:0e3a01829c19d86d03793e4577816fe3bdfc1602ac62c7fb220d593d351224ba", size = 564262, upload-time = "2025-09-29T14:29:55.813Z" },
]
[[package]]
name = "idna"
version = "3.10"
source = { registry = "https://pypi.org/simple" }
sdist = { url = "https://files.pythonhosted.org/packages/f1/70/7703c29685631f5a7590aa73f1f1d3fa9a380e654b86af429e0934a32f7d/idna-3.10.tar.gz", hash = "sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9", size = 190490, upload-time = "2024-09-15T18:07:39.745Z" }
wheels = [
{ url = "https://files.pythonhosted.org/packages/76/c6/c88e154df9c4e1a2a66ccf0005a88dfb2650c1dffb6f5ce603dfbd452ce3/idna-3.10-py3-none-any.whl", hash = "sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3", size = 70442, upload-time = "2024-09-15T18:07:37.964Z" },
]
[[package]]
name = "jinja2"
version = "3.1.6"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "markupsafe", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
]
sdist = { url = "https://files.pythonhosted.org/packages/df/bf/f7da0350254c0ed7c72f3e33cef02e048281fec7ecec5f032d4aac52226b/jinja2-3.1.6.tar.gz", hash = "sha256:0137fb05990d35f1275a587e9aee6d56da821fc83491a0fb838183be43f66d6d", size = 245115, upload-time = "2025-03-05T20:05:02.478Z" }
wheels = [
{ url = "https://files.pythonhosted.org/packages/62/a1/3d680cbfd5f4b8f15abc1d571870c5fc3e594bb582bc3b64ea099db13e56/jinja2-3.1.6-py3-none-any.whl", hash = "sha256:85ece4451f492d0c13c5dd7c13a64681a86afae63a5f347908daf103ce6d2f67", size = 134899, upload-time = "2025-03-05T20:05:00.369Z" },
]
[[package]]
name = "kiwisolver"
version = "1.4.9"
source = { registry = "https://pypi.org/simple" }
sdist = { url = "https://files.pythonhosted.org/packages/5c/3c/85844f1b0feb11ee581ac23fe5fce65cd049a200c1446708cc1b7f922875/kiwisolver-1.4.9.tar.gz", hash = "sha256:c3b22c26c6fd6811b0ae8363b95ca8ce4ea3c202d3d0975b2914310ceb1bcc4d", size = 97564, upload-time = "2025-08-10T21:27:49.279Z" }
wheels = [
{ url = "https://files.pythonhosted.org/packages/6f/ab/c80b0d5a9d8a1a65f4f815f2afff9798b12c3b9f31f1d304dd233dd920e2/kiwisolver-1.4.9-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:eb14a5da6dc7642b0f3a18f13654847cd8b7a2550e2645a5bda677862b03ba16", size = 124167, upload-time = "2025-08-10T21:25:53.403Z" },
{ url = "https://files.pythonhosted.org/packages/a0/c0/27fe1a68a39cf62472a300e2879ffc13c0538546c359b86f149cc19f6ac3/kiwisolver-1.4.9-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:39a219e1c81ae3b103643d2aedb90f1ef22650deb266ff12a19e7773f3e5f089", size = 66579, upload-time = "2025-08-10T21:25:54.79Z" },
{ url = "https://files.pythonhosted.org/packages/31/a2/a12a503ac1fd4943c50f9822678e8015a790a13b5490354c68afb8489814/kiwisolver-1.4.9-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:2405a7d98604b87f3fc28b1716783534b1b4b8510d8142adca34ee0bc3c87543", size = 65309, upload-time = "2025-08-10T21:25:55.76Z" },
{ url = "https://files.pythonhosted.org/packages/66/e1/e533435c0be77c3f64040d68d7a657771194a63c279f55573188161e81ca/kiwisolver-1.4.9-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:dc1ae486f9abcef254b5618dfb4113dd49f94c68e3e027d03cf0143f3f772b61", size = 1435596, upload-time = "2025-08-10T21:25:56.861Z" },
{ url = "https://files.pythonhosted.org/packages/67/1e/51b73c7347f9aabdc7215aa79e8b15299097dc2f8e67dee2b095faca9cb0/kiwisolver-1.4.9-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:8a1f570ce4d62d718dce3f179ee78dac3b545ac16c0c04bb363b7607a949c0d1", size = 1246548, upload-time = "2025-08-10T21:25:58.246Z" },
{ url = "https://files.pythonhosted.org/packages/21/aa/72a1c5d1e430294f2d32adb9542719cfb441b5da368d09d268c7757af46c/kiwisolver-1.4.9-cp311-cp311-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:cb27e7b78d716c591e88e0a09a2139c6577865d7f2e152488c2cc6257f460872", size = 1263618, upload-time = "2025-08-10T21:25:59.857Z" },
{ url = "https://files.pythonhosted.org/packages/a3/af/db1509a9e79dbf4c260ce0cfa3903ea8945f6240e9e59d1e4deb731b1a40/kiwisolver-1.4.9-cp311-cp311-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:15163165efc2f627eb9687ea5f3a28137217d217ac4024893d753f46bce9de26", size = 1317437, upload-time = "2025-08-10T21:26:01.105Z" },
{ url = "https://files.pythonhosted.org/packages/e0/f2/3ea5ee5d52abacdd12013a94130436e19969fa183faa1e7c7fbc89e9a42f/kiwisolver-1.4.9-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:bdee92c56a71d2b24c33a7d4c2856bd6419d017e08caa7802d2963870e315028", size = 2195742, upload-time = "2025-08-10T21:26:02.675Z" },
{ url = "https://files.pythonhosted.org/packages/6f/9b/1efdd3013c2d9a2566aa6a337e9923a00590c516add9a1e89a768a3eb2fc/kiwisolver-1.4.9-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:412f287c55a6f54b0650bd9b6dce5aceddb95864a1a90c87af16979d37c89771", size = 2290810, upload-time = "2025-08-10T21:26:04.009Z" },
{ url = "https://files.pythonhosted.org/packages/fb/e5/cfdc36109ae4e67361f9bc5b41323648cb24a01b9ade18784657e022e65f/kiwisolver-1.4.9-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:2c93f00dcba2eea70af2be5f11a830a742fe6b579a1d4e00f47760ef13be247a", size = 2461579, upload-time = "2025-08-10T21:26:05.317Z" },
{ url = "https://files.pythonhosted.org/packages/62/86/b589e5e86c7610842213994cdea5add00960076bef4ae290c5fa68589cac/kiwisolver-1.4.9-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:f117e1a089d9411663a3207ba874f31be9ac8eaa5b533787024dc07aeb74f464", size = 2268071, upload-time = "2025-08-10T21:26:06.686Z" },
{ url = "https://files.pythonhosted.org/packages/3b/c6/f8df8509fd1eee6c622febe54384a96cfaf4d43bf2ccec7a0cc17e4715c9/kiwisolver-1.4.9-cp311-cp311-win_amd64.whl", hash = "sha256:be6a04e6c79819c9a8c2373317d19a96048e5a3f90bec587787e86a1153883c2", size = 73840, upload-time = "2025-08-10T21:26:07.94Z" },
{ url = "https://files.pythonhosted.org/packages/e2/2d/16e0581daafd147bc11ac53f032a2b45eabac897f42a338d0a13c1e5c436/kiwisolver-1.4.9-cp311-cp311-win_arm64.whl", hash = "sha256:0ae37737256ba2de764ddc12aed4956460277f00c4996d51a197e72f62f5eec7", size = 65159, upload-time = "2025-08-10T21:26:09.048Z" },
{ url = "https://files.pythonhosted.org/packages/a3/0f/36d89194b5a32c054ce93e586d4049b6c2c22887b0eb229c61c68afd3078/kiwisolver-1.4.9-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:720e05574713db64c356e86732c0f3c5252818d05f9df320f0ad8380641acea5", size = 60104, upload-time = "2025-08-10T21:27:43.287Z" },
{ url = "https://files.pythonhosted.org/packages/52/ba/4ed75f59e4658fd21fe7dde1fee0ac397c678ec3befba3fe6482d987af87/kiwisolver-1.4.9-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:17680d737d5335b552994a2008fab4c851bcd7de33094a82067ef3a576ff02fa", size = 58592, upload-time = "2025-08-10T21:27:44.314Z" },
{ url = "https://files.pythonhosted.org/packages/33/01/a8ea7c5ea32a9b45ceeaee051a04c8ed4320f5add3c51bfa20879b765b70/kiwisolver-1.4.9-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:85b5352f94e490c028926ea567fc569c52ec79ce131dadb968d3853e809518c2", size = 80281, upload-time = "2025-08-10T21:27:45.369Z" },
{ url = "https://files.pythonhosted.org/packages/da/e3/dbd2ecdce306f1d07a1aaf324817ee993aab7aee9db47ceac757deabafbe/kiwisolver-1.4.9-pp311-pypy311_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:464415881e4801295659462c49461a24fb107c140de781d55518c4b80cb6790f", size = 78009, upload-time = "2025-08-10T21:27:46.376Z" },
{ url = "https://files.pythonhosted.org/packages/da/e9/0d4add7873a73e462aeb45c036a2dead2562b825aa46ba326727b3f31016/kiwisolver-1.4.9-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:fb940820c63a9590d31d88b815e7a3aa5915cad3ce735ab45f0c730b39547de1", size = 73929, upload-time = "2025-08-10T21:27:48.236Z" },
]
[[package]]
name = "liger-kernel"
version = "0.6.2"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "torch", version = "2.8.0+rocm6.3", source = { registry = "https://download.pytorch.org/whl/rocm6.3" }, marker = "(sys_platform == 'darwin' and extra == 'extra-7-maester-rocm') or (sys_platform == 'linux' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "torch", version = "2.10.0.dev20250926+rocm6.3", source = { registry = "https://download.pytorch.org/whl/nightly/rocm6.3" }, marker = "(sys_platform == 'darwin' and extra == 'extra-7-maester-rocm-nightly') or (sys_platform == 'linux' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "triton", version = "3.3.1", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'darwin' and extra == 'extra-7-maester-rocm') or (sys_platform == 'darwin' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "triton", version = "3.4.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'extra-7-maester-rocm') or (sys_platform == 'linux' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly')" },
]
sdist = { url = "https://files.pythonhosted.org/packages/31/23/be0b4dcac42d77f99406c906567cde22a7a3d71b3f3ffdfda2ac6153ec36/liger_kernel-0.6.2.tar.gz", hash = "sha256:5c5bcffffa769bc26ae838f5a4954170dd5cacde036abb1b383039f39fa5fd69", size = 3679495, upload-time = "2025-08-22T00:15:28.456Z" }
wheels = [
{ url = "https://files.pythonhosted.org/packages/94/2c/68d992835e8630c1b94cdcb246ea7eecad790a955037ca3f19b6c01e8215/liger_kernel-0.6.2-py3-none-any.whl", hash = "sha256:303b9bbf5c10f9289c3139afb41e4d989e8c809516624a106b89b064163d971d", size = 192815, upload-time = "2025-08-22T00:15:27.04Z" },
]
[[package]]
name = "lxml"
version = "6.0.2"
source = { registry = "https://pypi.org/simple" }
sdist = { url = "https://files.pythonhosted.org/packages/aa/88/262177de60548e5a2bfc46ad28232c9e9cbde697bd94132aeb80364675cb/lxml-6.0.2.tar.gz", hash = "sha256:cd79f3367bd74b317dda655dc8fcfa304d9eb6e4fb06b7168c5cf27f96e0cd62", size = 4073426, upload-time = "2025-09-22T04:04:59.287Z" }
wheels = [
{ url = "https://files.pythonhosted.org/packages/77/d5/becbe1e2569b474a23f0c672ead8a29ac50b2dc1d5b9de184831bda8d14c/lxml-6.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:13e35cbc684aadf05d8711a5d1b5857c92e5e580efa9a0d2be197199c8def607", size = 8634365, upload-time = "2025-09-22T04:00:45.672Z" },
{ url = "https://files.pythonhosted.org/packages/28/66/1ced58f12e804644426b85d0bb8a4478ca77bc1761455da310505f1a3526/lxml-6.0.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3b1675e096e17c6fe9c0e8c81434f5736c0739ff9ac6123c87c2d452f48fc938", size = 4650793, upload-time = "2025-09-22T04:00:47.783Z" },
{ url = "https://files.pythonhosted.org/packages/11/84/549098ffea39dfd167e3f174b4ce983d0eed61f9d8d25b7bf2a57c3247fc/lxml-6.0.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:8ac6e5811ae2870953390452e3476694196f98d447573234592d30488147404d", size = 4944362, upload-time = "2025-09-22T04:00:49.845Z" },
{ url = "https://files.pythonhosted.org/packages/ac/bd/f207f16abf9749d2037453d56b643a7471d8fde855a231a12d1e095c4f01/lxml-6.0.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:5aa0fc67ae19d7a64c3fe725dc9a1bb11f80e01f78289d05c6f62545affec438", size = 5083152, upload-time = "2025-09-22T04:00:51.709Z" },
{ url = "https://files.pythonhosted.org/packages/15/ae/bd813e87d8941d52ad5b65071b1affb48da01c4ed3c9c99e40abb266fbff/lxml-6.0.2-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:de496365750cc472b4e7902a485d3f152ecf57bd3ba03ddd5578ed8ceb4c5964", size = 5023539, upload-time = "2025-09-22T04:00:53.593Z" },
{ url = "https://files.pythonhosted.org/packages/02/cd/9bfef16bd1d874fbe0cb51afb00329540f30a3283beb9f0780adbb7eec03/lxml-6.0.2-cp311-cp311-manylinux_2_26_i686.manylinux_2_28_i686.whl", hash = "sha256:200069a593c5e40b8f6fc0d84d86d970ba43138c3e68619ffa234bc9bb806a4d", size = 5344853, upload-time = "2025-09-22T04:00:55.524Z" },
{ url = "https://files.pythonhosted.org/packages/b8/89/ea8f91594bc5dbb879734d35a6f2b0ad50605d7fb419de2b63d4211765cc/lxml-6.0.2-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7d2de809c2ee3b888b59f995625385f74629707c9355e0ff856445cdcae682b7", size = 5225133, upload-time = "2025-09-22T04:00:57.269Z" },
{ url = "https://files.pythonhosted.org/packages/b9/37/9c735274f5dbec726b2db99b98a43950395ba3d4a1043083dba2ad814170/lxml-6.0.2-cp311-cp311-manylinux_2_31_armv7l.whl", hash = "sha256:b2c3da8d93cf5db60e8858c17684c47d01fee6405e554fb55018dd85fc23b178", size = 4677944, upload-time = "2025-09-22T04:00:59.052Z" },
{ url = "https://files.pythonhosted.org/packages/20/28/7dfe1ba3475d8bfca3878365075abe002e05d40dfaaeb7ec01b4c587d533/lxml-6.0.2-cp311-cp311-manylinux_2_38_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:442de7530296ef5e188373a1ea5789a46ce90c4847e597856570439621d9c553", size = 5284535, upload-time = "2025-09-22T04:01:01.335Z" },
{ url = "https://files.pythonhosted.org/packages/e7/cf/5f14bc0de763498fc29510e3532bf2b4b3a1c1d5d0dff2e900c16ba021ef/lxml-6.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:2593c77efde7bfea7f6389f1ab249b15ed4aa5bc5cb5131faa3b843c429fbedb", size = 5067343, upload-time = "2025-09-22T04:01:03.13Z" },
{ url = "https://files.pythonhosted.org/packages/1c/b0/bb8275ab5472f32b28cfbbcc6db7c9d092482d3439ca279d8d6fa02f7025/lxml-6.0.2-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:3e3cb08855967a20f553ff32d147e14329b3ae70ced6edc2f282b94afbc74b2a", size = 4725419, upload-time = "2025-09-22T04:01:05.013Z" },
{ url = "https://files.pythonhosted.org/packages/25/4c/7c222753bc72edca3b99dbadba1b064209bc8ed4ad448af990e60dcce462/lxml-6.0.2-cp311-cp311-musllinux_1_2_riscv64.whl", hash = "sha256:2ed6c667fcbb8c19c6791bbf40b7268ef8ddf5a96940ba9404b9f9a304832f6c", size = 5275008, upload-time = "2025-09-22T04:01:07.327Z" },
{ url = "https://files.pythonhosted.org/packages/6c/8c/478a0dc6b6ed661451379447cdbec77c05741a75736d97e5b2b729687828/lxml-6.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:b8f18914faec94132e5b91e69d76a5c1d7b0c73e2489ea8929c4aaa10b76bbf7", size = 5248906, upload-time = "2025-09-22T04:01:09.452Z" },
{ url = "https://files.pythonhosted.org/packages/2d/d9/5be3a6ab2784cdf9accb0703b65e1b64fcdd9311c9f007630c7db0cfcce1/lxml-6.0.2-cp311-cp311-win32.whl", hash = "sha256:6605c604e6daa9e0d7f0a2137bdc47a2e93b59c60a65466353e37f8272f47c46", size = 3610357, upload-time = "2025-09-22T04:01:11.102Z" },
{ url = "https://files.pythonhosted.org/packages/e2/7d/ca6fb13349b473d5732fb0ee3eec8f6c80fc0688e76b7d79c1008481bf1f/lxml-6.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:e5867f2651016a3afd8dd2c8238baa66f1e2802f44bc17e236f547ace6647078", size = 4036583, upload-time = "2025-09-22T04:01:12.766Z" },
{ url = "https://files.pythonhosted.org/packages/ab/a2/51363b5ecd3eab46563645f3a2c3836a2fc67d01a1b87c5017040f39f567/lxml-6.0.2-cp311-cp311-win_arm64.whl", hash = "sha256:4197fb2534ee05fd3e7afaab5d8bfd6c2e186f65ea7f9cd6a82809c887bd1285", size = 3680591, upload-time = "2025-09-22T04:01:14.874Z" },
{ url = "https://files.pythonhosted.org/packages/0b/11/29d08bc103a62c0eba8016e7ed5aeebbf1e4312e83b0b1648dd203b0e87d/lxml-6.0.2-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:1c06035eafa8404b5cf475bb37a9f6088b0aca288d4ccc9d69389750d5543700", size = 3949829, upload-time = "2025-09-22T04:04:45.608Z" },
{ url = "https://files.pythonhosted.org/packages/12/b3/52ab9a3b31e5ab8238da241baa19eec44d2ab426532441ee607165aebb52/lxml-6.0.2-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:c7d13103045de1bdd6fe5d61802565f1a3537d70cd3abf596aa0af62761921ee", size = 4226277, upload-time = "2025-09-22T04:04:47.754Z" },
{ url = "https://files.pythonhosted.org/packages/a0/33/1eaf780c1baad88224611df13b1c2a9dfa460b526cacfe769103ff50d845/lxml-6.0.2-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:0a3c150a95fbe5ac91de323aa756219ef9cf7fde5a3f00e2281e30f33fa5fa4f", size = 4330433, upload-time = "2025-09-22T04:04:49.907Z" },
{ url = "https://files.pythonhosted.org/packages/7a/c1/27428a2ff348e994ab4f8777d3a0ad510b6b92d37718e5887d2da99952a2/lxml-6.0.2-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:60fa43be34f78bebb27812ed90f1925ec99560b0fa1decdb7d12b84d857d31e9", size = 4272119, upload-time = "2025-09-22T04:04:51.801Z" },
{ url = "https://files.pythonhosted.org/packages/f0/d0/3020fa12bcec4ab62f97aab026d57c2f0cfd480a558758d9ca233bb6a79d/lxml-6.0.2-pp311-pypy311_pp73-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:21c73b476d3cfe836be731225ec3421fa2f048d84f6df6a8e70433dff1376d5a", size = 4417314, upload-time = "2025-09-22T04:04:55.024Z" },
{ url = "https://files.pythonhosted.org/packages/6c/77/d7f491cbc05303ac6801651aabeb262d43f319288c1ea96c66b1d2692ff3/lxml-6.0.2-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:27220da5be049e936c3aca06f174e8827ca6445a4353a1995584311487fc4e3e", size = 3518768, upload-time = "2025-09-22T04:04:57.097Z" },
]
[[package]]
name = "maester"
version = "0.2.0"
source = { editable = "." }
dependencies = [
{ name = "blobfile", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "cut-cross-entropy", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "datasets", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "matplotlib", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "numpy", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "pydantic", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "pydantic-settings", extra = ["toml"], marker = "sys_platform == 'darwin' or sys_platform == 'linux' or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "schedulefree", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "sentencepiece", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "tensorboard", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "tiktoken", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "torch", version = "2.7.1+cu128", source = { registry = "https://download.pytorch.org/whl/cu128" }, marker = "(sys_platform == 'darwin' and extra == 'extra-7-maester-cuda') or (sys_platform == 'linux' and extra == 'extra-7-maester-cuda') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'darwin' and extra != 'extra-7-maester-cuda' and extra != 'extra-7-maester-cuda-nightly' and extra != 'extra-7-maester-rocm' and extra != 'extra-7-maester-rocm-nightly') or (sys_platform == 'linux' and extra != 'extra-7-maester-cuda' and extra != 'extra-7-maester-cuda-nightly' and extra != 'extra-7-maester-rocm' and extra != 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "torch", version = "2.8.0+rocm6.3", source = { registry = "https://download.pytorch.org/whl/rocm6.3" }, marker = "(sys_platform == 'darwin' and extra == 'extra-7-maester-rocm') or (sys_platform == 'linux' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "torch", version = "2.10.0.dev20250926+rocm6.3", source = { registry = "https://download.pytorch.org/whl/nightly/rocm6.3" }, marker = "(sys_platform == 'darwin' and extra == 'extra-7-maester-rocm-nightly') or (sys_platform == 'linux' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "torch", version = "2.10.0.dev20250929+cu128", source = { registry = "https://download.pytorch.org/whl/nightly/cu128" }, marker = "(sys_platform == 'darwin' and extra == 'extra-7-maester-cuda-nightly') or (sys_platform == 'linux' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "transformers", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "wandb", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
]
[package.optional-dependencies]
cuda = [
{ name = "pytorch-triton", version = "3.3.0", source = { registry = "https://download.pytorch.org/whl/cu128" }, marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
{ name = "torch", version = "2.7.1+cu128", source = { registry = "https://download.pytorch.org/whl/cu128" }, marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
{ name = "torchdata", version = "0.10.0", source = { registry = "https://download.pytorch.org/whl/cu128" }, marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
{ name = "torchvision", version = "0.22.1", source = { registry = "https://download.pytorch.org/whl/cu128" }, marker = "(platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra == 'extra-7-maester-cuda') or (platform_machine != 'aarch64' and extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (platform_machine != 'aarch64' and extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (platform_machine != 'aarch64' and extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (platform_machine != 'aarch64' and extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (platform_machine != 'aarch64' and extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (platform_machine != 'aarch64' and extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly') or (platform_python_implementation != 'CPython' and extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (platform_python_implementation != 'CPython' and extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (platform_python_implementation != 'CPython' and extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (platform_python_implementation != 'CPython' and extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (platform_python_implementation != 'CPython' and extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (platform_python_implementation != 'CPython' and extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly') or (sys_platform != 'linux' and extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (sys_platform != 'linux' and extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (sys_platform != 'linux' and extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (sys_platform != 'linux' and extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (sys_platform != 'linux' and extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (sys_platform != 'linux' and extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly') or (extra != 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra != 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra != 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "torchvision", version = "0.22.1+cu128", source = { registry = "https://download.pytorch.org/whl/cu128" }, marker = "(platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-7-maester-cuda') or (platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra == 'extra-7-maester-cuda') or (sys_platform == 'darwin' and extra == 'extra-7-maester-cuda') or (sys_platform != 'linux' and extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (sys_platform != 'linux' and extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (sys_platform != 'linux' and extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (sys_platform != 'linux' and extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (sys_platform != 'linux' and extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (sys_platform != 'linux' and extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly') or (sys_platform == 'darwin' and extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (sys_platform == 'darwin' and extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (sys_platform == 'darwin' and extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly') or (extra != 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra != 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra != 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "triton", version = "3.3.1", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
]
cuda-nightly = [
{ name = "pytorch-triton", version = "3.5.0+gitbbb06c03", source = { registry = "https://download.pytorch.org/whl/nightly/cu128" }, marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
{ name = "torch", version = "2.10.0.dev20250929+cu128", source = { registry = "https://download.pytorch.org/whl/nightly/cu128" }, marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
{ name = "torchdata", version = "0.12.0.dev20250220", source = { registry = "https://download.pytorch.org/whl/nightly/cu128" }, marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
{ name = "torchvision", version = "0.25.0.dev20250929+cu128", source = { registry = "https://download.pytorch.org/whl/nightly/cu128" }, marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
]
rocm = [
{ name = "liger-kernel", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
{ name = "pytorch-triton-rocm", version = "3.4.0", source = { registry = "https://download.pytorch.org/whl/rocm6.3" }, marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
{ name = "torch", version = "2.8.0+rocm6.3", source = { registry = "https://download.pytorch.org/whl/rocm6.3" }, marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
{ name = "torchdata", version = "0.10.0", source = { registry = "https://download.pytorch.org/whl/rocm6.3" }, marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
{ name = "torchvision", version = "0.23.0+rocm6.3", source = { registry = "https://download.pytorch.org/whl/rocm6.3" }, marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
]
rocm-nightly = [
{ name = "liger-kernel", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
{ name = "pytorch-triton-rocm", version = "3.5.0+gitbbb06c03", source = { registry = "https://download.pytorch.org/whl/nightly/rocm6.3" }, marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
{ name = "torch", version = "2.10.0.dev20250926+rocm6.3", source = { registry = "https://download.pytorch.org/whl/nightly/rocm6.3" }, marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
{ name = "torchdata", version = "0.12.0.dev20250220", source = { registry = "https://download.pytorch.org/whl/nightly/rocm6.3" }, marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
{ name = "torchvision", version = "0.25.0.dev20250929+rocm6.3", source = { registry = "https://download.pytorch.org/whl/nightly/rocm6.3" }, marker = "sys_platform == 'darwin' or sys_platform == 'linux'" },
]
[package.metadata]
requires-dist = [
{ name = "blobfile" },
{ name = "cut-cross-entropy", git = "https://github.com/apple/ml-cross-entropy.git" },
{ name = "datasets", specifier = ">=2.16.0" },
{ name = "liger-kernel", marker = "extra == 'rocm'" },
{ name = "liger-kernel", marker = "extra == 'rocm-nightly'" },
{ name = "matplotlib", specifier = ">=3.8.4" },
{ name = "numpy", specifier = "<2" },
{ name = "pydantic" },
{ name = "pydantic-settings", extras = ["toml"], specifier = ">=2.6.0" },
{ name = "pytorch-triton", marker = "extra == 'cuda'", specifier = "==3.3.0", index = "https://download.pytorch.org/whl/cu128", conflict = { package = "maester", extra = "cuda" } },
{ name = "pytorch-triton", marker = "extra == 'cuda-nightly'", index = "https://download.pytorch.org/whl/nightly/cu128", conflict = { package = "maester", extra = "cuda-nightly" } },
{ name = "pytorch-triton-rocm", marker = "extra == 'rocm'", index = "https://download.pytorch.org/whl/rocm6.3", conflict = { package = "maester", extra = "rocm" } },
{ name = "pytorch-triton-rocm", marker = "extra == 'rocm-nightly'", index = "https://download.pytorch.org/whl/nightly/rocm6.3", conflict = { package = "maester", extra = "rocm-nightly" } },
{ name = "schedulefree", specifier = ">=1.2.5" },
{ name = "sentencepiece" },
{ name = "tensorboard" },
{ name = "tiktoken" },
{ name = "torch", specifier = ">=2.7" },
{ name = "torch", marker = "extra == 'cuda'", specifier = ">=2.7", index = "https://download.pytorch.org/whl/cu128", conflict = { package = "maester", extra = "cuda" } },
{ name = "torch", marker = "extra == 'cuda-nightly'", specifier = ">=2.7", index = "https://download.pytorch.org/whl/nightly/cu128", conflict = { package = "maester", extra = "cuda-nightly" } },
{ name = "torch", marker = "extra == 'rocm'", specifier = ">=2.7", index = "https://download.pytorch.org/whl/rocm6.3", conflict = { package = "maester", extra = "rocm" } },
{ name = "torch", marker = "extra == 'rocm-nightly'", specifier = ">=2.7", index = "https://download.pytorch.org/whl/nightly/rocm6.3", conflict = { package = "maester", extra = "rocm-nightly" } },
{ name = "torchdata", marker = "extra == 'cuda'", index = "https://download.pytorch.org/whl/cu128", conflict = { package = "maester", extra = "cuda" } },
{ name = "torchdata", marker = "extra == 'cuda-nightly'", index = "https://download.pytorch.org/whl/nightly/cu128", conflict = { package = "maester", extra = "cuda-nightly" } },
{ name = "torchdata", marker = "extra == 'rocm'", index = "https://download.pytorch.org/whl/rocm6.3", conflict = { package = "maester", extra = "rocm" } },
{ name = "torchdata", marker = "extra == 'rocm-nightly'", index = "https://download.pytorch.org/whl/nightly/rocm6.3", conflict = { package = "maester", extra = "rocm-nightly" } },
{ name = "torchvision", marker = "extra == 'cuda'", index = "https://download.pytorch.org/whl/cu128", conflict = { package = "maester", extra = "cuda" } },
{ name = "torchvision", marker = "extra == 'cuda-nightly'", index = "https://download.pytorch.org/whl/nightly/cu128", conflict = { package = "maester", extra = "cuda-nightly" } },
{ name = "torchvision", marker = "extra == 'rocm'", index = "https://download.pytorch.org/whl/rocm6.3", conflict = { package = "maester", extra = "rocm" } },
{ name = "torchvision", marker = "extra == 'rocm-nightly'", index = "https://download.pytorch.org/whl/nightly/rocm6.3", conflict = { package = "maester", extra = "rocm-nightly" } },
{ name = "transformers", specifier = ">=4.54.0" },
{ name = "triton", marker = "extra == 'cuda'", specifier = "==3.3.1" },
{ name = "wandb", specifier = ">=0.16.6" },
]
provides-extras = ["cuda", "cuda-nightly", "rocm", "rocm-nightly"]
[[package]]
name = "markdown"
version = "3.9"
source = { registry = "https://pypi.org/simple" }
sdist = { url = "https://files.pythonhosted.org/packages/8d/37/02347f6d6d8279247a5837082ebc26fc0d5aaeaf75aa013fcbb433c777ab/markdown-3.9.tar.gz", hash = "sha256:d2900fe1782bd33bdbbd56859defef70c2e78fc46668f8eb9df3128138f2cb6a", size = 364585, upload-time = "2025-09-04T20:25:22.885Z" }
wheels = [
{ url = "https://files.pythonhosted.org/packages/70/ae/44c4a6a4cbb496d93c6257954260fe3a6e91b7bed2240e5dad2a717f5111/markdown-3.9-py3-none-any.whl", hash = "sha256:9f4d91ed810864ea88a6f32c07ba8bee1346c0cc1f6b1f9f6c822f2a9667d280", size = 107441, upload-time = "2025-09-04T20:25:21.784Z" },
]
[[package]]
name = "markupsafe"
version = "3.0.3"
source = { registry = "https://pypi.org/simple" }
sdist = { url = "https://files.pythonhosted.org/packages/7e/99/7690b6d4034fffd95959cbe0c02de8deb3098cc577c67bb6a24fe5d7caa7/markupsafe-3.0.3.tar.gz", hash = "sha256:722695808f4b6457b320fdc131280796bdceb04ab50fe1795cd540799ebe1698", size = 80313, upload-time = "2025-09-27T18:37:40.426Z" }
wheels = [
{ url = "https://files.pythonhosted.org/packages/08/db/fefacb2136439fc8dd20e797950e749aa1f4997ed584c62cfb8ef7c2be0e/markupsafe-3.0.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:1cc7ea17a6824959616c525620e387f6dd30fec8cb44f649e31712db02123dad", size = 11631, upload-time = "2025-09-27T18:36:18.185Z" },
{ url = "https://files.pythonhosted.org/packages/e1/2e/5898933336b61975ce9dc04decbc0a7f2fee78c30353c5efba7f2d6ff27a/markupsafe-3.0.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:4bd4cd07944443f5a265608cc6aab442e4f74dff8088b0dfc8238647b8f6ae9a", size = 12058, upload-time = "2025-09-27T18:36:19.444Z" },
{ url = "https://files.pythonhosted.org/packages/1d/09/adf2df3699d87d1d8184038df46a9c80d78c0148492323f4693df54e17bb/markupsafe-3.0.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6b5420a1d9450023228968e7e6a9ce57f65d148ab56d2313fcd589eee96a7a50", size = 24287, upload-time = "2025-09-27T18:36:20.768Z" },
{ url = "https://files.pythonhosted.org/packages/30/ac/0273f6fcb5f42e314c6d8cd99effae6a5354604d461b8d392b5ec9530a54/markupsafe-3.0.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0bf2a864d67e76e5c9a34dc26ec616a66b9888e25e7b9460e1c76d3293bd9dbf", size = 22940, upload-time = "2025-09-27T18:36:22.249Z" },
{ url = "https://files.pythonhosted.org/packages/19/ae/31c1be199ef767124c042c6c3e904da327a2f7f0cd63a0337e1eca2967a8/markupsafe-3.0.3-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:bc51efed119bc9cfdf792cdeaa4d67e8f6fcccab66ed4bfdd6bde3e59bfcbb2f", size = 21887, upload-time = "2025-09-27T18:36:23.535Z" },
{ url = "https://files.pythonhosted.org/packages/b2/76/7edcab99d5349a4532a459e1fe64f0b0467a3365056ae550d3bcf3f79e1e/markupsafe-3.0.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:068f375c472b3e7acbe2d5318dea141359e6900156b5b2ba06a30b169086b91a", size = 23692, upload-time = "2025-09-27T18:36:24.823Z" },
{ url = "https://files.pythonhosted.org/packages/a4/28/6e74cdd26d7514849143d69f0bf2399f929c37dc2b31e6829fd2045b2765/markupsafe-3.0.3-cp311-cp311-musllinux_1_2_riscv64.whl", hash = "sha256:7be7b61bb172e1ed687f1754f8e7484f1c8019780f6f6b0786e76bb01c2ae115", size = 21471, upload-time = "2025-09-27T18:36:25.95Z" },
{ url = "https://files.pythonhosted.org/packages/62/7e/a145f36a5c2945673e590850a6f8014318d5577ed7e5920a4b3448e0865d/markupsafe-3.0.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:f9e130248f4462aaa8e2552d547f36ddadbeaa573879158d721bbd33dfe4743a", size = 22923, upload-time = "2025-09-27T18:36:27.109Z" },
{ url = "https://files.pythonhosted.org/packages/0f/62/d9c46a7f5c9adbeeeda52f5b8d802e1094e9717705a645efc71b0913a0a8/markupsafe-3.0.3-cp311-cp311-win32.whl", hash = "sha256:0db14f5dafddbb6d9208827849fad01f1a2609380add406671a26386cdf15a19", size = 14572, upload-time = "2025-09-27T18:36:28.045Z" },
{ url = "https://files.pythonhosted.org/packages/83/8a/4414c03d3f891739326e1783338e48fb49781cc915b2e0ee052aa490d586/markupsafe-3.0.3-cp311-cp311-win_amd64.whl", hash = "sha256:de8a88e63464af587c950061a5e6a67d3632e36df62b986892331d4620a35c01", size = 15077, upload-time = "2025-09-27T18:36:29.025Z" },
{ url = "https://files.pythonhosted.org/packages/35/73/893072b42e6862f319b5207adc9ae06070f095b358655f077f69a35601f0/markupsafe-3.0.3-cp311-cp311-win_arm64.whl", hash = "sha256:3b562dd9e9ea93f13d53989d23a7e775fdfd1066c33494ff43f5418bc8c58a5c", size = 13876, upload-time = "2025-09-27T18:36:29.954Z" },
]
[[package]]
name = "matplotlib"
version = "3.10.6"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "contourpy", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "cycler", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "fonttools", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "kiwisolver", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "numpy", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "packaging", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "pillow", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "pyparsing", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "python-dateutil", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
]
sdist = { url = "https://files.pythonhosted.org/packages/a0/59/c3e6453a9676ffba145309a73c462bb407f4400de7de3f2b41af70720a3c/matplotlib-3.10.6.tar.gz", hash = "sha256:ec01b645840dd1996df21ee37f208cd8ba57644779fa20464010638013d3203c", size = 34804264, upload-time = "2025-08-30T00:14:25.137Z" }
wheels = [
{ url = "https://files.pythonhosted.org/packages/80/d6/5d3665aa44c49005aaacaa68ddea6fcb27345961cd538a98bb0177934ede/matplotlib-3.10.6-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:905b60d1cb0ee604ce65b297b61cf8be9f4e6cfecf95a3fe1c388b5266bc8f4f", size = 8257527, upload-time = "2025-08-30T00:12:45.31Z" },
{ url = "https://files.pythonhosted.org/packages/8c/af/30ddefe19ca67eebd70047dabf50f899eaff6f3c5e6a1a7edaecaf63f794/matplotlib-3.10.6-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:7bac38d816637343e53d7185d0c66677ff30ffb131044a81898b5792c956ba76", size = 8119583, upload-time = "2025-08-30T00:12:47.236Z" },
{ url = "https://files.pythonhosted.org/packages/d3/29/4a8650a3dcae97fa4f375d46efcb25920d67b512186f8a6788b896062a81/matplotlib-3.10.6-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:942a8de2b5bfff1de31d95722f702e2966b8a7e31f4e68f7cd963c7cd8861cf6", size = 8692682, upload-time = "2025-08-30T00:12:48.781Z" },
{ url = "https://files.pythonhosted.org/packages/aa/d3/b793b9cb061cfd5d42ff0f69d1822f8d5dbc94e004618e48a97a8373179a/matplotlib-3.10.6-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a3276c85370bc0dfca051ec65c5817d1e0f8f5ce1b7787528ec8ed2d524bbc2f", size = 9521065, upload-time = "2025-08-30T00:12:50.602Z" },
{ url = "https://files.pythonhosted.org/packages/f7/c5/53de5629f223c1c66668d46ac2621961970d21916a4bc3862b174eb2a88f/matplotlib-3.10.6-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:9df5851b219225731f564e4b9e7f2ac1e13c9e6481f941b5631a0f8e2d9387ce", size = 9576888, upload-time = "2025-08-30T00:12:52.92Z" },
{ url = "https://files.pythonhosted.org/packages/fc/8e/0a18d6d7d2d0a2e66585032a760d13662e5250c784d53ad50434e9560991/matplotlib-3.10.6-cp311-cp311-win_amd64.whl", hash = "sha256:abb5d9478625dd9c9eb51a06d39aae71eda749ae9b3138afb23eb38824026c7e", size = 8115158, upload-time = "2025-08-30T00:12:54.863Z" },
{ url = "https://files.pythonhosted.org/packages/07/b3/1a5107bb66c261e23b9338070702597a2d374e5aa7004b7adfc754fbed02/matplotlib-3.10.6-cp311-cp311-win_arm64.whl", hash = "sha256:886f989ccfae63659183173bb3fced7fd65e9eb793c3cc21c273add368536951", size = 7992444, upload-time = "2025-08-30T00:12:57.067Z" },
{ url = "https://files.pythonhosted.org/packages/12/bb/02c35a51484aae5f49bd29f091286e7af5f3f677a9736c58a92b3c78baeb/matplotlib-3.10.6-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:f2d684c3204fa62421bbf770ddfebc6b50130f9cad65531eeba19236d73bb488", size = 8252296, upload-time = "2025-08-30T00:14:19.49Z" },
{ url = "https://files.pythonhosted.org/packages/7d/85/41701e3092005aee9a2445f5ee3904d9dbd4a7df7a45905ffef29b7ef098/matplotlib-3.10.6-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:6f4a69196e663a41d12a728fab8751177215357906436804217d6d9cf0d4d6cf", size = 8116749, upload-time = "2025-08-30T00:14:21.344Z" },
{ url = "https://files.pythonhosted.org/packages/16/53/8d8fa0ea32a8c8239e04d022f6c059ee5e1b77517769feccd50f1df43d6d/matplotlib-3.10.6-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:4d6ca6ef03dfd269f4ead566ec6f3fb9becf8dab146fb999022ed85ee9f6b3eb", size = 8693933, upload-time = "2025-08-30T00:14:22.942Z" },
]
[[package]]
name = "mpmath"
version = "1.3.0"
source = { registry = "https://pypi.org/simple" }
sdist = { url = "https://files.pythonhosted.org/packages/e0/47/dd32fa426cc72114383ac549964eecb20ecfd886d1e5ccf5340b55b02f57/mpmath-1.3.0.tar.gz", hash = "sha256:7a28eb2a9774d00c7bc92411c19a89209d5da7c4c9a9e227be8330a23a25b91f", size = 508106, upload-time = "2023-03-07T16:47:11.061Z" }
wheels = [
{ url = "https://files.pythonhosted.org/packages/43/e3/7d92a15f894aa0c9c4b49b8ee9ac9850d6e63b03c9c32c0367a13ae62209/mpmath-1.3.0-py3-none-any.whl", hash = "sha256:a0b2b9fe80bbcd81a6647ff13108738cfb482d481d826cc0e02f5b35e5c88d2c", size = 536198, upload-time = "2023-03-07T16:47:09.197Z" },
]
[[package]]
name = "multidict"
version = "6.6.4"
source = { registry = "https://pypi.org/simple" }
sdist = { url = "https://files.pythonhosted.org/packages/69/7f/0652e6ed47ab288e3756ea9c0df8b14950781184d4bd7883f4d87dd41245/multidict-6.6.4.tar.gz", hash = "sha256:d2d4e4787672911b48350df02ed3fa3fffdc2f2e8ca06dd6afdf34189b76a9dd", size = 101843, upload-time = "2025-08-11T12:08:48.217Z" }
wheels = [
{ url = "https://files.pythonhosted.org/packages/6b/7f/90a7f01e2d005d6653c689039977f6856718c75c5579445effb7e60923d1/multidict-6.6.4-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:c7a0e9b561e6460484318a7612e725df1145d46b0ef57c6b9866441bf6e27e0c", size = 76472, upload-time = "2025-08-11T12:06:29.006Z" },
{ url = "https://files.pythonhosted.org/packages/54/a3/bed07bc9e2bb302ce752f1dabc69e884cd6a676da44fb0e501b246031fdd/multidict-6.6.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6bf2f10f70acc7a2446965ffbc726e5fc0b272c97a90b485857e5c70022213eb", size = 44634, upload-time = "2025-08-11T12:06:30.374Z" },
{ url = "https://files.pythonhosted.org/packages/a7/4b/ceeb4f8f33cf81277da464307afeaf164fb0297947642585884f5cad4f28/multidict-6.6.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:66247d72ed62d5dd29752ffc1d3b88f135c6a8de8b5f63b7c14e973ef5bda19e", size = 44282, upload-time = "2025-08-11T12:06:31.958Z" },
{ url = "https://files.pythonhosted.org/packages/03/35/436a5da8702b06866189b69f655ffdb8f70796252a8772a77815f1812679/multidict-6.6.4-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl", hash = "sha256:105245cc6b76f51e408451a844a54e6823bbd5a490ebfe5bdfc79798511ceded", size = 229696, upload-time = "2025-08-11T12:06:33.087Z" },
{ url = "https://files.pythonhosted.org/packages/b6/0e/915160be8fecf1fca35f790c08fb74ca684d752fcba62c11daaf3d92c216/multidict-6.6.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:cbbc54e58b34c3bae389ef00046be0961f30fef7cb0dd9c7756aee376a4f7683", size = 246665, upload-time = "2025-08-11T12:06:34.448Z" },
{ url = "https://files.pythonhosted.org/packages/08/ee/2f464330acd83f77dcc346f0b1a0eaae10230291450887f96b204b8ac4d3/multidict-6.6.4-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:56c6b3652f945c9bc3ac6c8178cd93132b8d82dd581fcbc3a00676c51302bc1a", size = 225485, upload-time = "2025-08-11T12:06:35.672Z" },
{ url = "https://files.pythonhosted.org/packages/71/cc/9a117f828b4d7fbaec6adeed2204f211e9caf0a012692a1ee32169f846ae/multidict-6.6.4-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:b95494daf857602eccf4c18ca33337dd2be705bccdb6dddbfc9d513e6addb9d9", size = 257318, upload-time = "2025-08-11T12:06:36.98Z" },
{ url = "https://files.pythonhosted.org/packages/25/77/62752d3dbd70e27fdd68e86626c1ae6bccfebe2bb1f84ae226363e112f5a/multidict-6.6.4-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:e5b1413361cef15340ab9dc61523e653d25723e82d488ef7d60a12878227ed50", size = 254689, upload-time = "2025-08-11T12:06:38.233Z" },
{ url = "https://files.pythonhosted.org/packages/00/6e/fac58b1072a6fc59af5e7acb245e8754d3e1f97f4f808a6559951f72a0d4/multidict-6.6.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:e167bf899c3d724f9662ef00b4f7fef87a19c22b2fead198a6f68b263618df52", size = 246709, upload-time = "2025-08-11T12:06:39.517Z" },
{ url = "https://files.pythonhosted.org/packages/01/ef/4698d6842ef5e797c6db7744b0081e36fb5de3d00002cc4c58071097fac3/multidict-6.6.4-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:aaea28ba20a9026dfa77f4b80369e51cb767c61e33a2d4043399c67bd95fb7c6", size = 243185, upload-time = "2025-08-11T12:06:40.796Z" },
{ url = "https://files.pythonhosted.org/packages/aa/c9/d82e95ae1d6e4ef396934e9b0e942dfc428775f9554acf04393cce66b157/multidict-6.6.4-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:8c91cdb30809a96d9ecf442ec9bc45e8cfaa0f7f8bdf534e082c2443a196727e", size = 237838, upload-time = "2025-08-11T12:06:42.595Z" },
{ url = "https://files.pythonhosted.org/packages/57/cf/f94af5c36baaa75d44fab9f02e2a6bcfa0cd90acb44d4976a80960759dbc/multidict-6.6.4-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:1a0ccbfe93ca114c5d65a2471d52d8829e56d467c97b0e341cf5ee45410033b3", size = 246368, upload-time = "2025-08-11T12:06:44.304Z" },
{ url = "https://files.pythonhosted.org/packages/4a/fe/29f23460c3d995f6a4b678cb2e9730e7277231b981f0b234702f0177818a/multidict-6.6.4-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:55624b3f321d84c403cb7d8e6e982f41ae233d85f85db54ba6286f7295dc8a9c", size = 253339, upload-time = "2025-08-11T12:06:45.597Z" },
{ url = "https://files.pythonhosted.org/packages/29/b6/fd59449204426187b82bf8a75f629310f68c6adc9559dc922d5abe34797b/multidict-6.6.4-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:4a1fb393a2c9d202cb766c76208bd7945bc194eba8ac920ce98c6e458f0b524b", size = 246933, upload-time = "2025-08-11T12:06:46.841Z" },
{ url = "https://files.pythonhosted.org/packages/19/52/d5d6b344f176a5ac3606f7a61fb44dc746e04550e1a13834dff722b8d7d6/multidict-6.6.4-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:43868297a5759a845fa3a483fb4392973a95fb1de891605a3728130c52b8f40f", size = 242225, upload-time = "2025-08-11T12:06:48.588Z" },
{ url = "https://files.pythonhosted.org/packages/ec/d3/5b2281ed89ff4d5318d82478a2a2450fcdfc3300da48ff15c1778280ad26/multidict-6.6.4-cp311-cp311-win32.whl", hash = "sha256:ed3b94c5e362a8a84d69642dbeac615452e8af9b8eb825b7bc9f31a53a1051e2", size = 41306, upload-time = "2025-08-11T12:06:49.95Z" },
{ url = "https://files.pythonhosted.org/packages/74/7d/36b045c23a1ab98507aefd44fd8b264ee1dd5e5010543c6fccf82141ccef/multidict-6.6.4-cp311-cp311-win_amd64.whl", hash = "sha256:d8c112f7a90d8ca5d20213aa41eac690bb50a76da153e3afb3886418e61cb22e", size = 46029, upload-time = "2025-08-11T12:06:51.082Z" },
{ url = "https://files.pythonhosted.org/packages/0f/5e/553d67d24432c5cd52b49047f2d248821843743ee6d29a704594f656d182/multidict-6.6.4-cp311-cp311-win_arm64.whl", hash = "sha256:3bb0eae408fa1996d87247ca0d6a57b7fc1dcf83e8a5c47ab82c558c250d4adf", size = 43017, upload-time = "2025-08-11T12:06:52.243Z" },
{ url = "https://files.pythonhosted.org/packages/fd/69/b547032297c7e63ba2af494edba695d781af8a0c6e89e4d06cf848b21d80/multidict-6.6.4-py3-none-any.whl", hash = "sha256:27d8f8e125c07cb954e54d75d04905a9bba8a439c1d84aca94949d4d03d8601c", size = 12313, upload-time = "2025-08-11T12:08:46.891Z" },
]
[[package]]
name = "multiprocess"
version = "0.70.16"
source = { registry = "https://pypi.org/simple" }
dependencies = [
{ name = "dill", marker = "sys_platform == 'darwin' or sys_platform == 'linux' or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
]
sdist = { url = "https://files.pythonhosted.org/packages/b5/ae/04f39c5d0d0def03247c2893d6f2b83c136bf3320a2154d7b8858f2ba72d/multiprocess-0.70.16.tar.gz", hash = "sha256:161af703d4652a0e1410be6abccecde4a7ddffd19341be0a7011b94aeb171ac1", size = 1772603, upload-time = "2024-01-28T18:52:34.85Z" }
wheels = [
{ url = "https://files.pythonhosted.org/packages/bc/f7/7ec7fddc92e50714ea3745631f79bd9c96424cb2702632521028e57d3a36/multiprocess-0.70.16-py310-none-any.whl", hash = "sha256:c4a9944c67bd49f823687463660a2d6daae94c289adff97e0f9d696ba6371d02", size = 134824, upload-time = "2024-01-28T18:52:26.062Z" },
{ url = "https://files.pythonhosted.org/packages/50/15/b56e50e8debaf439f44befec5b2af11db85f6e0f344c3113ae0be0593a91/multiprocess-0.70.16-py311-none-any.whl", hash = "sha256:af4cabb0dac72abfb1e794fa7855c325fd2b55a10a44628a3c1ad3311c04127a", size = 143519, upload-time = "2024-01-28T18:52:28.115Z" },
{ url = "https://files.pythonhosted.org/packages/ea/89/38df130f2c799090c978b366cfdf5b96d08de5b29a4a293df7f7429fa50b/multiprocess-0.70.16-py38-none-any.whl", hash = "sha256:a71d82033454891091a226dfc319d0cfa8019a4e888ef9ca910372a446de4435", size = 132628, upload-time = "2024-01-28T18:52:30.853Z" },
{ url = "https://files.pythonhosted.org/packages/da/d9/f7f9379981e39b8c2511c9e0326d212accacb82f12fbfdc1aa2ce2a7b2b6/multiprocess-0.70.16-py39-none-any.whl", hash = "sha256:a0bafd3ae1b732eac64be2e72038231c1ba97724b60b09400d68f229fcc2fbf3", size = 133351, upload-time = "2024-01-28T18:52:31.981Z" },
]
[[package]]
name = "networkx"
version = "3.5"
source = { registry = "https://pypi.org/simple" }
sdist = { url = "https://files.pythonhosted.org/packages/6c/4f/ccdb8ad3a38e583f214547fd2f7ff1fc160c43a75af88e6aec213404b96a/networkx-3.5.tar.gz", hash = "sha256:d4c6f9cf81f52d69230866796b82afbccdec3db7ae4fbd1b65ea750feed50037", size = 2471065, upload-time = "2025-05-29T11:35:07.804Z" }
wheels = [
{ url = "https://files.pythonhosted.org/packages/eb/8d/776adee7bbf76365fdd7f2552710282c79a4ead5d2a46408c9043a2b70ba/networkx-3.5-py3-none-any.whl", hash = "sha256:0030d386a9a06dee3565298b4a734b68589749a544acbb6c412dc9e2489ec6ec", size = 2034406, upload-time = "2025-05-29T11:35:04.961Z" },
]
[[package]]
name = "numpy"
version = "1.26.4"
source = { registry = "https://pypi.org/simple" }
sdist = { url = "https://files.pythonhosted.org/packages/65/6e/09db70a523a96d25e115e71cc56a6f9031e7b8cd166c1ac8438307c14058/numpy-1.26.4.tar.gz", hash = "sha256:2a02aba9ed12e4ac4eb3ea9421c420301a0c6460d9830d74a9df87efa4912010", size = 15786129, upload-time = "2024-02-06T00:26:44.495Z" }
wheels = [
{ url = "https://files.pythonhosted.org/packages/11/57/baae43d14fe163fa0e4c47f307b6b2511ab8d7d30177c491960504252053/numpy-1.26.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4c66707fabe114439db9068ee468c26bbdf909cac0fb58686a42a24de1760c71", size = 20630554, upload-time = "2024-02-05T23:51:50.149Z" },
{ url = "https://files.pythonhosted.org/packages/1a/2e/151484f49fd03944c4a3ad9c418ed193cfd02724e138ac8a9505d056c582/numpy-1.26.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:edd8b5fe47dab091176d21bb6de568acdd906d1887a4584a15a9a96a1dca06ef", size = 13997127, upload-time = "2024-02-05T23:52:15.314Z" },
{ url = "https://files.pythonhosted.org/packages/79/ae/7e5b85136806f9dadf4878bf73cf223fe5c2636818ba3ab1c585d0403164/numpy-1.26.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7ab55401287bfec946ced39700c053796e7cc0e3acbef09993a9ad2adba6ca6e", size = 14222994, upload-time = "2024-02-05T23:52:47.569Z" },
{ url = "https://files.pythonhosted.org/packages/3a/d0/edc009c27b406c4f9cbc79274d6e46d634d139075492ad055e3d68445925/numpy-1.26.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:666dbfb6ec68962c033a450943ded891bed2d54e6755e35e5835d63f4f6931d5", size = 18252005, upload-time = "2024-02-05T23:53:15.637Z" },
{ url = "https://files.pythonhosted.org/packages/09/bf/2b1aaf8f525f2923ff6cfcf134ae5e750e279ac65ebf386c75a0cf6da06a/numpy-1.26.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:96ff0b2ad353d8f990b63294c8986f1ec3cb19d749234014f4e7eb0112ceba5a", size = 13885297, upload-time = "2024-02-05T23:53:42.16Z" },
{ url = "https://files.pythonhosted.org/packages/df/a0/4e0f14d847cfc2a633a1c8621d00724f3206cfeddeb66d35698c4e2cf3d2/numpy-1.26.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:60dedbb91afcbfdc9bc0b1f3f402804070deed7392c23eb7a7f07fa857868e8a", size = 18093567, upload-time = "2024-02-05T23:54:11.696Z" },
{ url = "https://files.pythonhosted.org/packages/d2/b7/a734c733286e10a7f1a8ad1ae8c90f2d33bf604a96548e0a4a3a6739b468/numpy-1.26.4-cp311-cp311-win32.whl", hash = "sha256:1af303d6b2210eb850fcf03064d364652b7120803a0b872f5211f5234b399f20", size = 5968812, upload-time = "2024-02-05T23:54:26.453Z" },
{ url = "https://files.pythonhosted.org/packages/3f/6b/5610004206cf7f8e7ad91c5a85a8c71b2f2f8051a0c0c4d5916b76d6cbb2/numpy-1.26.4-cp311-cp311-win_amd64.whl", hash = "sha256:cd25bcecc4974d09257ffcd1f098ee778f7834c3ad767fe5db785be9a4aa9cb2", size = 15811913, upload-time = "2024-02-05T23:54:53.933Z" },
]
[[package]]
name = "nvidia-cublas-cu12"
version = "12.8.3.14"
source = { registry = "https://pypi.org/simple" }
resolution-markers = [
"(platform_machine != 'aarch64' and sys_platform == 'linux') or (platform_python_implementation != 'CPython' and sys_platform == 'linux')",
]
wheels = [
{ url = "https://files.pythonhosted.org/packages/ed/63/684a6f72f52671ea222c12ecde9bdf748a0ba025e2ad3ec374e466c26eb6/nvidia_cublas_cu12-12.8.3.14-py3-none-manylinux_2_27_aarch64.whl", hash = "sha256:93a4e0e386cc7f6e56c822531396de8170ed17068a1e18f987574895044cd8c3", size = 604900717, upload-time = "2025-01-23T17:52:55.486Z" },
{ url = "https://files.pythonhosted.org/packages/82/df/4b01f10069e23c641f116c62fc31e31e8dc361a153175d81561d15c8143b/nvidia_cublas_cu12-12.8.3.14-py3-none-manylinux_2_27_x86_64.whl", hash = "sha256:3f0e05e7293598cf61933258b73e66a160c27d59c4422670bf0b79348c04be44", size = 609620630, upload-time = "2025-01-23T17:55:00.753Z" },
{ url = "https://files.pythonhosted.org/packages/6c/54/fbfa3315b936d3358517f7da5f9f2557c279bf210e5261f0cf66cc0f9832/nvidia_cublas_cu12-12.8.3.14-py3-none-win_amd64.whl", hash = "sha256:9ae5eae500aead01fc4bdfc458209df638b1a3551557ce11a78eea9ece602ae9", size = 578387959, upload-time = "2025-01-23T18:08:00.662Z" },
]
[[package]]
name = "nvidia-cublas-cu12"
version = "12.8.4.1"
source = { registry = "https://pypi.org/simple" }
resolution-markers = [
"(platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly' and extra != 'extra-7-maester-rocm' and extra != 'extra-7-maester-rocm-nightly') or (platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly' and extra != 'extra-7-maester-rocm' and extra != 'extra-7-maester-rocm-nightly')",
"platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly' and extra != 'extra-7-maester-rocm' and extra != 'extra-7-maester-rocm-nightly'",
"sys_platform == 'linux' and extra != 'extra-7-maester-cuda' and extra != 'extra-7-maester-cuda-nightly' and extra != 'extra-7-maester-rocm' and extra != 'extra-7-maester-rocm-nightly'",
]
wheels = [
{ url = "https://files.pythonhosted.org/packages/29/99/db44d685f0e257ff0e213ade1964fc459b4a690a73293220e98feb3307cf/nvidia_cublas_cu12-12.8.4.1-py3-none-manylinux_2_27_aarch64.whl", hash = "sha256:b86f6dd8935884615a0683b663891d43781b819ac4f2ba2b0c9604676af346d0", size = 590537124, upload-time = "2025-03-07T01:43:53.556Z" },
{ url = "https://files.pythonhosted.org/packages/dc/61/e24b560ab2e2eaeb3c839129175fb330dfcfc29e5203196e5541a4c44682/nvidia_cublas_cu12-12.8.4.1-py3-none-manylinux_2_27_x86_64.whl", hash = "sha256:8ac4e771d5a348c551b2a426eda6193c19aa630236b418086020df5ba9667142", size = 594346921, upload-time = "2025-03-07T01:44:31.254Z" },
{ url = "https://files.pythonhosted.org/packages/70/61/7d7b3c70186fb651d0fbd35b01dbfc8e755f69fd58f817f3d0f642df20c3/nvidia_cublas_cu12-12.8.4.1-py3-none-win_amd64.whl", hash = "sha256:47e9b82132fa8d2b4944e708049229601448aaad7e6f296f630f2d1a32de35af", size = 567544208, upload-time = "2025-03-07T01:53:30.535Z" },
]
[[package]]
name = "nvidia-cuda-cupti-cu12"
version = "12.8.57"
source = { registry = "https://pypi.org/simple" }
resolution-markers = [
"(platform_machine != 'aarch64' and sys_platform == 'linux') or (platform_python_implementation != 'CPython' and sys_platform == 'linux')",
]
wheels = [
{ url = "https://files.pythonhosted.org/packages/fe/53/458956a65283c55c22ba40a65745bbe9ff20c10b68ea241bc575e20c0465/nvidia_cuda_cupti_cu12-12.8.57-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:ff154211724fd824e758ce176b66007b558eea19c9a5135fc991827ee147e317", size = 9526469, upload-time = "2025-01-23T17:47:33.104Z" },
{ url = "https://files.pythonhosted.org/packages/39/6f/3683ecf4e38931971946777d231c2df00dd5c1c4c2c914c42ad8f9f4dca6/nvidia_cuda_cupti_cu12-12.8.57-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:8e0b2eb847de260739bee4a3f66fac31378f4ff49538ff527a38a01a9a39f950", size = 10237547, upload-time = "2025-01-23T17:47:56.863Z" },
{ url = "https://files.pythonhosted.org/packages/3f/2a/cabe033045427beb042b70b394ac3fd7cfefe157c965268824011b16af67/nvidia_cuda_cupti_cu12-12.8.57-py3-none-win_amd64.whl", hash = "sha256:bbed719c52a476958a74cfc42f2b95a3fd6b3fd94eb40134acc4601feb4acac3", size = 7002337, upload-time = "2025-01-23T18:04:35.34Z" },
]
[[package]]
name = "nvidia-cuda-cupti-cu12"
version = "12.8.90"
source = { registry = "https://pypi.org/simple" }
resolution-markers = [
"(platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly' and extra != 'extra-7-maester-rocm' and extra != 'extra-7-maester-rocm-nightly') or (platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly' and extra != 'extra-7-maester-rocm' and extra != 'extra-7-maester-rocm-nightly')",
"platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly' and extra != 'extra-7-maester-rocm' and extra != 'extra-7-maester-rocm-nightly'",
"sys_platform == 'linux' and extra != 'extra-7-maester-cuda' and extra != 'extra-7-maester-cuda-nightly' and extra != 'extra-7-maester-rocm' and extra != 'extra-7-maester-rocm-nightly'",
]
wheels = [
{ url = "https://files.pythonhosted.org/packages/d5/1f/b3bd73445e5cb342727fd24fe1f7b748f690b460acadc27ea22f904502c8/nvidia_cuda_cupti_cu12-12.8.90-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:4412396548808ddfed3f17a467b104ba7751e6b58678a4b840675c56d21cf7ed", size = 9533318, upload-time = "2025-03-07T01:40:10.421Z" },
{ url = "https://files.pythonhosted.org/packages/f8/02/2adcaa145158bf1a8295d83591d22e4103dbfd821bcaf6f3f53151ca4ffa/nvidia_cuda_cupti_cu12-12.8.90-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:ea0cb07ebda26bb9b29ba82cda34849e73c166c18162d3913575b0c9db9a6182", size = 10248621, upload-time = "2025-03-07T01:40:21.213Z" },
{ url = "https://files.pythonhosted.org/packages/41/bc/83f5426095d93694ae39fe1311431b5d5a9bb82e48bf0dd8e19be2765942/nvidia_cuda_cupti_cu12-12.8.90-py3-none-win_amd64.whl", hash = "sha256:bb479dcdf7e6d4f8b0b01b115260399bf34154a1a2e9fe11c85c517d87efd98e", size = 7015759, upload-time = "2025-03-07T01:51:11.355Z" },
]
[[package]]
name = "nvidia-cuda-nvrtc-cu12"
version = "12.8.61"
source = { registry = "https://pypi.org/simple" }
resolution-markers = [
"(platform_machine != 'aarch64' and sys_platform == 'linux') or (platform_python_implementation != 'CPython' and sys_platform == 'linux')",
]
wheels = [
{ url = "https://files.pythonhosted.org/packages/d4/22/32029d4583f7b19cfe75c84399cbcfd23f2aaf41c66fc8db4da460104fff/nvidia_cuda_nvrtc_cu12-12.8.61-py3-none-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", hash = "sha256:a0fa9c2a21583105550ebd871bd76e2037205d56f33f128e69f6d2a55e0af9ed", size = 88024585, upload-time = "2025-01-23T17:50:10.722Z" },
{ url = "https://files.pythonhosted.org/packages/f1/98/29f98d57fc40d6646337e942d37509c6d5f8abe29012671f7a6eb9978ebe/nvidia_cuda_nvrtc_cu12-12.8.61-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:b1f376bf58111ca73dde4fd4df89a462b164602e074a76a2c29c121ca478dcd4", size = 43097015, upload-time = "2025-01-23T17:49:44.331Z" },
{ url = "https://files.pythonhosted.org/packages/f8/5b/052d05aa068e4752415ad03bac58e852ea8bc17c9321e08546b3f261e47e/nvidia_cuda_nvrtc_cu12-12.8.61-py3-none-win_amd64.whl", hash = "sha256:9c8887bf5e5dffc441018ba8c5dc59952372a6f4806819e8c1f03d62637dbeea", size = 73567440, upload-time = "2025-01-23T18:05:51.036Z" },
]
[[package]]
name = "nvidia-cuda-nvrtc-cu12"
version = "12.8.93"
source = { registry = "https://pypi.org/simple" }
resolution-markers = [
"(platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly' and extra != 'extra-7-maester-rocm' and extra != 'extra-7-maester-rocm-nightly') or (platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly' and extra != 'extra-7-maester-rocm' and extra != 'extra-7-maester-rocm-nightly')",
"platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly' and extra != 'extra-7-maester-rocm' and extra != 'extra-7-maester-rocm-nightly'",
"sys_platform == 'linux' and extra != 'extra-7-maester-cuda' and extra != 'extra-7-maester-cuda-nightly' and extra != 'extra-7-maester-rocm' and extra != 'extra-7-maester-rocm-nightly'",
]
wheels = [
{ url = "https://files.pythonhosted.org/packages/05/6b/32f747947df2da6994e999492ab306a903659555dddc0fbdeb9d71f75e52/nvidia_cuda_nvrtc_cu12-12.8.93-py3-none-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", hash = "sha256:a7756528852ef889772a84c6cd89d41dfa74667e24cca16bb31f8f061e3e9994", size = 88040029, upload-time = "2025-03-07T01:42:13.562Z" },
{ url = "https://files.pythonhosted.org/packages/eb/d1/e50d0acaab360482034b84b6e27ee83c6738f7d32182b987f9c7a4e32962/nvidia_cuda_nvrtc_cu12-12.8.93-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:fc1fec1e1637854b4c0a65fb9a8346b51dd9ee69e61ebaccc82058441f15bce8", size = 43106076, upload-time = "2025-03-07T01:41:59.817Z" },
{ url = "https://files.pythonhosted.org/packages/45/51/52a3d84baa2136cc8df15500ad731d74d3a1114d4c123e043cb608d4a32b/nvidia_cuda_nvrtc_cu12-12.8.93-py3-none-win_amd64.whl", hash = "sha256:7a4b6b2904850fe78e0bd179c4b655c404d4bb799ef03ddc60804247099ae909", size = 73586838, upload-time = "2025-03-07T01:52:13.483Z" },
]
[[package]]
name = "nvidia-cuda-runtime-cu12"
version = "12.8.57"
source = { registry = "https://pypi.org/simple" }
resolution-markers = [
"(platform_machine != 'aarch64' and sys_platform == 'linux') or (platform_python_implementation != 'CPython' and sys_platform == 'linux')",
]
wheels = [
{ url = "https://files.pythonhosted.org/packages/cd/9d/e77ec4227e70c6006195bdf410370f2d0e5abfa2dc0d1d315cacd57c5c88/nvidia_cuda_runtime_cu12-12.8.57-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:534ccebd967b6a44292678fa5da4f00666029cb2ed07a79515ea41ef31fe3ec7", size = 965264, upload-time = "2025-01-23T17:47:11.759Z" },
{ url = "https://files.pythonhosted.org/packages/16/f6/0e1ef31f4753a44084310ba1a7f0abaf977ccd810a604035abb43421c057/nvidia_cuda_runtime_cu12-12.8.57-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:75342e28567340b7428ce79a5d6bb6ca5ff9d07b69e7ce00d2c7b4dc23eff0be", size = 954762, upload-time = "2025-01-23T17:47:22.21Z" },
{ url = "https://files.pythonhosted.org/packages/16/ee/52508c74bee2a3de8d59c6fd9af4ca2f216052fa2bc916da3a6a7bb998af/nvidia_cuda_runtime_cu12-12.8.57-py3-none-win_amd64.whl", hash = "sha256:89be637e3ee967323865b85e0f147d75f9a5bd98360befa37481b02dd57af8f5", size = 944309, upload-time = "2025-01-23T18:04:23.143Z" },
]
[[package]]
name = "nvidia-cuda-runtime-cu12"
version = "12.8.90"
source = { registry = "https://pypi.org/simple" }
resolution-markers = [
"(platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly' and extra != 'extra-7-maester-rocm' and extra != 'extra-7-maester-rocm-nightly') or (platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly' and extra != 'extra-7-maester-rocm' and extra != 'extra-7-maester-rocm-nightly')",
"platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly' and extra != 'extra-7-maester-rocm' and extra != 'extra-7-maester-rocm-nightly'",
"sys_platform == 'linux' and extra != 'extra-7-maester-cuda' and extra != 'extra-7-maester-cuda-nightly' and extra != 'extra-7-maester-rocm' and extra != 'extra-7-maester-rocm-nightly'",
]
wheels = [
{ url = "https://files.pythonhosted.org/packages/7c/75/f865a3b236e4647605ea34cc450900854ba123834a5f1598e160b9530c3a/nvidia_cuda_runtime_cu12-12.8.90-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:52bf7bbee900262ffefe5e9d5a2a69a30d97e2bc5bb6cc866688caa976966e3d", size = 965265, upload-time = "2025-03-07T01:39:43.533Z" },
{ url = "https://files.pythonhosted.org/packages/0d/9b/a997b638fcd068ad6e4d53b8551a7d30fe8b404d6f1804abf1df69838932/nvidia_cuda_runtime_cu12-12.8.90-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:adade8dcbd0edf427b7204d480d6066d33902cab2a4707dcfc48a2d0fd44ab90", size = 954765, upload-time = "2025-03-07T01:40:01.615Z" },
{ url = "https://files.pythonhosted.org/packages/30/a5/a515b7600ad361ea14bfa13fb4d6687abf500adc270f19e89849c0590492/nvidia_cuda_runtime_cu12-12.8.90-py3-none-win_amd64.whl", hash = "sha256:c0c6027f01505bfed6c3b21ec546f69c687689aad5f1a377554bc6ca4aa993a8", size = 944318, upload-time = "2025-03-07T01:51:01.794Z" },
]
[[package]]
name = "nvidia-cudnn-cu12"
version = "9.7.1.26"
source = { registry = "https://pypi.org/simple" }
resolution-markers = [
"(platform_machine != 'aarch64' and sys_platform == 'linux') or (platform_python_implementation != 'CPython' and sys_platform == 'linux')",
]
dependencies = [
{ name = "nvidia-cublas-cu12", version = "12.8.3.14", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'extra-7-maester-cuda') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
]
wheels = [
{ url = "https://files.pythonhosted.org/packages/c1/2e/ec5dda717eeb1de3afbbbb611ca556f9d6d057470759c6abd36d72f0063b/nvidia_cudnn_cu12-9.7.1.26-py3-none-manylinux_2_27_aarch64.whl", hash = "sha256:848a61d40ef3b32bd4e1fadb599f0cf04a4b942fbe5fb3be572ad75f9b8c53ef", size = 725862213, upload-time = "2025-02-06T22:14:57.169Z" },
{ url = "https://files.pythonhosted.org/packages/25/dc/dc825c4b1c83b538e207e34f48f86063c88deaa35d46c651c7c181364ba2/nvidia_cudnn_cu12-9.7.1.26-py3-none-manylinux_2_27_x86_64.whl", hash = "sha256:6d011159a158f3cfc47bf851aea79e31bcff60d530b70ef70474c84cac484d07", size = 726851421, upload-time = "2025-02-06T22:18:29.812Z" },
{ url = "https://files.pythonhosted.org/packages/d0/ea/636cda41b3865caa0d43c34f558167304acde3d2c5f6c54c00a550e69ecd/nvidia_cudnn_cu12-9.7.1.26-py3-none-win_amd64.whl", hash = "sha256:7b805b9a4cf9f3da7c5f4ea4a9dff7baf62d1a612d6154a7e0d2ea51ed296241", size = 715962100, upload-time = "2025-02-06T22:21:32.431Z" },
]
[[package]]
name = "nvidia-cudnn-cu12"
version = "9.10.2.21"
source = { registry = "https://pypi.org/simple" }
resolution-markers = [
"(platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly' and extra != 'extra-7-maester-rocm' and extra != 'extra-7-maester-rocm-nightly') or (platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly' and extra != 'extra-7-maester-rocm' and extra != 'extra-7-maester-rocm-nightly')",
"platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly' and extra != 'extra-7-maester-rocm' and extra != 'extra-7-maester-rocm-nightly'",
"sys_platform == 'linux' and extra != 'extra-7-maester-cuda' and extra != 'extra-7-maester-cuda-nightly' and extra != 'extra-7-maester-rocm' and extra != 'extra-7-maester-rocm-nightly'",
]
dependencies = [
{ name = "nvidia-cublas-cu12", version = "12.8.4.1", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'extra-7-maester-cuda-nightly') or (sys_platform == 'linux' and extra != 'extra-7-maester-cuda' and extra != 'extra-7-maester-rocm' and extra != 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
]
wheels = [
{ url = "https://files.pythonhosted.org/packages/fa/41/e79269ce215c857c935fd86bcfe91a451a584dfc27f1e068f568b9ad1ab7/nvidia_cudnn_cu12-9.10.2.21-py3-none-manylinux_2_27_aarch64.whl", hash = "sha256:c9132cc3f8958447b4910a1720036d9eff5928cc3179b0a51fb6d167c6cc87d8", size = 705026878, upload-time = "2025-06-06T21:52:51.348Z" },
{ url = "https://files.pythonhosted.org/packages/ba/51/e123d997aa098c61d029f76663dedbfb9bc8dcf8c60cbd6adbe42f76d049/nvidia_cudnn_cu12-9.10.2.21-py3-none-manylinux_2_27_x86_64.whl", hash = "sha256:949452be657fa16687d0930933f032835951ef0892b37d2d53824d1a84dc97a8", size = 706758467, upload-time = "2025-06-06T21:54:08.597Z" },
{ url = "https://files.pythonhosted.org/packages/3d/90/0bd6e586701b3a890fd38aa71c387dab4883d619d6e5ad912ccbd05bfd67/nvidia_cudnn_cu12-9.10.2.21-py3-none-win_amd64.whl", hash = "sha256:c6288de7d63e6cf62988f0923f96dc339cea362decb1bf5b3141883392a7d65e", size = 692992268, upload-time = "2025-06-06T21:55:18.114Z" },
]
[[package]]
name = "nvidia-cufft-cu12"
version = "11.3.3.41"
source = { registry = "https://pypi.org/simple" }
resolution-markers = [
"(platform_machine != 'aarch64' and sys_platform == 'linux') or (platform_python_implementation != 'CPython' and sys_platform == 'linux')",
]
dependencies = [
{ name = "nvidia-nvjitlink-cu12", version = "12.8.61", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'extra-7-maester-cuda') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
]
wheels = [
{ url = "https://files.pythonhosted.org/packages/72/95/6157cb45a49f5090a470de42353a22a0ed5b13077886dca891b4b0e350fe/nvidia_cufft_cu12-11.3.3.41-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:68509dcd7e3306e69d0e2d8a6d21c8b25ed62e6df8aac192ce752f17677398b5", size = 193108626, upload-time = "2025-01-23T17:55:49.192Z" },
{ url = "https://files.pythonhosted.org/packages/ac/26/b53c493c38dccb1f1a42e1a21dc12cba2a77fbe36c652f7726d9ec4aba28/nvidia_cufft_cu12-11.3.3.41-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:da650080ab79fcdf7a4b06aa1b460e99860646b176a43f6208099bdc17836b6a", size = 193118795, upload-time = "2025-01-23T17:56:30.536Z" },
{ url = "https://files.pythonhosted.org/packages/32/f3/f6248aa119c2726b1bdd02d472332cae274133bd32ca5fa8822efb0c308c/nvidia_cufft_cu12-11.3.3.41-py3-none-win_amd64.whl", hash = "sha256:f9760612886786601d27a0993bb29ce1f757e6b8b173499d0ecfa850d31b50f8", size = 192216738, upload-time = "2025-01-23T18:08:51.102Z" },
]
[[package]]
name = "nvidia-cufft-cu12"
version = "11.3.3.83"
source = { registry = "https://pypi.org/simple" }
resolution-markers = [
"(platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly' and extra != 'extra-7-maester-rocm' and extra != 'extra-7-maester-rocm-nightly') or (platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly' and extra != 'extra-7-maester-rocm' and extra != 'extra-7-maester-rocm-nightly')",
"platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly' and extra != 'extra-7-maester-rocm' and extra != 'extra-7-maester-rocm-nightly'",
"sys_platform == 'linux' and extra != 'extra-7-maester-cuda' and extra != 'extra-7-maester-cuda-nightly' and extra != 'extra-7-maester-rocm' and extra != 'extra-7-maester-rocm-nightly'",
]
dependencies = [
{ name = "nvidia-nvjitlink-cu12", version = "12.8.93", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'extra-7-maester-cuda-nightly') or (sys_platform == 'linux' and extra != 'extra-7-maester-cuda' and extra != 'extra-7-maester-rocm' and extra != 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
]
wheels = [
{ url = "https://files.pythonhosted.org/packages/60/bc/7771846d3a0272026c416fbb7e5f4c1f146d6d80704534d0b187dd6f4800/nvidia_cufft_cu12-11.3.3.83-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:848ef7224d6305cdb2a4df928759dca7b1201874787083b6e7550dd6765ce69a", size = 193109211, upload-time = "2025-03-07T01:44:56.873Z" },
{ url = "https://files.pythonhosted.org/packages/1f/13/ee4e00f30e676b66ae65b4f08cb5bcbb8392c03f54f2d5413ea99a5d1c80/nvidia_cufft_cu12-11.3.3.83-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:4d2dd21ec0b88cf61b62e6b43564355e5222e4a3fb394cac0db101f2dd0d4f74", size = 193118695, upload-time = "2025-03-07T01:45:27.821Z" },
{ url = "https://files.pythonhosted.org/packages/7d/ec/ce1629f1e478bb5ccd208986b5f9e0316a78538dd6ab1d0484f012f8e2a1/nvidia_cufft_cu12-11.3.3.83-py3-none-win_amd64.whl", hash = "sha256:7a64a98ef2a7c47f905aaf8931b69a3a43f27c55530c698bb2ed7c75c0b42cb7", size = 192216559, upload-time = "2025-03-07T01:53:57.106Z" },
]
[[package]]
name = "nvidia-cufile-cu12"
version = "1.13.0.11"
source = { registry = "https://pypi.org/simple" }
resolution-markers = [
"(platform_machine != 'aarch64' and sys_platform == 'linux') or (platform_python_implementation != 'CPython' and sys_platform == 'linux')",
]
wheels = [
{ url = "https://files.pythonhosted.org/packages/e5/9c/1f3264d0a84c8a031487fb7f59780fc78fa6f1c97776233956780e3dc3ac/nvidia_cufile_cu12-1.13.0.11-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:483f434c541806936b98366f6d33caef5440572de8ddf38d453213729da3e7d4", size = 1197801, upload-time = "2025-01-23T17:57:07.247Z" },
{ url = "https://files.pythonhosted.org/packages/35/80/f6a0fc90ab6fa4ac916f3643e5b620fd19724626c59ae83b74f5efef0349/nvidia_cufile_cu12-1.13.0.11-py3-none-manylinux_2_27_aarch64.whl", hash = "sha256:2acbee65dc2eaf58331f0798c5e6bcdd790c4acb26347530297e63528c9eba5d", size = 1120660, upload-time = "2025-01-23T17:56:56.608Z" },
]
[[package]]
name = "nvidia-cufile-cu12"
version = "1.13.1.3"
source = { registry = "https://pypi.org/simple" }
resolution-markers = [
"(platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly' and extra != 'extra-7-maester-rocm' and extra != 'extra-7-maester-rocm-nightly') or (platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly' and extra != 'extra-7-maester-rocm' and extra != 'extra-7-maester-rocm-nightly')",
"platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly' and extra != 'extra-7-maester-rocm' and extra != 'extra-7-maester-rocm-nightly'",
"sys_platform == 'linux' and extra != 'extra-7-maester-cuda' and extra != 'extra-7-maester-cuda-nightly' and extra != 'extra-7-maester-rocm' and extra != 'extra-7-maester-rocm-nightly'",
]
wheels = [
{ url = "https://files.pythonhosted.org/packages/bb/fe/1bcba1dfbfb8d01be8d93f07bfc502c93fa23afa6fd5ab3fc7c1df71038a/nvidia_cufile_cu12-1.13.1.3-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:1d069003be650e131b21c932ec3d8969c1715379251f8d23a1860554b1cb24fc", size = 1197834, upload-time = "2025-03-07T01:45:50.723Z" },
{ url = "https://files.pythonhosted.org/packages/1e/f5/5607710447a6fe9fd9b3283956fceeee8a06cda1d2f56ce31371f595db2a/nvidia_cufile_cu12-1.13.1.3-py3-none-manylinux_2_27_aarch64.whl", hash = "sha256:4beb6d4cce47c1a0f1013d72e02b0994730359e17801d395bdcbf20cfb3bb00a", size = 1120705, upload-time = "2025-03-07T01:45:41.434Z" },
]
[[package]]
name = "nvidia-curand-cu12"
version = "10.3.9.55"
source = { registry = "https://pypi.org/simple" }
resolution-markers = [
"(platform_machine != 'aarch64' and sys_platform == 'linux') or (platform_python_implementation != 'CPython' and sys_platform == 'linux')",
]
wheels = [
{ url = "https://files.pythonhosted.org/packages/f4/13/bbcf48e2f8a6a9adef58f130bc968810528a4e66bbbe62fad335241e699f/nvidia_curand_cu12-10.3.9.55-py3-none-manylinux_2_27_aarch64.whl", hash = "sha256:b6bb90c044fa9b07cedae2ef29077c4cf851fb6fdd6d862102321f359dca81e9", size = 63623836, upload-time = "2025-01-23T17:57:22.319Z" },
{ url = "https://files.pythonhosted.org/packages/bd/fc/7be5d0082507269bb04ac07cc614c84b78749efb96e8cf4100a8a1178e98/nvidia_curand_cu12-10.3.9.55-py3-none-manylinux_2_27_x86_64.whl", hash = "sha256:8387d974240c91f6a60b761b83d4b2f9b938b7e0b9617bae0f0dafe4f5c36b86", size = 63618038, upload-time = "2025-01-23T17:57:41.838Z" },
{ url = "https://files.pythonhosted.org/packages/d6/f0/91252f3cffe3f3c233a8e17262c21b41534652edfe783c1e58ea1c92c115/nvidia_curand_cu12-10.3.9.55-py3-none-win_amd64.whl", hash = "sha256:570d82475fe7f3d8ed01ffbe3b71796301e0e24c98762ca018ff8ce4f5418e1f", size = 62761446, upload-time = "2025-01-23T18:09:21.663Z" },
]
[[package]]
name = "nvidia-curand-cu12"
version = "10.3.9.90"
source = { registry = "https://pypi.org/simple" }
resolution-markers = [
"(platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly' and extra != 'extra-7-maester-rocm' and extra != 'extra-7-maester-rocm-nightly') or (platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly' and extra != 'extra-7-maester-rocm' and extra != 'extra-7-maester-rocm-nightly')",
"platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly' and extra != 'extra-7-maester-rocm' and extra != 'extra-7-maester-rocm-nightly'",
"sys_platform == 'linux' and extra != 'extra-7-maester-cuda' and extra != 'extra-7-maester-cuda-nightly' and extra != 'extra-7-maester-rocm' and extra != 'extra-7-maester-rocm-nightly'",
]
wheels = [
{ url = "https://files.pythonhosted.org/packages/45/5e/92aa15eca622a388b80fbf8375d4760738df6285b1e92c43d37390a33a9a/nvidia_curand_cu12-10.3.9.90-py3-none-manylinux_2_27_aarch64.whl", hash = "sha256:dfab99248034673b779bc6decafdc3404a8a6f502462201f2f31f11354204acd", size = 63625754, upload-time = "2025-03-07T01:46:10.735Z" },
{ url = "https://files.pythonhosted.org/packages/fb/aa/6584b56dc84ebe9cf93226a5cde4d99080c8e90ab40f0c27bda7a0f29aa1/nvidia_curand_cu12-10.3.9.90-py3-none-manylinux_2_27_x86_64.whl", hash = "sha256:b32331d4f4df5d6eefa0554c565b626c7216f87a06a4f56fab27c3b68a830ec9", size = 63619976, upload-time = "2025-03-07T01:46:23.323Z" },
{ url = "https://files.pythonhosted.org/packages/b9/75/70c05b2f3ed5be3bb30b7102b6eb78e100da4bbf6944fd6725c012831cab/nvidia_curand_cu12-10.3.9.90-py3-none-win_amd64.whl", hash = "sha256:f149a8ca457277da854f89cf282d6ef43176861926c7ac85b2a0fbd237c587ec", size = 62765309, upload-time = "2025-03-07T01:54:20.478Z" },
]
[[package]]
name = "nvidia-cusolver-cu12"
version = "11.7.2.55"
source = { registry = "https://pypi.org/simple" }
resolution-markers = [
"(platform_machine != 'aarch64' and sys_platform == 'linux') or (platform_python_implementation != 'CPython' and sys_platform == 'linux')",
]
dependencies = [
{ name = "nvidia-cublas-cu12", version = "12.8.3.14", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'extra-7-maester-cuda') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "nvidia-cusparse-cu12", version = "12.5.7.53", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'extra-7-maester-cuda') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "nvidia-nvjitlink-cu12", version = "12.8.61", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'extra-7-maester-cuda') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
]
wheels = [
{ url = "https://files.pythonhosted.org/packages/8c/ce/4214a892e804b20bf66d04f04a473006fc2d3dac158160ef85f1bc906639/nvidia_cusolver_cu12-11.7.2.55-py3-none-manylinux_2_27_aarch64.whl", hash = "sha256:0fd9e98246f43c15bee5561147ad235dfdf2d037f5d07c9d41af3f7f72feb7cc", size = 260094827, upload-time = "2025-01-23T17:58:17.586Z" },
{ url = "https://files.pythonhosted.org/packages/c2/08/953675873a136d96bb12f93b49ba045d1107bc94d2551c52b12fa6c7dec3/nvidia_cusolver_cu12-11.7.2.55-py3-none-manylinux_2_27_x86_64.whl", hash = "sha256:4d1354102f1e922cee9db51920dba9e2559877cf6ff5ad03a00d853adafb191b", size = 260373342, upload-time = "2025-01-23T17:58:56.406Z" },
{ url = "https://files.pythonhosted.org/packages/c4/f9/e0e6f8b7aecd13e0f9e937d116fb3211329a0a92b9bea9624b1368de307a/nvidia_cusolver_cu12-11.7.2.55-py3-none-win_amd64.whl", hash = "sha256:a5a516c55da5c5aba98420d9bc9bcab18245f21ec87338cc1f930eb18dd411ac", size = 249600787, upload-time = "2025-01-23T18:10:07.641Z" },
]
[[package]]
name = "nvidia-cusolver-cu12"
version = "11.7.3.90"
source = { registry = "https://pypi.org/simple" }
resolution-markers = [
"(platform_machine != 'aarch64' and sys_platform == 'linux' and extra != 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly' and extra != 'extra-7-maester-rocm' and extra != 'extra-7-maester-rocm-nightly') or (platform_python_implementation != 'CPython' and sys_platform == 'linux' and extra != 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly' and extra != 'extra-7-maester-rocm' and extra != 'extra-7-maester-rocm-nightly')",
"platform_machine == 'aarch64' and platform_python_implementation == 'CPython' and sys_platform == 'linux' and extra != 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly' and extra != 'extra-7-maester-rocm' and extra != 'extra-7-maester-rocm-nightly'",
"sys_platform == 'linux' and extra != 'extra-7-maester-cuda' and extra != 'extra-7-maester-cuda-nightly' and extra != 'extra-7-maester-rocm' and extra != 'extra-7-maester-rocm-nightly'",
]
dependencies = [
{ name = "nvidia-cublas-cu12", version = "12.8.4.1", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'extra-7-maester-cuda-nightly') or (sys_platform == 'linux' and extra != 'extra-7-maester-cuda' and extra != 'extra-7-maester-rocm' and extra != 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "nvidia-cusparse-cu12", version = "12.5.8.93", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'extra-7-maester-cuda-nightly') or (sys_platform == 'linux' and extra != 'extra-7-maester-cuda' and extra != 'extra-7-maester-rocm' and extra != 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
{ name = "nvidia-nvjitlink-cu12", version = "12.8.93", source = { registry = "https://pypi.org/simple" }, marker = "(sys_platform == 'linux' and extra == 'extra-7-maester-cuda-nightly') or (sys_platform == 'linux' and extra != 'extra-7-maester-cuda' and extra != 'extra-7-maester-rocm' and extra != 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda-nightly' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-cuda-nightly') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm') or (extra == 'extra-7-maester-cuda' and extra == 'extra-7-maester-rocm-nightly') or (extra == 'extra-7-maester-rocm' and extra == 'extra-7-maester-rocm-nightly')" },
]
wheels = [
{ url = "https://files.pythonhosted.org/packages/c8/32/f7cd6ce8a7690544d084ea21c26e910a97e077c9b7f07bf5de623ee19981/nvidia_cusolver_cu12-11.7.3.90-py3-none-manylinux_2_27_aarch64.whl", hash = "sha256:db9ed69dbef9715071232caa9b69c52ac7de3a95773c2db65bdba85916e4e5c0", size = 267229841, upload-time = "2025-03-07T01:46:54.356Z" },
{ url = "https://files.pythonhosted.org/packages/85/48/9a13d2975803e8cf2777d5ed57b87a0b6ca2cc795f9a4f59796a910bfb80/nvidia_cusolver_cu12-11.7.3.90-py3-none-manylinux_2_27_x86_64.whl", hash = "sha256:4376c11ad263152bd50ea295c05370360776f8c3427b30991df774f9fb26c450", size = 267506905, upload-time = "2025-03-07T01:47:16.273Z" },
{ url = "https://files.pythonhosted.org/packages/13/c0/76ca8551b8a84146ffa189fec81c26d04adba4bc0dbe09cd6e6fd9b7de04/nvidia_cusolver_cu12-11.7.3.90-py3-none-win_amd64.whl", hash = "sha256:4a550db115fcabc4d495eb7d39ac8b58d4ab5d8e63274d3754df1c0ad6a22d34", size = 256720438, upload-time = "2025-03-07T01:54:39.898Z" },
]
[[package]]
name = "nvidia-cusparse-cu12"
version = "12.5.7.53"
source = { registry = "https://pypi.org/simple" }
resolution-markers = [