-
Notifications
You must be signed in to change notification settings - Fork 135
Expand file tree
/
Copy pathpylock.cpu.toml
More file actions
1082 lines (929 loc) · 76.7 KB
/
pylock.cpu.toml
File metadata and controls
1082 lines (929 loc) · 76.7 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
# This file was autogenerated by uv via the following command:
# uv pip compile pyproject.toml --output-file uv.lock.d/pylock.cpu.toml --format pylock.toml --generate-hashes --emit-index-url --python-version=3.12 --universal --no-annotate --no-emit-package odh-notebooks-meta-llmcompressor-deps --no-emit-package odh-notebooks-meta-runtime-elyra-deps --no-emit-package odh-notebooks-meta-runtime-datascience-deps --no-emit-package odh-notebooks-meta-workbench-datascience-deps --constraints ../../dependencies/cve-constraints.txt --default-index=https://console.redhat.com/api/pypi/public-rhai/rhoai/3.4-EA1/cpu-ubi9/simple/ --index=https://console.redhat.com/api/pypi/public-rhai/rhoai/3.4-EA1/cpu-ubi9/simple/
lock-version = "1.0"
created-by = "uv"
requires-python = ">=3.12"
[[packages]]
name = "annotated-doc"
version = "0.0.4"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/annotated_doc-0.0.4-2-py3-none-any.whl", hashes = { sha256 = "c585f75b27148124dc235f6745cfc8a4f24d6f892a3c84ca3516723f6a12e27c" } }]
[[packages]]
name = "annotated-types"
version = "0.7.0"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/annotated_types-0.7.0-2-py3-none-any.whl", hashes = { sha256 = "fe938b8cfcd6d65c9b4e55ccc7b09ae56f9c7937cac29d4d461ce18724d861f7" } }]
[[packages]]
name = "anyio"
version = "4.12.1"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/anyio-4.12.1-2-py3-none-any.whl", hashes = { sha256 = "a3fe6aaffae45298b33c2295b8ce4ae456b3cd987987ae588a96f1c592852ca4" } }]
[[packages]]
name = "asttokens"
version = "3.0.1"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/asttokens-3.0.1-2-py3-none-any.whl", hashes = { sha256 = "568dc684c260cde80299f70bab5d1a8c6af839515fd28499396249223e7a1457" } }]
[[packages]]
name = "attrs"
version = "25.4.0"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/attrs-25.4.0-2-py3-none-any.whl", hashes = { sha256 = "9e3a1e9891b332ba3c642558b925990778f8be33008417010acbd6dd8e203e82" } }]
[[packages]]
name = "bigtree"
version = "1.3.1"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/bigtree-1.3.1-2-py3-none-any.whl", hashes = { sha256 = "ffd3248f147c67e2c3ff40dfb1a2edc21dcb7e3ef7dfcfb467ec98f20dfa5dc8" } }]
[[packages]]
name = "boto3"
version = "1.42.54"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/boto3-1.42.54-2-py3-none-any.whl", hashes = { sha256 = "3c2b5bff2b7d988cbf82b73fa77cdc8e3d51f3cfe1e44390cca7d8d977454f28" } }]
[[packages]]
name = "botocore"
version = "1.42.54"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/botocore-1.42.54-2-py3-none-any.whl", hashes = { sha256 = "d95d6b64a3103b5ab477db20f18719dcee0a537289af7053f6bbc8f1dd5d6c2a" } }]
[[packages]]
name = "certifi"
version = "2026.1.4"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/certifi-2026.1.4-2-py3-none-any.whl", hashes = { sha256 = "1dab3f7233a3f8a5670a78c21e4b6c08e66d8a2d57ad76ef6ad044e572be5bc9" } }]
[[packages]]
name = "cffi"
version = "2.0.0"
marker = "python_full_version >= '3.9' and implementation_name == 'cpython' and platform_python_implementation != 'PyPy' and sys_platform == 'linux'"
wheels = [
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/cffi-2.0.0-2-cp312-cp312-linux_aarch64.whl", hashes = { sha256 = "89a8c3de044613d975220ca3f08f82fa3c3e70db8479afb7490f21e4a4b3b056" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/cffi-2.0.0-2-cp312-cp312-linux_ppc64le.whl", hashes = { sha256 = "00c3435e836d3cc68b477ca65e0a71f66eba70ee1c573b3c8da2e80d10c1be7d" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/cffi-2.0.0-2-cp312-cp312-linux_s390x.whl", hashes = { sha256 = "e83c8632abe74f94b1323767152890e2eba8c0793b5dcf44e01fdf294e8dbaff" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/cffi-2.0.0-2-cp312-cp312-linux_x86_64.whl", hashes = { sha256 = "5c7330e7ca308ca4338b25c838ccbaf89c3431edb587d37c0b52914ff7253696" } },
]
[[packages]]
name = "charset-normalizer"
version = "3.4.4"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/charset_normalizer-3.4.4-2-py3-none-any.whl", hashes = { sha256 = "ec62b61004f87baf08beaa9cff30ff3aa70f9774214a8adff17c17427b6fab9f" } }]
[[packages]]
name = "click"
version = "8.3.1"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/click-8.3.1-2-py3-none-any.whl", hashes = { sha256 = "949b35428b059358c60204174a79c34d0fcdc1e3945bcf044244c5c2f6d5b763" } }]
[[packages]]
name = "cloudpickle"
version = "3.1.2"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/cloudpickle-3.1.2-2-py3-none-any.whl", hashes = { sha256 = "647a7606e1bbbf44b99968eac79f37d7983341a0041967312efffac876a72fec" } }]
[[packages]]
name = "colorama"
version = "0.4.6"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/colorama-0.4.6-2-py2.py3-none-any.whl", hashes = { sha256 = "bdcec8c9a0df0fd109db0e73e014bde5f031fdbceb8090eb14807f01716186fc" } }]
[[packages]]
name = "comm"
version = "0.2.3"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/comm-0.2.3-2-py3-none-any.whl", hashes = { sha256 = "8cdd331e82fd24af2a7ba4b117efdca68c6edcf21194eef504924990078496ec" } }]
[[packages]]
name = "contourpy"
version = "1.3.3"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/contourpy-1.3.3-2-cp312-cp312-linux_aarch64.whl", hashes = { sha256 = "c14de02b3aab43abc84aebe311e0dd274a1552a4da10484aeb40b37f7f9ae706" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/contourpy-1.3.3-2-cp312-cp312-linux_ppc64le.whl", hashes = { sha256 = "8c347f7b9ce74908500fd815d1c2573d90f81fc4302d1508984cfd0a2cd6a4fb" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/contourpy-1.3.3-2-cp312-cp312-linux_s390x.whl", hashes = { sha256 = "4ecc8ad763aa42c4e743b0ea2d8dab0d401a246b7dc0e193222cf2eeab2e91a3" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/contourpy-1.3.3-2-cp312-cp312-linux_x86_64.whl", hashes = { sha256 = "1933b06db2c7f38f9ba673187639c7a169490a10b3506b59eb623efbe8e7ed40" } },
]
[[packages]]
name = "cryptography"
version = "46.0.5"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/cryptography-46.0.5-2-cp312-abi3-linux_aarch64.whl", hashes = { sha256 = "ec1add1e8525c1e8aaf8e8d396a7dd442efb52383a7d30cd21562c404463699b" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/cryptography-46.0.5-2-cp312-abi3-linux_ppc64le.whl", hashes = { sha256 = "37633985557bae3341cb03ea91a1306b7e45b1d10f1d23a45b365dde45e932c0" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/cryptography-46.0.5-2-cp312-abi3-linux_s390x.whl", hashes = { sha256 = "e542421ec8806f41b533806bcaed8a32f69cddc77924dd5887c9c77c1d3fd53e" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/cryptography-46.0.5-2-cp312-abi3-linux_x86_64.whl", hashes = { sha256 = "b4b7ae29ae7d26ca742f3cca3fe02fd95959c1e1d5c90e93b4ed1e6f3511f69f" } },
]
[[packages]]
name = "cycler"
version = "0.12.1"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/cycler-0.12.1-2-py3-none-any.whl", hashes = { sha256 = "5f6985f62e42ac02a0f3b369f2be5b93627333c1826833b53341518e5ee6154e" } }]
[[packages]]
name = "dask"
version = "2026.1.2"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/dask-2026.1.2-2-py3-none-any.whl", hashes = { sha256 = "6d0e76c69ee4fc0f22377c312d034b9df34b11bc8b2daaefd0242dbfff54d15b" } }]
[[packages]]
name = "debugpy"
version = "1.8.20"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/debugpy-1.8.20-2-cp312-cp312-linux_aarch64.whl", hashes = { sha256 = "2a596f5aa5df660d0ee942295eea854f51aef0387923d3bc6fcbdda6d57e55c6" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/debugpy-1.8.20-2-cp312-cp312-linux_ppc64le.whl", hashes = { sha256 = "02f1afad493434b5655dd8913c3dd40fa7272fa08d68753628d5d0fc83581c44" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/debugpy-1.8.20-2-cp312-cp312-linux_s390x.whl", hashes = { sha256 = "3b68f27f2de2b13ea3dd7b2c2fff2126158ff2654d3b7bf182a55ef2616ca389" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/debugpy-1.8.20-2-cp312-cp312-linux_x86_64.whl", hashes = { sha256 = "062086090429afef9b94916d1c9caf1bf9419cdccbff42f93060809abe53180f" } },
]
[[packages]]
name = "decorator"
version = "5.2.1"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/decorator-5.2.1-2-py3-none-any.whl", hashes = { sha256 = "847da0e8ea1434c6caa6d585a2ac0773bfedd19cf0abd2f492107eae9fb825c9" } }]
[[packages]]
name = "dill"
version = "0.3.9"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/dill-0.3.9-2-py3-none-any.whl", hashes = { sha256 = "84fa9879880d27932fc0f731f71574e869387ccb2be24d14447aa65f398c8075" } }]
[[packages]]
name = "distlib"
version = "0.4.0"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/distlib-0.4.0-2-py2.py3-none-any.whl", hashes = { sha256 = "c0d28f296ce5078092d04f503e2711bed6de5f4fac8dea73ce06cf5486f58322" } }]
[[packages]]
name = "docstring-parser"
version = "0.17.0"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/docstring_parser-0.17.0-2-py3-none-any.whl", hashes = { sha256 = "d0b931b780661f3111ff70fed6661152182884c6a1e1132ec1aff75655b8c9d5" } }]
[[packages]]
name = "durationpy"
version = "0.10"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/durationpy-0.10-2-py3-none-any.whl", hashes = { sha256 = "4f6b41f002abd2733827eccc626b7332b89ed0f16e1353d82193021cc46008d1" } }]
[[packages]]
name = "executing"
version = "2.2.1"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/executing-2.2.1-2-py2.py3-none-any.whl", hashes = { sha256 = "088f0bd7d3b2c2660facae165ac7a21933275be99e42c9071d05ddc4c1263f5b" } }]
[[packages]]
name = "fastapi"
version = "0.131.0"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/fastapi-0.131.0-2-py3-none-any.whl", hashes = { sha256 = "0737dc549c58603d78ec93510df685a4885d3643efc0175371395aa01a9207bd" } }]
[[packages]]
name = "feast"
version = "0.59.0"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/feast-0.59.0-2-py2.py3-none-any.whl", hashes = { sha256 = "b567ae84e27377f4ca5856a7a06dabac3579e80a7e0f9aa24c8db4a71e21d7d7" } }]
[[packages]]
name = "filelock"
version = "3.24.3"
marker = "python_full_version >= '3.10' and implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/filelock-3.24.3-2-py3-none-any.whl", hashes = { sha256 = "a72b4a7a3e8b70ec760824acfd26ec3982fdd2cc3f7dfc387e936050d030a37e" } }]
[[packages]]
name = "fonttools"
version = "4.61.1"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/fonttools-4.61.1-2-py3-none-any.whl", hashes = { sha256 = "b8830d8796191f399369ea39a97779bbb5f0ea7efd1ab98261ed41ca4d2aa3cf" } }]
[[packages]]
name = "fsspec"
version = "2026.2.0"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/fsspec-2026.2.0-2-py3-none-any.whl", hashes = { sha256 = "c383c84b8bce027f1bb0a2bb3658fc6b80d860e51b031a334f7ac1e8ffd76b08" } }]
[[packages]]
name = "google-api-core"
version = "2.29.0"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/google_api_core-2.29.0-2-py3-none-any.whl", hashes = { sha256 = "31fb489db1af64cd693784472d44c522d7c090cff8687870ed84ba393336de8b" } }]
[[packages]]
name = "google-auth"
version = "2.48.0"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/google_auth-2.48.0-2-py3-none-any.whl", hashes = { sha256 = "e9df5012bf45111f95dc5371362de427a56a701aeb59dca3de19b58cdbfb0523" } }]
[[packages]]
name = "google-cloud-core"
version = "2.5.0"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/google_cloud_core-2.5.0-2-py3-none-any.whl", hashes = { sha256 = "29b5c7bea5f8e7ce5d76a763d46f17b13027b61edfed671f6878d9cf509092a1" } }]
[[packages]]
name = "google-cloud-storage"
version = "3.8.0"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/google_cloud_storage-3.8.0-2-py3-none-any.whl", hashes = { sha256 = "bc6b5fb1ebf956cc1d757995afabc0fea8fd818ef0cc87462e4f6b861df683d3" } }]
[[packages]]
name = "google-crc32c"
version = "1.8.0"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/google_crc32c-1.8.0-2-py3-none-any.whl", hashes = { sha256 = "5b175072cfa85e7fbd303a635328f7f2e3c532ea4c3db1b5580bfe894769fb8d" } }]
[[packages]]
name = "google-resumable-media"
version = "2.8.0"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/google_resumable_media-2.8.0-2-py3-none-any.whl", hashes = { sha256 = "e4432f06669ee36179bd587088929ddf5cabbe9b56cf274956434946c4b1781c" } }]
[[packages]]
name = "googleapis-common-protos"
version = "1.72.0"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/googleapis_common_protos-1.72.0-2-py3-none-any.whl", hashes = { sha256 = "16da7521fd0682addce83a20998caed4e746d62ff9d88ee2655399294b0f44c9" } }]
[[packages]]
name = "greenlet"
version = "3.3.2"
marker = "(implementation_name == 'cpython' and platform_machine == 'AMD64' and sys_platform == 'linux') or (implementation_name == 'cpython' and platform_machine == 'WIN32' and sys_platform == 'linux') or (implementation_name == 'cpython' and platform_machine == 'aarch64' and sys_platform == 'linux') or (implementation_name == 'cpython' and platform_machine == 'amd64' and sys_platform == 'linux') or (implementation_name == 'cpython' and platform_machine == 'ppc64le' and sys_platform == 'linux') or (implementation_name == 'cpython' and platform_machine == 'win32' and sys_platform == 'linux') or (implementation_name == 'cpython' and platform_machine == 'x86_64' and sys_platform == 'linux')"
wheels = [
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/greenlet-3.3.2-2-cp312-cp312-linux_aarch64.whl", hashes = { sha256 = "23d109a14d7c5fe854806c2aaf1c93b5c293e27a5ce2ae7db1cb8ae882cac75c" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/greenlet-3.3.2-2-cp312-cp312-linux_ppc64le.whl", hashes = { sha256 = "68ef1ff6bcea69be356e5a805d745d3ab1aecc60aad3db3aaffd8c1ab617c02f" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/greenlet-3.3.2-2-cp312-cp312-linux_x86_64.whl", hashes = { sha256 = "b12423d1bad2cf4a22a1d91d0aa2690503bc10d00b5e12909ae24030872e7858" } },
]
[[packages]]
name = "gunicorn"
version = "25.1.0"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/gunicorn-25.1.0-2-py3-none-any.whl", hashes = { sha256 = "04f73b7587728045d41c6938e60a60bfb70bff43b9f53d22e691b485de8a7931" } }]
[[packages]]
name = "h11"
version = "0.16.0"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/h11-0.16.0-2-py3-none-any.whl", hashes = { sha256 = "1863f8c0c5d0a4fbd2f55cc07212e860a3877fe10778cf8e890ece71b1409a44" } }]
[[packages]]
name = "httptools"
version = "0.7.1"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/httptools-0.7.1-2-cp312-cp312-linux_aarch64.whl", hashes = { sha256 = "e69556d27f9b7e3d43a0cef73ead216834161ba757102650a2c8570a757fd57f" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/httptools-0.7.1-2-cp312-cp312-linux_ppc64le.whl", hashes = { sha256 = "194fad05c00c061242d910da6cbeae7d85a73c8afde93303cc8f42e4102da9ea" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/httptools-0.7.1-2-cp312-cp312-linux_s390x.whl", hashes = { sha256 = "902e8a7528cadcdeb3eb0a74c0708f33ee964afa93707ee8bde2a162e6a68f79" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/httptools-0.7.1-2-cp312-cp312-linux_x86_64.whl", hashes = { sha256 = "0dfde95d1166b8ba84d61614eff1a390b0c0c84ef979a08dc8daa062ce91b1bd" } },
]
[[packages]]
name = "idna"
version = "3.11"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/idna-3.11-2-py3-none-any.whl", hashes = { sha256 = "f77861c60133a4e8d9648da85aca9a06843ce8fb972d254d94a918c59d107f2f" } }]
[[packages]]
name = "ipykernel"
version = "7.1.0"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/ipykernel-7.1.0-2-py3-none-any.whl", hashes = { sha256 = "271ecdb8e9b6d8c1ae9c9f63941cb6028ffac1101aa6e3525cfffda3709ba511" } }]
[[packages]]
name = "ipython"
version = "9.10.0"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/ipython-9.10.0-2-py3-none-any.whl", hashes = { sha256 = "d84a003d8eb41d71aa766be6ae2bc35be3c99b509c163a0199337ca52475dae5" } }]
[[packages]]
name = "ipython-pygments-lexers"
version = "1.1.1"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/ipython_pygments_lexers-1.1.1-2-py3-none-any.whl", hashes = { sha256 = "9d795b2dbeb51bf2d11ba49211c4d8e2e4b2d42289e5b2c94ab70523d1f94b00" } }]
[[packages]]
name = "jedi"
version = "0.19.2"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/jedi-0.19.2-2-py2.py3-none-any.whl", hashes = { sha256 = "a8af2ccd187778aefd3ab41a55ef635070ea61677fd63a340da20de024c92ac1" } }]
[[packages]]
name = "jinja2"
version = "3.1.6"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/jinja2-3.1.6-2-py3-none-any.whl", hashes = { sha256 = "0eb76ca44a999f2884e6f08d028a4af5754f4213e92ea5f5e8267ae1aa13e477" } }]
[[packages]]
name = "jmespath"
version = "1.1.0"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/jmespath-1.1.0-2-py3-none-any.whl", hashes = { sha256 = "28e5634f2f094906c74eeb6ea9f27afb28fd09693fa9d27847a5b7ea4b58f600" } }]
[[packages]]
name = "joblib"
version = "1.5.3"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/joblib-1.5.3-2-py3-none-any.whl", hashes = { sha256 = "eb26ef970473d09ffc2d7a37630ecde7f751c8cc77ca2241af20de4eb813de87" } }]
[[packages]]
name = "jsonschema"
version = "4.26.0"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/jsonschema-4.26.0-2-py3-none-any.whl", hashes = { sha256 = "bd6fd57486d2c2dff154e46ac16019023219cfc41d7314f59f6c0cdfe3d1dc57" } }]
[[packages]]
name = "jsonschema-specifications"
version = "2025.9.1"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/jsonschema_specifications-2025.9.1-2-py3-none-any.whl", hashes = { sha256 = "909857861d1885258b1fa6ebcbf313edd34ca339e80122bbaae756c9f916ffb4" } }]
[[packages]]
name = "jupyter-client"
version = "8.8.0"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/jupyter_client-8.8.0-2-py3-none-any.whl", hashes = { sha256 = "a08ebda4bad4403be0de48b3d400027f693c93c1f5a50f19536793fdfba4a84d" } }]
[[packages]]
name = "jupyter-core"
version = "5.9.1"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/jupyter_core-5.9.1-2-py3-none-any.whl", hashes = { sha256 = "3014d5964d5230254aeb09303e3aeea3c73c906e23c4b997107205549ea78fb8" } }]
[[packages]]
name = "kafka-python-ng"
version = "2.2.3"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/kafka_python_ng-2.2.3-2-py2.py3-none-any.whl", hashes = { sha256 = "3e2eaac39abfa402847669a3f5843c0fbb23244a544f480a715850b1bfd36f36" } }]
[[packages]]
name = "kfp"
version = "2.15.2"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/kfp-2.15.2-2-py3-none-any.whl", hashes = { sha256 = "b51b08e72da0a81d6a24d8785d93c091d5f86040edf44be5f416cc794cf850f2" } }]
[[packages]]
name = "kfp-pipeline-spec"
version = "2.15.2"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/kfp_pipeline_spec-2.15.2-2-py3-none-any.whl", hashes = { sha256 = "6d035bb48be087295b1e6c3aadcfa99b1f457ed4dc70cfe52c269aa7c1af72fd" } }]
[[packages]]
name = "kfp-server-api"
version = "2.15.2"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/kfp_server_api-2.15.2-2-py3-none-any.whl", hashes = { sha256 = "54e2f21c8a71e0d0f6a11b637ef7d26000c7ca20e21093899bb175e12abd73d8" } }]
[[packages]]
name = "kiwisolver"
version = "1.4.9"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/kiwisolver-1.4.9-2-cp312-cp312-linux_aarch64.whl", hashes = { sha256 = "21b6f3916b0effda14892017d79d4f6d9a5b98c54a8bcaa1debb0e6b719fce7e" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/kiwisolver-1.4.9-2-cp312-cp312-linux_ppc64le.whl", hashes = { sha256 = "dbe3b766e873691141b25e4a403988be08a351c8017853460a174d2d925c2e1b" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/kiwisolver-1.4.9-2-cp312-cp312-linux_s390x.whl", hashes = { sha256 = "58573fd3dffa10db22c29709fcd7b420bcfe549320df8f07c21b09ef525359e7" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/kiwisolver-1.4.9-2-cp312-cp312-linux_x86_64.whl", hashes = { sha256 = "b147a80afbdbe4d0b799617fcf13a11521584477d3493e30a76ce0a56399e086" } },
]
[[packages]]
name = "kubeflow-training"
version = "1.9.3"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/kubeflow_training-1.9.3-2-py3-none-any.whl", hashes = { sha256 = "1306074d8cde22f54fe594096421002130b501ec6fc493b2e3068ab37bc0a875" } }]
[[packages]]
name = "kubernetes"
version = "35.0.0"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/kubernetes-35.0.0-2-py3-none-any.whl", hashes = { sha256 = "d7c7b871b9b3136fa81f79e147b1eeae712f17f921202b0e566685f6c4fa962c" } }]
[[packages]]
name = "librt"
version = "0.8.1"
marker = "implementation_name == 'cpython' and platform_python_implementation != 'PyPy' and sys_platform == 'linux'"
wheels = [
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/librt-0.8.1-2-cp312-cp312-linux_aarch64.whl", hashes = { sha256 = "f3b5d82679e5f9da9d323ea14e3bfebf4cede4f0999076ed8204fbfa958d0430" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/librt-0.8.1-2-cp312-cp312-linux_ppc64le.whl", hashes = { sha256 = "a97145fcd0795811bfdd76bf10aa65a31575ec501cb56daa467a0c4356cf46e4" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/librt-0.8.1-2-cp312-cp312-linux_s390x.whl", hashes = { sha256 = "7e1dc014bd12031c026c3dcaf6bfb58c1aec59ae17d222347b9a473024dd994c" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/librt-0.8.1-2-cp312-cp312-linux_x86_64.whl", hashes = { sha256 = "90e91a02dc04aa80ea09e7806418d527e65ad0be80c5d7cbc55eac84851010dd" } },
]
[[packages]]
name = "locket"
version = "1.0.0"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/locket-1.0.0-2-py2.py3-none-any.whl", hashes = { sha256 = "a8483ca3a9c14e3b01b4d9afa42847a6d34529730316c623e5aae69441d61e94" } }]
[[packages]]
name = "markupsafe"
version = "3.0.3"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/markupsafe-3.0.3-2-cp312-cp312-linux_aarch64.whl", hashes = { sha256 = "895a0f2daf64d71ce41fc5f91cd5452a8fc2ffbce7a2205ebf446d1d1198ceb3" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/markupsafe-3.0.3-2-cp312-cp312-linux_ppc64le.whl", hashes = { sha256 = "f7f5244c8cc33750d2d763872c0ca0e9e281a6224eb49b0acd4f084ff09e16aa" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/markupsafe-3.0.3-2-cp312-cp312-linux_s390x.whl", hashes = { sha256 = "85c46b6956d9d22caa30b3667568e5be98a845355adf8b7ac2d85514cc1c82a7" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/markupsafe-3.0.3-2-cp312-cp312-linux_x86_64.whl", hashes = { sha256 = "21208aa2b50183fb4afcefd661c5a16b8a10da01ff02e8d1e7146afed302f9e2" } },
]
[[packages]]
name = "matplotlib"
version = "3.10.8"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/matplotlib-3.10.8-2-cp312-cp312-linux_aarch64.whl", hashes = { sha256 = "30bea0e14341bda8d9a79d618d9d72c1379bc848c46ba1e11e7801f80754eaa6" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/matplotlib-3.10.8-2-cp312-cp312-linux_ppc64le.whl", hashes = { sha256 = "be6c38957d7eeaf1e2fdfd02a58278ef03f820f80d86cadbe1955fa008826a82" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/matplotlib-3.10.8-2-cp312-cp312-linux_s390x.whl", hashes = { sha256 = "a301b6bc930497826d346a71c8f88da6cf0e4b80a85f9f357df5843b99e1cc58" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/matplotlib-3.10.8-2-cp312-cp312-linux_x86_64.whl", hashes = { sha256 = "3e5a216f17c7a6aa56ef85060dc032794648a38e7af936faf344bd8bf19fdbd5" } },
]
[[packages]]
name = "matplotlib-inline"
version = "0.2.1"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/matplotlib_inline-0.2.1-2-py3-none-any.whl", hashes = { sha256 = "a5364ccc5a8c37d152ccbf3268528384b72312c7bbc11e931a437b3344c7dba6" } }]
[[packages]]
name = "micropipenv"
version = "1.10.0"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/micropipenv-1.10.0-2-py3-none-any.whl", hashes = { sha256 = "b966bd26693be166f339cdc7dd4bd0718fd72061ad5942456a9e6618ac3c58ec" } }]
[[packages]]
name = "ml-dtypes"
version = "0.5.4"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/ml_dtypes-0.5.4-2-cp312-cp312-linux_aarch64.whl", hashes = { sha256 = "c017e0ea0689b170958967d96754946c07d396280c51d9ae201d83a9a599469e" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/ml_dtypes-0.5.4-2-cp312-cp312-linux_ppc64le.whl", hashes = { sha256 = "2fce8e1e21bd26d18d4254336e17f7f2f132dbca77b4b3fe89da25ab5a3d87eb" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/ml_dtypes-0.5.4-2-cp312-cp312-linux_s390x.whl", hashes = { sha256 = "465326e6f9d0808e629db8de657ffc83368203e2500381ba5c742b624fb16b49" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/ml_dtypes-0.5.4-2-cp312-cp312-linux_x86_64.whl", hashes = { sha256 = "99ab1ca510c19ebe5a90fdb5f0e46f700be1f3e411b788e8c6443f7c0c454c7a" } },
]
[[packages]]
name = "mmh3"
version = "5.2.0"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/mmh3-5.2.0-2-cp312-cp312-linux_aarch64.whl", hashes = { sha256 = "a0f623387e12ac34c60cc90c8ed9664c7bd61927441e7c6b010e352a61a66a40" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/mmh3-5.2.0-2-cp312-cp312-linux_ppc64le.whl", hashes = { sha256 = "14f33a4ce72edcd47eea68a67602587ceab99073292cf779bbfae53fcd4db01a" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/mmh3-5.2.0-2-cp312-cp312-linux_s390x.whl", hashes = { sha256 = "7f6547ccc2b902b25bab862c62d9a6386b3d1a518781ef7ddbb4bc546b6af3c3" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/mmh3-5.2.0-2-cp312-cp312-linux_x86_64.whl", hashes = { sha256 = "dcd2bde82c615df769140b503f34ea2c635b17fc3e8433f05c7c1072a24330f4" } },
]
[[packages]]
name = "mypy"
version = "1.19.1"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/mypy-1.19.1-2-py3-none-any.whl", hashes = { sha256 = "bb9aa036c036bcf820a2d766a9665eec1c5dd05c523de8116d3d0b3685dce1ff" } }]
[[packages]]
name = "mypy-extensions"
version = "1.1.0"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/mypy_extensions-1.1.0-2-py3-none-any.whl", hashes = { sha256 = "53b01e59fa3d50e2451a8ab112b4d811942a219f32a802a299a63770201d575b" } }]
[[packages]]
name = "narwhals"
version = "2.16.0"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/narwhals-2.16.0-2-py3-none-any.whl", hashes = { sha256 = "923285f9b5050c5f75708864405aa9070f9a8af08337fbe581a5a4037caca5af" } }]
[[packages]]
name = "nest-asyncio"
version = "1.6.0"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/nest_asyncio-1.6.0-2-py3-none-any.whl", hashes = { sha256 = "c47011aa5f806cf871851984eb30272561e5f0fde65dff83cfb52125b4e9d419" } }]
[[packages]]
name = "numpy"
version = "2.4.2"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/numpy-2.4.2-2-cp312-cp312-linux_aarch64.whl", hashes = { sha256 = "7d659607342b59bc26130a51ab4b28e3addca1f3ba2c1c06f5738a622e6a3cbe" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/numpy-2.4.2-2-cp312-cp312-linux_ppc64le.whl", hashes = { sha256 = "964bfe412fe592d0bc678bce23e027e8c0155e81da6346e57b1e4606931e93f9" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/numpy-2.4.2-2-cp312-cp312-linux_s390x.whl", hashes = { sha256 = "1dfd1d87f42afb5284a56ed41d912a7bad2f92b975d988888fd47a1366fc4c53" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/numpy-2.4.2-2-cp312-cp312-linux_x86_64.whl", hashes = { sha256 = "b93031e28e73f015c7f5e2b315c0b978124e33d4f9b870583a5f4d6754d6ba45" } },
]
[[packages]]
name = "oauthlib"
version = "3.3.1"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/oauthlib-3.3.1-2-py3-none-any.whl", hashes = { sha256 = "b0da6b28f191f1261708d115b766d45af33160346790f65bac8c7e291170fcaf" } }]
[[packages]]
name = "onnx"
version = "1.20.0"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/onnx-1.20.0-4-cp312-abi3-linux_aarch64.whl", hashes = { sha256 = "9a8a15500f8dece0a78ff98cf08a377bd6e94cf2f40b9018e838a19a55f034c9" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/onnx-1.20.0-4-cp312-abi3-linux_ppc64le.whl", hashes = { sha256 = "208991d4aa1a7317309617cb0273ad0e4d0aeaf5260df14329345d79707d7714" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/onnx-1.20.0-4-cp312-abi3-linux_s390x.whl", hashes = { sha256 = "1374bb1d9aab7ae9c2fdabdb0d6e4332050dea72dc4d236b646fa3238b93a4d0" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/onnx-1.20.0-4-cp312-abi3-linux_x86_64.whl", hashes = { sha256 = "58e4c1ed03afd78cde7ff52ffc1eef0312f981f67b3eaf89bdeafa717f88d032" } },
]
[[packages]]
name = "onnxconverter-common"
version = "1.16.0"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/onnxconverter_common-1.16.0-4-py2.py3-none-any.whl", hashes = { sha256 = "a269743c2136bdf144fbd7e9c4432ed4a2daa47e659f6035b78b24035eeb25f3" } }]
[[packages]]
name = "opencensus"
version = "0.11.4"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/opencensus-0.11.4-2-py2.py3-none-any.whl", hashes = { sha256 = "ece56f9f6677fe816525d9fe6ef7fba6bf0af2d519234697645e5442e611b5a6" } }]
[[packages]]
name = "opencensus-context"
version = "0.1.3"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/opencensus_context-0.1.3-2-py2.py3-none-any.whl", hashes = { sha256 = "98c19cbc5234d348ca3d1f4d36d632cc7ccf9d3fccb7f70f5fa61d71b582f26f" } }]
[[packages]]
name = "packaging"
version = "26.0"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/packaging-26.0-2-py3-none-any.whl", hashes = { sha256 = "177aaadb2c87b810edb8624ed43994c07ad0971c9a58e8688a848df12d775b1d" } }]
[[packages]]
name = "pandas"
version = "2.3.3"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/pandas-2.3.3-2-cp312-cp312-linux_aarch64.whl", hashes = { sha256 = "62836f4213c7153e6a8a6b675e954bab29a995e71804d7362809f8927e5070ff" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/pandas-2.3.3-2-cp312-cp312-linux_ppc64le.whl", hashes = { sha256 = "e7a45067074b6e5befb818c395023d884676a8dd7e1c77e8d0171526843cec8f" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/pandas-2.3.3-2-cp312-cp312-linux_s390x.whl", hashes = { sha256 = "7b497503ce5c15eeb8fa56e6a1b77bff8b403532c7f681b9ebd3172aac811a50" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/pandas-2.3.3-2-cp312-cp312-linux_x86_64.whl", hashes = { sha256 = "f2bf8a40b6a6a7a82ec67ad11ea4a65642bb75207d59e32b0001b46d2547c332" } },
]
[[packages]]
name = "parso"
version = "0.8.6"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/parso-0.8.6-2-py2.py3-none-any.whl", hashes = { sha256 = "b59fe76860607b770c18dd5fe41af46c413068c5bd782213e273f3b6a2d20bb2" } }]
[[packages]]
name = "partd"
version = "1.4.2"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/partd-1.4.2-2-py3-none-any.whl", hashes = { sha256 = "aed43b16fed87a5f1ab6586d6d84e3bc0ee40fd2a4df707c0b6e2073bf828c00" } }]
[[packages]]
name = "pathspec"
version = "1.0.4"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/pathspec-1.0.4-2-py3-none-any.whl", hashes = { sha256 = "b4c2b2713032b7be762d246eb85ced32cab352087ba5da68e68e297ae5dca1c8" } }]
[[packages]]
name = "pexpect"
version = "4.9.0"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/pexpect-4.9.0-2-py2.py3-none-any.whl", hashes = { sha256 = "10c1bceac2f48db02021740717a9c540252bc5ab69ef42582aeb0c0c9f678b14" } }]
[[packages]]
name = "pillow"
version = "12.1.1"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/pillow-12.1.1-2-cp312-cp312-linux_aarch64.whl", hashes = { sha256 = "8defc31d65db5f1d97bc7062dd4e202948669d2fbcdf847581519d3f789022aa" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/pillow-12.1.1-2-cp312-cp312-linux_ppc64le.whl", hashes = { sha256 = "2f0ea9bd3df0a4d0b55845926e785a412da7c8b57f30606a4ffd60eeddfb4a1e" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/pillow-12.1.1-2-cp312-cp312-linux_s390x.whl", hashes = { sha256 = "8ec613bcc35ff608f94ecd62392340339f064bcbb5a9e2f69e677d522f907719" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/pillow-12.1.1-2-cp312-cp312-linux_x86_64.whl", hashes = { sha256 = "f4977a59dab50d7c95ffef5e2fd620042a806f6b96153d78e5d4fb5e5c9f8f6b" } },
]
[[packages]]
name = "pip"
version = "26.0.1"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/pip-26.0.1-2-py3-none-any.whl", hashes = { sha256 = "56a35fee1acbfa5aa04c4d22afe1b4b6484e9bd6c92acd37d045a7d2a2c6f112" } }]
[[packages]]
name = "platformdirs"
version = "4.9.2"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/platformdirs-4.9.2-2-py3-none-any.whl", hashes = { sha256 = "e790d24f2c2da4ed71576673008a4cbd7ab89e7cea97251d98fab2939ef8415f" } }]
[[packages]]
name = "plotly"
version = "6.5.2"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/plotly-6.5.2-2-py3-none-any.whl", hashes = { sha256 = "2805a7259ea165397fee100fd98ab922605c51c807440a28dab9114057436d67" } }]
[[packages]]
name = "prometheus-client"
version = "0.24.1"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/prometheus_client-0.24.1-2-py3-none-any.whl", hashes = { sha256 = "4e376ad6d8b1fc667bddf3fd53d0e7643e9d0631f5fe5e34e4f9076a95411d44" } }]
[[packages]]
name = "prompt-toolkit"
version = "3.0.52"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/prompt_toolkit-3.0.52-2-py3-none-any.whl", hashes = { sha256 = "fba22a91d94d7ad75ebbfefbf10fac75f1c522eeef2fca6bc34e763577b9632c" } }]
[[packages]]
name = "proto-plus"
version = "1.27.1"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/proto_plus-1.27.1-2-py3-none-any.whl", hashes = { sha256 = "e165669bb00a9d01801c88a15fda5998b3c06693a5f3eccbe284ef3673582613" } }]
[[packages]]
name = "protobuf"
version = "6.33.5"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/protobuf-6.33.5-2-cp312-cp312-linux_aarch64.whl", hashes = { sha256 = "e75c7c6b7e49f687f7d6623301c320af2c7e6b4f88d978e54c2b2a3ee93a8bfe" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/protobuf-6.33.5-2-cp312-cp312-linux_ppc64le.whl", hashes = { sha256 = "91c3c05053e0c5197eed51add4a8b180fbc7c078df6a2d917d4bdfbaf82fd529" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/protobuf-6.33.5-2-cp312-cp312-linux_s390x.whl", hashes = { sha256 = "a362cf9de2fd5148ac661ef2cee438f2234ca953866dae0ce9e92b57dc47a608" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/protobuf-6.33.5-2-cp312-cp312-linux_x86_64.whl", hashes = { sha256 = "cd5a5ed4c52b0e41c2452b8f776ec09b3e7fe2315be4f6acde1140759b729e3f" } },
]
[[packages]]
name = "psutil"
version = "7.2.2"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/psutil-7.2.2-2-cp36-abi3-linux_aarch64.whl", hashes = { sha256 = "c0a6b8f1dd9fb280172c5470805cd22ffef739aacd214dc10418d75728c4e7ff" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/psutil-7.2.2-2-cp36-abi3-linux_ppc64le.whl", hashes = { sha256 = "d41b4ac8e939bb0213f1e82b005af008afdccef2c9048def70aa58daecd2aa4a" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/psutil-7.2.2-2-cp36-abi3-linux_s390x.whl", hashes = { sha256 = "cc5dc187b73af687b122e07191e335d24f89454677291a9556adbf177f7b22c3" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/psutil-7.2.2-2-cp36-abi3-linux_x86_64.whl", hashes = { sha256 = "7c1c7f5ea2a47e3d7fa1e1bef7b72474e7d81565cb9131f859f7c88af456b0c9" } },
]
[[packages]]
name = "ptyprocess"
version = "0.7.0"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/ptyprocess-0.7.0-2-py2.py3-none-any.whl", hashes = { sha256 = "2b326bf56609e5359ca3b6762fbc164e2ac1fff83d63365b31b9989c03c613a1" } }]
[[packages]]
name = "pure-eval"
version = "0.2.3"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/pure_eval-0.2.3-2-py3-none-any.whl", hashes = { sha256 = "6fc1aa8a9876eaa01a7ba5911e5927c8813a8c2c2d029dec2762c1b224428b38" } }]
[[packages]]
name = "py-spy"
version = "0.4.1"
marker = "implementation_name == 'cpython' and platform_machine != 'ppc64le' and platform_machine != 's390x' and sys_platform == 'linux'"
wheels = [
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/py_spy-0.4.1-2-py3-none-linux_aarch64.whl", hashes = { sha256 = "632a990ddd5394d1360f4736790daa336a4412ae5d448b71eb1f092e61d46220" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/py_spy-0.4.1-2-py3-none-linux_x86_64.whl", hashes = { sha256 = "ba03163b955927082e19509a9d79a647d3ce782b97f8f343df4f160b562ec9ff" } },
]
[[packages]]
name = "pyarrow"
version = "23.0.1"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/pyarrow-23.0.1-2-cp312-cp312-linux_aarch64.whl", hashes = { sha256 = "ae4a26a93cb55d3e699c0e516200673471b73c9ac8b571fc1f80cecc2246bd19" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/pyarrow-23.0.1-2-cp312-cp312-linux_ppc64le.whl", hashes = { sha256 = "814d18ccf8b0132ddf8e6334ee0ab929e9887eb7dd4a2074d08bdc0f4ab9a63d" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/pyarrow-23.0.1-2-cp312-cp312-linux_s390x.whl", hashes = { sha256 = "86c58cf3b7815b94dcaf9e5075cfe02b0761d0e58d7de2329d7e4f2c5dd699a7" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/pyarrow-23.0.1-2-cp312-cp312-linux_x86_64.whl", hashes = { sha256 = "5c507bd9a29c52687491b59b867576082953f3624a94185854802a0577a43b24" } },
]
[[packages]]
name = "pyasn1"
version = "0.6.2"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/pyasn1-0.6.2-2-py3-none-any.whl", hashes = { sha256 = "4b7a24eb426017dee614323a0beec46d31dd3ff00ea5a40ca517ebe3b77ba2e2" } }]
[[packages]]
name = "pyasn1-modules"
version = "0.4.2"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/pyasn1_modules-0.4.2-2-py3-none-any.whl", hashes = { sha256 = "e9045b3bf83e6e266ff5cb0181a5f4f8de064e821176b35f0401b81ac50a18f0" } }]
[[packages]]
name = "pycparser"
version = "3.0"
marker = "python_full_version >= '3.9' and implementation_name == 'cpython' and platform_python_implementation != 'PyPy' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/pycparser-3.0-2-py3-none-any.whl", hashes = { sha256 = "9d034d5b54b44bec49ec0c9a7d30b3f2b81e17f1d90f959c21c659fcec2f72d0" } }]
[[packages]]
name = "pydantic"
version = "2.12.5"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/pydantic-2.12.5-2-py3-none-any.whl", hashes = { sha256 = "77165d8ef8a1c5a3ffe61afa500bcbe34b6cc2465c59228bcb2f5192a6a939bf" } }]
[[packages]]
name = "pydantic-core"
version = "2.41.5"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/pydantic_core-2.41.5-2-cp312-cp312-linux_aarch64.whl", hashes = { sha256 = "58e405778dca478fc44ff10af9965922ef0c2920af07991cb0e0ac75da30eb59" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/pydantic_core-2.41.5-2-cp312-cp312-linux_ppc64le.whl", hashes = { sha256 = "ce56d9bafc1406dc926f6b6d770adeeba5e875b5b9d181e20c76384830c8fa6e" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/pydantic_core-2.41.5-2-cp312-cp312-linux_s390x.whl", hashes = { sha256 = "eee5cf9017dca982cd43074555a6a72e07d62afca3964ee01d02f4528d8334e4" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/pydantic_core-2.41.5-2-cp312-cp312-linux_x86_64.whl", hashes = { sha256 = "17652695aa2d8b6d8513b6ee528e01d70535baeda7a81729956b6bd79c80ecfe" } },
]
[[packages]]
name = "pygments"
version = "2.19.2"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/pygments-2.19.2-2-py3-none-any.whl", hashes = { sha256 = "6e563eefdb7b29e53d87397bdfee946387a25d3101a5c3f0388dd74ba52a1e6f" } }]
[[packages]]
name = "pyjwt"
version = "2.11.0"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/pyjwt-2.11.0-2-py3-none-any.whl", hashes = { sha256 = "9ee4505da5f5ae7d098b8dfe9a35de0a1b0800b58f2017dafc5c1b2fb8686eca" } }]
[[packages]]
name = "pyparsing"
version = "3.3.2"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/pyparsing-3.3.2-2-py3-none-any.whl", hashes = { sha256 = "8f0aba33f0edca4bcd14d7b867791f49f3eb38ed2ff031c80a31f7cfd402dc2c" } }]
[[packages]]
name = "python-dateutil"
version = "2.9.0.post0"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/python_dateutil-2.9.0.post0-2-py2.py3-none-any.whl", hashes = { sha256 = "05559f679e4e1472d19c0436c343208ba3e3fe91a73943a55141f7d666123411" } }]
[[packages]]
name = "python-dotenv"
version = "1.2.1"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/python_dotenv-1.2.1-2-py3-none-any.whl", hashes = { sha256 = "69325a8cb20488636f85c2f1bba43ae376f5fb6b7224df010f00737ace4bd4c2" } }]
[[packages]]
name = "pytz"
version = "2025.2"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/pytz-2025.2-2-py3-none-any.whl", hashes = { sha256 = "9b9c5f32d816f6e211b67bf7157eb5d2aa6217125b6abb7d355daaa98fa71b04" } }]
[[packages]]
name = "pyyaml"
version = "6.0.3"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/pyyaml-6.0.3-2-cp312-cp312-linux_aarch64.whl", hashes = { sha256 = "cccea8700c8d5663aed50849872826090e591a36fcf79ec4195183304b25f69c" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/pyyaml-6.0.3-2-cp312-cp312-linux_ppc64le.whl", hashes = { sha256 = "71bf5b394a66c99d2c98998e8ed1f728f544805f57f32ebd0f7c7d62fab7f963" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/pyyaml-6.0.3-2-cp312-cp312-linux_s390x.whl", hashes = { sha256 = "ee388a7853f97b6df3f3e19c47d578b34c9722eaf2a511a573848c31467121b5" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/pyyaml-6.0.3-2-cp312-cp312-linux_x86_64.whl", hashes = { sha256 = "32bfb51db73cc57739730655c6cb74581fcf9e480a766f07b4596b3410e9596c" } },
]
[[packages]]
name = "pyzmq"
version = "27.1.0"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/pyzmq-27.1.0-2-cp312-cp312-linux_aarch64.whl", hashes = { sha256 = "b1068c3bd20a4baf1a64bf88242ff7b48c9bbbaa5c4132d627623a7b4595b4b8" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/pyzmq-27.1.0-2-cp312-cp312-linux_ppc64le.whl", hashes = { sha256 = "61829b36db9e39377f57249ac803cba0913a44f27f4d500acdeda4c2b614ed23" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/pyzmq-27.1.0-2-cp312-cp312-linux_s390x.whl", hashes = { sha256 = "199061ccd388d426179cdeb4b05d4d29adaae7fc418f40b0aa6ce45be93140c4" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/pyzmq-27.1.0-2-cp312-cp312-linux_x86_64.whl", hashes = { sha256 = "1a466ced1102a2a5aae64752f78d282879de959bb3ddd73c0e488746c33c629b" } },
]
[[packages]]
name = "referencing"
version = "0.37.0"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/referencing-0.37.0-2-py3-none-any.whl", hashes = { sha256 = "ca483448ff357ffb389827b6441050130a62cd915f57f3b7af8753626cadd03a" } }]
[[packages]]
name = "requests"
version = "2.32.5"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/requests-2.32.5-2-py3-none-any.whl", hashes = { sha256 = "e39b9bb388349aaac75af47b68ba03a51c345ce5d017b31a22c96d38f7851ee6" } }]
[[packages]]
name = "requests-oauthlib"
version = "2.0.0"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/requests_oauthlib-2.0.0-2-py2.py3-none-any.whl", hashes = { sha256 = "3300c2c9d04e4fe22096338e8e2dfba5cd9b2c2c48764ae93752cfa02708dd9c" } }]
[[packages]]
name = "requests-toolbelt"
version = "1.0.0"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/requests_toolbelt-1.0.0-2-py2.py3-none-any.whl", hashes = { sha256 = "a345f7a51c9b5572e22296ad393d96f76e71616359aef53b59e0806b448c976c" } }]
[[packages]]
name = "retrying"
version = "1.4.2"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/retrying-1.4.2-2-py3-none-any.whl", hashes = { sha256 = "8abde1747eca63889d341f42aace4966095e2867d9cd1510bbb586cef0987958" } }]
[[packages]]
name = "rpds-py"
version = "0.30.0"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/rpds_py-0.30.0-2-cp312-cp312-linux_aarch64.whl", hashes = { sha256 = "609cbb4b633511e1d364d5cdafb030998af9e7933b53103c4e3450a3503773eb" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/rpds_py-0.30.0-2-cp312-cp312-linux_ppc64le.whl", hashes = { sha256 = "523f944b006a6f339028b2de2f389918f3a14504f6e01aca6f67e14c5f2868cd" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/rpds_py-0.30.0-2-cp312-cp312-linux_s390x.whl", hashes = { sha256 = "6202004cb98bafb1872b7353595ff9f38169a1d2872088284f5cd0e38a03d797" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/rpds_py-0.30.0-2-cp312-cp312-linux_x86_64.whl", hashes = { sha256 = "6a81932f832908c4c7601303fed06b0dce35f8c24e314c27ba465cc4d2e0f2c3" } },
]
[[packages]]
name = "rsa"
version = "4.9.1"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/rsa-4.9.1-2-py3-none-any.whl", hashes = { sha256 = "b9403b26053bbb760e917a33b8ad1fcd69b967a033f4468b84157bd157e525aa" } }]
[[packages]]
name = "s3transfer"
version = "0.16.0"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/s3transfer-0.16.0-2-py3-none-any.whl", hashes = { sha256 = "4b7358ab6c207cf03f0beebbe064f91d7bd80ac096dc722a543b9a044e09ee32" } }]
[[packages]]
name = "scikit-learn"
version = "1.8.0"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/scikit_learn-1.8.0-2-cp312-cp312-linux_aarch64.whl", hashes = { sha256 = "7a7ef99c5fa19f0c3ff0558072e6172eebbf16c674deb5137257994bad0685c2" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/scikit_learn-1.8.0-2-cp312-cp312-linux_ppc64le.whl", hashes = { sha256 = "169b28daa90cd3d338811af88b611d41f207c375a91303d970cdfc7f44f2e139" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/scikit_learn-1.8.0-2-cp312-cp312-linux_s390x.whl", hashes = { sha256 = "872a59c85f4c13c65310e23caf187ecebeac542b0c6b92b6f10fc61e5148adee" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/scikit_learn-1.8.0-2-cp312-cp312-linux_x86_64.whl", hashes = { sha256 = "b81aab1f8d5d5b830c43a03b682073caaeb27311d3f9776e567ab02cf5e97669" } },
]
[[packages]]
name = "scipy"
version = "1.16.3"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/scipy-1.16.3-2-cp312-cp312-linux_aarch64.whl", hashes = { sha256 = "b154dab2a7819cf8767acc094714adc970a684c0496081a980be501e0d73c328" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/scipy-1.16.3-2-cp312-cp312-linux_ppc64le.whl", hashes = { sha256 = "8ab74686fe33b6c6e1f048039bd4d8d6a0dad195a989925c6b89b985abb10a6b" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/scipy-1.16.3-2-cp312-cp312-linux_s390x.whl", hashes = { sha256 = "66448443cff584cd5ae6c238efa859e9048027954c891efeef600beefb61ec3c" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/scipy-1.16.3-2-cp312-cp312-linux_x86_64.whl", hashes = { sha256 = "96060f8fbdd4d193a41adc654c15c3392157d5b28d5f0521e8c853578aa9e131" } },
]
[[packages]]
name = "setuptools"
version = "80.9.0"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/setuptools-80.9.0-2-py3-none-any.whl", hashes = { sha256 = "1743fc9355bd5b309b3a56387326af8b2d97783ec150ee97b190999c23435659" } }]
[[packages]]
name = "six"
version = "1.17.0"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/six-1.17.0-2-py2.py3-none-any.whl", hashes = { sha256 = "1cc80e243a69692a0106cca0a21cfbe39e0603341c6bf174fa60eeb4a1fc858e" } }]
[[packages]]
name = "skl2onnx"
version = "1.19.1"
marker = "implementation_name == 'cpython' and platform_machine != 's390x' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/skl2onnx-1.19.1-2-py3-none-any.whl", hashes = { sha256 = "a0512e099edfa89622c5c9f55ac0e17b43584bbfef79984ce131ac9c3852e12d" } }]
[[packages]]
name = "smart-open"
version = "7.5.0"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/smart_open-7.5.0-2-py3-none-any.whl", hashes = { sha256 = "8a51c68cd07c116a9936ca8b2f1e03b8ed34c30bd0cc4328e97528f1267659d4" } }]
[[packages]]
name = "sqlalchemy"
version = "2.0.46"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/sqlalchemy-2.0.46-2-cp312-cp312-linux_aarch64.whl", hashes = { sha256 = "e62425db171221fbcb1ce55764ca4a643787378d626e627493c76f6cff3ff267" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/sqlalchemy-2.0.46-2-cp312-cp312-linux_ppc64le.whl", hashes = { sha256 = "637812b6f4377246731868343c1a70e0f3cf7071200ec838a4c58a860cd769fa" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/sqlalchemy-2.0.46-2-cp312-cp312-linux_s390x.whl", hashes = { sha256 = "d1980e6bbd5c41bf9b0db331dc4121ccc93b6b03ce9aa878462ca717bb3b6ae2" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/sqlalchemy-2.0.46-2-cp312-cp312-linux_x86_64.whl", hashes = { sha256 = "ab4cb30abd8bbec3e5873ee7407a3e855d1cd3fa276ba1b3daa72edfebcdcb17" } },
]
[[packages]]
name = "stack-data"
version = "0.6.3"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/stack_data-0.6.3-2-py3-none-any.whl", hashes = { sha256 = "cf427eb538d723aea633c5684b4a0dde7b4bb30ece95e9ffc0896632a00bb92e" } }]
[[packages]]
name = "starlette"
version = "0.52.1"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/starlette-0.52.1-2-py3-none-any.whl", hashes = { sha256 = "fede2ae8a4aa64422bfd8a8a4bdc8513e9f19da43af28e4ff7a3532294f87415" } }]
[[packages]]
name = "tabulate"
version = "0.9.0"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/tabulate-0.9.0-2-py3-none-any.whl", hashes = { sha256 = "f44cdc43d44b1b7e9a00b4f1a81725e0a26f97a051a34f79863757add6053d21" } }]
[[packages]]
name = "tenacity"
version = "8.5.0"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/tenacity-8.5.0-2-py3-none-any.whl", hashes = { sha256 = "009b066c01179a0c37b2eac77da118f260bc830b76379d03c74ccf45a3ace4a4" } }]
[[packages]]
name = "threadpoolctl"
version = "3.6.0"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/threadpoolctl-3.6.0-2-py3-none-any.whl", hashes = { sha256 = "51ebccf05235bcf8e852cc1380d88ccf7e4b6fa2cb59a8dca7374f23da5f55ab" } }]
[[packages]]
name = "toml"
version = "0.10.2"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/toml-0.10.2-2-py2.py3-none-any.whl", hashes = { sha256 = "2eb07c58dc2ea8267ad6a2b4512ea0059668436d36d2a5225fe42614d95c50a2" } }]
[[packages]]
name = "toolz"
version = "1.1.0"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/toolz-1.1.0-2-py3-none-any.whl", hashes = { sha256 = "39d0aeabbd8adb3b0c667ba79dcad438449c089142b521c572345cae6cf2ec4f" } }]
[[packages]]
name = "tornado"
version = "6.5.4"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/tornado-6.5.4-2-cp39-abi3-linux_aarch64.whl", hashes = { sha256 = "2bc89569378189e29c32e64deb4ab6de1db2c199c963d4f46ce6665e89e87713" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/tornado-6.5.4-2-cp39-abi3-linux_ppc64le.whl", hashes = { sha256 = "38dbce8f34adfa440af8057ceee02cd9e70fc780f71b3fc736b3e034b635a30d" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/tornado-6.5.4-2-cp39-abi3-linux_s390x.whl", hashes = { sha256 = "9aada83aff5e31704141379a1ab44292d53a193917cc584230daac6b00567814" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/tornado-6.5.4-2-cp39-abi3-linux_x86_64.whl", hashes = { sha256 = "54b1f7edf70c241cd8bd3bd38f8963b7b39e161a526fcad8a7a27297a0efff15" } },
]
[[packages]]
name = "tqdm"
version = "4.67.3"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/tqdm-4.67.3-2-py3-none-any.whl", hashes = { sha256 = "67cb2d06a1f95c030474384ecc6da5d5e75afcf10e377b7de4575358a4a87bf3" } }]
[[packages]]
name = "traitlets"
version = "5.14.3"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/traitlets-5.14.3-2-py3-none-any.whl", hashes = { sha256 = "f6a1e1a55a06f114db7f2a012fcc3e9dd3355e5b75547a056666cdc107c5b20a" } }]
[[packages]]
name = "typeguard"
version = "4.5.1"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/typeguard-4.5.1-2-py3-none-any.whl", hashes = { sha256 = "447a0ba25a12badde86fdd2e373ed70021fd6887054d9510e8936132b9e83f70" } }]
[[packages]]
name = "typing-extensions"
version = "4.15.0"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/typing_extensions-4.15.0-2-py3-none-any.whl", hashes = { sha256 = "9d00162fd5a94dc5e84b6f9b0db9c5732beb6cfdb3374f261dddac4c6372aa12" } }]
[[packages]]
name = "typing-inspection"
version = "0.4.2"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/typing_inspection-0.4.2-2-py3-none-any.whl", hashes = { sha256 = "237343fc0f3f3a1749da0939951e9261bff564d2dc6897d2d0ebeb1befd8b59f" } }]
[[packages]]
name = "tzdata"
version = "2025.3"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/tzdata-2025.3-2-py2.py3-none-any.whl", hashes = { sha256 = "f8e7adb02f581c140d93de45fbfb80bc7671857898782cf8c1d4c87cc9b1f8ab" } }]
[[packages]]
name = "urllib3"
version = "2.6.3"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/urllib3-2.6.3-2-py3-none-any.whl", hashes = { sha256 = "356c4251f98e92b5917e8378d88b8dda35a8db0b22d9942cfc1be71c0b8516a4" } }]
[[packages]]
name = "uv"
version = "0.9.28"
marker = "implementation_name == 'cpython' and sys_platform == 'linux'"
wheels = [
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/uv-0.9.28-2-py3-none-linux_aarch64.whl", hashes = { sha256 = "f036e972362c121476072dc3bb1222ee575a72ba80e86c7958f328788ad09d6d" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/uv-0.9.28-2-py3-none-linux_ppc64le.whl", hashes = { sha256 = "e304040280c3a73ca8f85f8215f0280db4a1f7f58a7ba57ff7d55a9f3e310a52" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/uv-0.9.28-2-py3-none-linux_s390x.whl", hashes = { sha256 = "8ad689c0036d9ae58fe0d753d91124687e0a03e84f5eef81ffa32ef6bda396b2" } },
{ url = "https://packages.redhat.com/api/pulp-content/public-rhai/rhoai/3.4-EA1/cpu-ubi9/uv-0.9.28-2-py3-none-linux_x86_64.whl", hashes = { sha256 = "98dadbc8bce085a06e5c49ccd7cfe4752c67f454c84babdb4f1522aa9ec0b5ea" } },
]