-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpixi.lock
More file actions
1852 lines (1852 loc) · 81.8 KB
/
Copy pathpixi.lock
File metadata and controls
1852 lines (1852 loc) · 81.8 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: 6
environments:
default:
channels:
- url: https://conda.anaconda.org/conda-forge/
indexes:
- https://pypi.org/simple
options:
pypi-prerelease-mode: if-necessary-or-explicit
packages:
linux-64:
- conda: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-20_gnu.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-hda65f42_9.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2026.4.22-hbd8a1cb_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/icu-78.3-h33c6efd_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.45.1-default_hbd61a6d_102.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.7.5-hecca717_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.5.2-h3435931_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-15.2.0-he0feb66_18.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-15.2.0-h69a702a_18.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-15.2.0-he0feb66_18.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/liblzma-5.8.3-hb03c661_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.1-hb9d3cd8_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.53.0-hf4e2dac_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-15.2.0-h934c35e_18.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.42-h5347b49_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.2-h25fd6f3_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.6-hdb14827_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.6.2-h35e630c_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/packaging-26.2-pyhc364b38_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pip-26.0.1-pyh8b19718_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.12.13-hd63d673_0_cpython.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.3-h853b02a_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-82.0.1-pyh332efcf_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h366c992_103.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025c-hc9c84f9_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/wheel-0.47.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.7-hb78ec9c_6.conda
- pypi: https://files.pythonhosted.org/packages/cc/8f/ec6289987824b29529d0dfda0d74a07cec60e54b9c92f3c9da4c0ac732de/contourpy-1.3.3-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- pypi: https://files.pythonhosted.org/packages/e7/05/c19819d5e3d95294a6f5947fb9b9629efb316b96de511b418c53d245aae6/cycler-0.12.1-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/9b/8a/99c8b3c3888c5c474c08dbfd7c8899786de9604b727fcefb055b42c84bba/fonttools-4.62.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
- pypi: https://files.pythonhosted.org/packages/cb/b1/3846dd7f199d53cb17f49cba7e651e9ce294d8497c8c150530ed11865bb8/iniconfig-2.3.0-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/62/a1/3d680cbfd5f4b8f15abc1d571870c5fc3e594bb582bc3b64ea099db13e56/jinja2-3.1.6-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/7b/91/984aca2ec129e2757d1e4e3c81c3fcda9d0f85b74670a094cc443d9ee949/joblib-1.5.3-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/c4/13/680c54afe3e65767bed7ec1a15571e1a2f1257128733851ade24abcefbcc/kiwisolver-1.5.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
- pypi: https://files.pythonhosted.org/packages/3c/2e/8d0c2ab90a8c1d9a24f0399058ab8519a3279d1bd4289511d74e909f060e/markupsafe-3.0.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- pypi: https://files.pythonhosted.org/packages/32/91/d024616abdba99e83120e07a20658976f6a343646710760c4a51df126029/matplotlib-3.10.9-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
- pypi: https://files.pythonhosted.org/packages/0a/0d/0e3ecece05b7a7e87ab9fb587855548da437a061326fff64a223b6dcb78a/numpy-2.4.4-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- pypi: https://files.pythonhosted.org/packages/c4/a8/3a61a721472959ab0ce865ef05d10b0d6bfe27ce8801c99f33d4fa996e65/pandas-3.0.2-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
- pypi: https://files.pythonhosted.org/packages/43/e3/fdc657359e919462369869f1c9f0e973f353f9a9ee295a39b1fea8ee1a77/pillow-12.2.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- pypi: https://files.pythonhosted.org/packages/54/20/4d324d65cc6d9205fabedc306948156824eb9f0ee1633355a8f7ec5c66bf/pluggy-1.6.0-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/f4/7e/a72dd26f3b0f4f2bf1dd8923c85f7ceb43172af56d63c7383eb62b332364/pygments-2.20.0-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/10/bd/c038d7cc38edc1aa5bf91ab8068b63d4308c66c4c8bb3cbba7dfbc049f9c/pyparsing-3.3.2-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/d4/24/a372aaf5c9b7208e7112038812994107bc65a84cd00e0354a88c2c77a617/pytest-9.0.3-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/a3/f9/60a6c3da23525e600131eae9e17cad738e2e820335ab45e1ea78ec8df4cb/pytest_mpl-0.19.0-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/97/74/b7a304feb2b49df9fafa9382d4d09061a96ee9a9449a7cbea7988dda0828/scikit_learn-1.8.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- pypi: https://files.pythonhosted.org/packages/01/8e/1e35281b8ab6d5d72ebe9911edcdffa3f36b04ed9d51dec6dd140396e220/scipy-1.17.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- pypi: https://files.pythonhosted.org/packages/83/11/00d3c3dfc25ad54e731d91449895a79e4bf2384dc3ac01809010ba88f6d5/seaborn-0.13.2-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/b7/ce/149a00dd41f10bc29e5921b496af8b574d8413afcd5e30dfa0ed46c2cc5e/six-1.17.0-py2.py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/32/d5/f9a850d79b0851d1d4ef6456097579a9005b31fea68726a4ae5f2d82ddd9/threadpoolctl-3.6.0-py3-none-any.whl
- pypi: ./
osx-64:
- conda: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h500dc9f_9.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2026.4.22-hbd8a1cb_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/icu-78.3-h25d91c4_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/libexpat-2.7.5-hcc62823_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/libffi-3.5.2-hd1f9c09_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/liblzma-5.8.3-hbb4bfdb_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.53.0-h8f8c405_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.3.2-hbb4bfdb_2.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.6-hcc0dc9a_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.6.2-hc881268_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/packaging-26.2-pyhc364b38_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pip-26.0.1-pyh8b19718_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/python-3.12.13-ha9537fe_0_cpython.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/readline-8.3-h68b038d_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-82.0.1-pyh332efcf_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.13-h7142dee_3.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025c-hc9c84f9_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/wheel-0.47.0-pyhd8ed1ab_0.conda
- pypi: https://files.pythonhosted.org/packages/be/45/adfee365d9ea3d853550b2e735f9d66366701c65db7855cd07621732ccfc/contourpy-1.3.3-cp312-cp312-macosx_10_13_x86_64.whl
- pypi: https://files.pythonhosted.org/packages/e7/05/c19819d5e3d95294a6f5947fb9b9629efb316b96de511b418c53d245aae6/cycler-0.12.1-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/66/9e/a769c8e99b81e5a87ab7e5e7236684de4e96246aae17274e5347d11ebd78/fonttools-4.62.1-cp312-cp312-macosx_10_13_x86_64.whl
- pypi: https://files.pythonhosted.org/packages/cb/b1/3846dd7f199d53cb17f49cba7e651e9ce294d8497c8c150530ed11865bb8/iniconfig-2.3.0-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/62/a1/3d680cbfd5f4b8f15abc1d571870c5fc3e594bb582bc3b64ea099db13e56/jinja2-3.1.6-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/7b/91/984aca2ec129e2757d1e4e3c81c3fcda9d0f85b74670a094cc443d9ee949/joblib-1.5.3-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/bf/d9/405320f8077e8e1c5c4bd6adc45e1e6edf6d727b6da7f2e2533cf58bff71/kiwisolver-1.5.0-cp312-cp312-macosx_10_13_x86_64.whl
- pypi: https://files.pythonhosted.org/packages/5a/72/147da192e38635ada20e0a2e1a51cf8823d2119ce8883f7053879c2199b5/markupsafe-3.0.3-cp312-cp312-macosx_10_13_x86_64.whl
- pypi: https://files.pythonhosted.org/packages/35/c6/5581e26c72233ebb2a2a6fed2d24fb7c66b4700120b813f51b0555acf0b6/matplotlib-3.10.9-cp312-cp312-macosx_10_13_x86_64.whl
- pypi: https://files.pythonhosted.org/packages/28/05/32396bec30fb2263770ee910142f49c1476d08e8ad41abf8403806b520ce/numpy-2.4.4-cp312-cp312-macosx_10_13_x86_64.whl
- pypi: https://files.pythonhosted.org/packages/f3/b0/c20bd4d6d3f736e6bd6b55794e9cd0a617b858eaad27c8f410ea05d953b7/pandas-3.0.2-cp312-cp312-macosx_10_13_x86_64.whl
- pypi: https://files.pythonhosted.org/packages/58/be/7482c8a5ebebbc6470b3eb791812fff7d5e0216c2be3827b30b8bb6603ed/pillow-12.2.0-cp312-cp312-macosx_10_13_x86_64.whl
- pypi: https://files.pythonhosted.org/packages/54/20/4d324d65cc6d9205fabedc306948156824eb9f0ee1633355a8f7ec5c66bf/pluggy-1.6.0-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/f4/7e/a72dd26f3b0f4f2bf1dd8923c85f7ceb43172af56d63c7383eb62b332364/pygments-2.20.0-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/10/bd/c038d7cc38edc1aa5bf91ab8068b63d4308c66c4c8bb3cbba7dfbc049f9c/pyparsing-3.3.2-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/d4/24/a372aaf5c9b7208e7112038812994107bc65a84cd00e0354a88c2c77a617/pytest-9.0.3-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/a3/f9/60a6c3da23525e600131eae9e17cad738e2e820335ab45e1ea78ec8df4cb/pytest_mpl-0.19.0-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/90/74/e6a7cc4b820e95cc38cf36cd74d5aa2b42e8ffc2d21fe5a9a9c45c1c7630/scikit_learn-1.8.0-cp312-cp312-macosx_10_13_x86_64.whl
- pypi: https://files.pythonhosted.org/packages/35/48/b992b488d6f299dbe3f11a20b24d3dda3d46f1a635ede1c46b5b17a7b163/scipy-1.17.1-cp312-cp312-macosx_10_14_x86_64.whl
- pypi: https://files.pythonhosted.org/packages/83/11/00d3c3dfc25ad54e731d91449895a79e4bf2384dc3ac01809010ba88f6d5/seaborn-0.13.2-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/b7/ce/149a00dd41f10bc29e5921b496af8b574d8413afcd5e30dfa0ed46c2cc5e/six-1.17.0-py2.py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/32/d5/f9a850d79b0851d1d4ef6456097579a9005b31fea68726a4ae5f2d82ddd9/threadpoolctl-3.6.0-py3-none-any.whl
- pypi: ./
osx-arm64:
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-hd037594_9.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2026.4.22-hbd8a1cb_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libexpat-2.7.5-hf6b4638_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.5.2-hcf2aa1b_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/liblzma-5.8.3-h8088a28_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.53.0-h1b79a29_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.3.2-h8088a28_2.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.6-h1d4f5a5_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.6.2-hd24854e_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/packaging-26.2-pyhc364b38_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pip-26.0.1-pyh8b19718_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.12.13-h8561d8f_0_cpython.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.3-h46df422_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-82.0.1-pyh332efcf_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.13-h010d191_3.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025c-hc9c84f9_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/wheel-0.47.0-pyhd8ed1ab_0.conda
- pypi: https://files.pythonhosted.org/packages/53/3e/405b59cfa13021a56bba395a6b3aca8cec012b45bf177b0eaf7a202cde2c/contourpy-1.3.3-cp312-cp312-macosx_11_0_arm64.whl
- pypi: https://files.pythonhosted.org/packages/e7/05/c19819d5e3d95294a6f5947fb9b9629efb316b96de511b418c53d245aae6/cycler-0.12.1-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/47/d4/dbacced3953544b9a93088cc10ef2b596d348c983d5c67a404fa41ec51ba/fonttools-4.62.1-cp312-cp312-macosx_10_13_universal2.whl
- pypi: https://files.pythonhosted.org/packages/cb/b1/3846dd7f199d53cb17f49cba7e651e9ce294d8497c8c150530ed11865bb8/iniconfig-2.3.0-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/62/a1/3d680cbfd5f4b8f15abc1d571870c5fc3e594bb582bc3b64ea099db13e56/jinja2-3.1.6-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/7b/91/984aca2ec129e2757d1e4e3c81c3fcda9d0f85b74670a094cc443d9ee949/joblib-1.5.3-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/99/9f/795fedf35634f746151ca8839d05681ceb6287fbed6cc1c9bf235f7887c2/kiwisolver-1.5.0-cp312-cp312-macosx_11_0_arm64.whl
- pypi: https://files.pythonhosted.org/packages/9a/81/7e4e08678a1f98521201c3079f77db69fb552acd56067661f8c2f534a718/markupsafe-3.0.3-cp312-cp312-macosx_11_0_arm64.whl
- pypi: https://files.pythonhosted.org/packages/b7/18/4880dd762e40cd360c1bf06e890c5a97b997e91cb324602b1a19950ad5ce/matplotlib-3.10.9-cp312-cp312-macosx_11_0_arm64.whl
- pypi: https://files.pythonhosted.org/packages/c5/f3/a983d28637bfcd763a9c7aafdb6d5c0ebf3d487d1e1459ffdb57e2f01117/numpy-2.4.4-cp312-cp312-macosx_11_0_arm64.whl
- pypi: https://files.pythonhosted.org/packages/35/d0/4831af68ce30cc2d03c697bea8450e3225a835ef497d0d70f31b8cdde965/pandas-3.0.2-cp312-cp312-macosx_11_0_arm64.whl
- pypi: https://files.pythonhosted.org/packages/d8/95/0a351b9289c2b5cbde0bacd4a83ebc44023e835490a727b2a3bd60ddc0f4/pillow-12.2.0-cp312-cp312-macosx_11_0_arm64.whl
- pypi: https://files.pythonhosted.org/packages/54/20/4d324d65cc6d9205fabedc306948156824eb9f0ee1633355a8f7ec5c66bf/pluggy-1.6.0-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/f4/7e/a72dd26f3b0f4f2bf1dd8923c85f7ceb43172af56d63c7383eb62b332364/pygments-2.20.0-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/10/bd/c038d7cc38edc1aa5bf91ab8068b63d4308c66c4c8bb3cbba7dfbc049f9c/pyparsing-3.3.2-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/d4/24/a372aaf5c9b7208e7112038812994107bc65a84cd00e0354a88c2c77a617/pytest-9.0.3-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/a3/f9/60a6c3da23525e600131eae9e17cad738e2e820335ab45e1ea78ec8df4cb/pytest_mpl-0.19.0-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/49/d8/9be608c6024d021041c7f0b3928d4749a706f4e2c3832bbede4fb4f58c95/scikit_learn-1.8.0-cp312-cp312-macosx_12_0_arm64.whl
- pypi: https://files.pythonhosted.org/packages/b2/02/cf107b01494c19dc100f1d0b7ac3cc08666e96ba2d64db7626066cee895e/scipy-1.17.1-cp312-cp312-macosx_12_0_arm64.whl
- pypi: https://files.pythonhosted.org/packages/83/11/00d3c3dfc25ad54e731d91449895a79e4bf2384dc3ac01809010ba88f6d5/seaborn-0.13.2-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/b7/ce/149a00dd41f10bc29e5921b496af8b574d8413afcd5e30dfa0ed46c2cc5e/six-1.17.0-py2.py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/32/d5/f9a850d79b0851d1d4ef6456097579a9005b31fea68726a4ae5f2d82ddd9/threadpoolctl-3.6.0-py3-none-any.whl
- pypi: ./
packages:
- conda: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-20_gnu.conda
build_number: 20
sha256: 1dd3fffd892081df9726d7eb7e0dea6198962ba775bd88842135a4ddb4deb3c9
md5: a9f577daf3de00bca7c3c76c0ecbd1de
depends:
- __glibc >=2.17,<3.0.a0
- libgomp >=7.5.0
constrains:
- openmp_impl <0.0a0
license: BSD-3-Clause
license_family: BSD
purls: []
size: 28948
timestamp: 1770939786096
- conda: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-hda65f42_9.conda
sha256: 0b75d45f0bba3e95dc693336fa51f40ea28c980131fec438afb7ce6118ed05f6
md5: d2ffd7602c02f2b316fd921d39876885
depends:
- __glibc >=2.17,<3.0.a0
- libgcc >=14
license: bzip2-1.0.6
license_family: BSD
purls: []
size: 260182
timestamp: 1771350215188
- conda: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h500dc9f_9.conda
sha256: 9f242f13537ef1ce195f93f0cc162965d6cc79da578568d6d8e50f70dd025c42
md5: 4173ac3b19ec0a4f400b4f782910368b
depends:
- __osx >=10.13
license: bzip2-1.0.6
license_family: BSD
purls: []
size: 133427
timestamp: 1771350680709
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-hd037594_9.conda
sha256: 540fe54be35fac0c17feefbdc3e29725cce05d7367ffedfaaa1bdda234b019df
md5: 620b85a3f45526a8bc4d23fd78fc22f0
depends:
- __osx >=11.0
license: bzip2-1.0.6
license_family: BSD
purls: []
size: 124834
timestamp: 1771350416561
- conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2026.4.22-hbd8a1cb_0.conda
sha256: c9dbcc8039a52023660d6d1bbf87594a93dd69c6ac5a2a44323af2c92976728d
md5: e18ad67cf881dcadee8b8d9e2f8e5f73
depends:
- __unix
license: ISC
purls: []
size: 131039
timestamp: 1776865545798
- pypi: https://files.pythonhosted.org/packages/53/3e/405b59cfa13021a56bba395a6b3aca8cec012b45bf177b0eaf7a202cde2c/contourpy-1.3.3-cp312-cp312-macosx_11_0_arm64.whl
name: contourpy
version: 1.3.3
sha256: 556dba8fb6f5d8742f2923fe9457dbdd51e1049c4a43fd3986a0b14a1d815fc6
requires_dist:
- numpy>=1.25
- furo ; extra == 'docs'
- sphinx>=7.2 ; extra == 'docs'
- sphinx-copybutton ; extra == 'docs'
- bokeh ; extra == 'bokeh'
- selenium ; extra == 'bokeh'
- contourpy[bokeh,docs] ; extra == 'mypy'
- bokeh ; extra == 'mypy'
- docutils-stubs ; extra == 'mypy'
- mypy==1.17.0 ; extra == 'mypy'
- types-pillow ; extra == 'mypy'
- contourpy[test-no-images] ; extra == 'test'
- matplotlib ; extra == 'test'
- pillow ; extra == 'test'
- pytest ; extra == 'test-no-images'
- pytest-cov ; extra == 'test-no-images'
- pytest-rerunfailures ; extra == 'test-no-images'
- pytest-xdist ; extra == 'test-no-images'
- wurlitzer ; extra == 'test-no-images'
requires_python: '>=3.11'
- pypi: https://files.pythonhosted.org/packages/be/45/adfee365d9ea3d853550b2e735f9d66366701c65db7855cd07621732ccfc/contourpy-1.3.3-cp312-cp312-macosx_10_13_x86_64.whl
name: contourpy
version: 1.3.3
sha256: b08a32ea2f8e42cf1d4be3169a98dd4be32bafe4f22b6c4cb4ba810fa9e5d2cb
requires_dist:
- numpy>=1.25
- furo ; extra == 'docs'
- sphinx>=7.2 ; extra == 'docs'
- sphinx-copybutton ; extra == 'docs'
- bokeh ; extra == 'bokeh'
- selenium ; extra == 'bokeh'
- contourpy[bokeh,docs] ; extra == 'mypy'
- bokeh ; extra == 'mypy'
- docutils-stubs ; extra == 'mypy'
- mypy==1.17.0 ; extra == 'mypy'
- types-pillow ; extra == 'mypy'
- contourpy[test-no-images] ; extra == 'test'
- matplotlib ; extra == 'test'
- pillow ; extra == 'test'
- pytest ; extra == 'test-no-images'
- pytest-cov ; extra == 'test-no-images'
- pytest-rerunfailures ; extra == 'test-no-images'
- pytest-xdist ; extra == 'test-no-images'
- wurlitzer ; extra == 'test-no-images'
requires_python: '>=3.11'
- pypi: https://files.pythonhosted.org/packages/cc/8f/ec6289987824b29529d0dfda0d74a07cec60e54b9c92f3c9da4c0ac732de/contourpy-1.3.3-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
name: contourpy
version: 1.3.3
sha256: 4d00e655fcef08aba35ec9610536bfe90267d7ab5ba944f7032549c55a146da1
requires_dist:
- numpy>=1.25
- furo ; extra == 'docs'
- sphinx>=7.2 ; extra == 'docs'
- sphinx-copybutton ; extra == 'docs'
- bokeh ; extra == 'bokeh'
- selenium ; extra == 'bokeh'
- contourpy[bokeh,docs] ; extra == 'mypy'
- bokeh ; extra == 'mypy'
- docutils-stubs ; extra == 'mypy'
- mypy==1.17.0 ; extra == 'mypy'
- types-pillow ; extra == 'mypy'
- contourpy[test-no-images] ; extra == 'test'
- matplotlib ; extra == 'test'
- pillow ; extra == 'test'
- pytest ; extra == 'test-no-images'
- pytest-cov ; extra == 'test-no-images'
- pytest-rerunfailures ; extra == 'test-no-images'
- pytest-xdist ; extra == 'test-no-images'
- wurlitzer ; extra == 'test-no-images'
requires_python: '>=3.11'
- pypi: https://files.pythonhosted.org/packages/e7/05/c19819d5e3d95294a6f5947fb9b9629efb316b96de511b418c53d245aae6/cycler-0.12.1-py3-none-any.whl
name: cycler
version: 0.12.1
sha256: 85cef7cff222d8644161529808465972e51340599459b8ac3ccbac5a854e0d30
requires_dist:
- ipython ; extra == 'docs'
- matplotlib ; extra == 'docs'
- numpydoc ; extra == 'docs'
- sphinx ; extra == 'docs'
- pytest ; extra == 'tests'
- pytest-cov ; extra == 'tests'
- pytest-xdist ; extra == 'tests'
requires_python: '>=3.8'
- pypi: https://files.pythonhosted.org/packages/47/d4/dbacced3953544b9a93088cc10ef2b596d348c983d5c67a404fa41ec51ba/fonttools-4.62.1-cp312-cp312-macosx_10_13_universal2.whl
name: fonttools
version: 4.62.1
sha256: 90365821debbd7db678809c7491ca4acd1e0779b9624cdc6ddaf1f31992bf974
requires_dist:
- lxml>=4.0 ; extra == 'lxml'
- brotli>=1.0.1 ; platform_python_implementation == 'CPython' and extra == 'woff'
- brotlicffi>=0.8.0 ; platform_python_implementation != 'CPython' and extra == 'woff'
- zopfli>=0.1.4 ; extra == 'woff'
- unicodedata2>=17.0.0 ; python_full_version < '3.15' and extra == 'unicode'
- lz4>=1.7.4.2 ; extra == 'graphite'
- scipy ; platform_python_implementation != 'PyPy' and extra == 'interpolatable'
- munkres ; platform_python_implementation == 'PyPy' and extra == 'interpolatable'
- pycairo ; extra == 'interpolatable'
- matplotlib ; extra == 'plot'
- sympy ; extra == 'symfont'
- xattr ; sys_platform == 'darwin' and extra == 'type1'
- skia-pathops>=0.5.0 ; extra == 'pathops'
- uharfbuzz>=0.45.0 ; extra == 'repacker'
- lxml>=4.0 ; extra == 'all'
- brotli>=1.0.1 ; platform_python_implementation == 'CPython' and extra == 'all'
- brotlicffi>=0.8.0 ; platform_python_implementation != 'CPython' and extra == 'all'
- zopfli>=0.1.4 ; extra == 'all'
- unicodedata2>=17.0.0 ; python_full_version < '3.15' and extra == 'all'
- lz4>=1.7.4.2 ; extra == 'all'
- scipy ; platform_python_implementation != 'PyPy' and extra == 'all'
- munkres ; platform_python_implementation == 'PyPy' and extra == 'all'
- pycairo ; extra == 'all'
- matplotlib ; extra == 'all'
- sympy ; extra == 'all'
- xattr ; sys_platform == 'darwin' and extra == 'all'
- skia-pathops>=0.5.0 ; extra == 'all'
- uharfbuzz>=0.45.0 ; extra == 'all'
requires_python: '>=3.10'
- pypi: https://files.pythonhosted.org/packages/66/9e/a769c8e99b81e5a87ab7e5e7236684de4e96246aae17274e5347d11ebd78/fonttools-4.62.1-cp312-cp312-macosx_10_13_x86_64.whl
name: fonttools
version: 4.62.1
sha256: 12859ff0b47dd20f110804c3e0d0970f7b832f561630cd879969011541a464a9
requires_dist:
- lxml>=4.0 ; extra == 'lxml'
- brotli>=1.0.1 ; platform_python_implementation == 'CPython' and extra == 'woff'
- brotlicffi>=0.8.0 ; platform_python_implementation != 'CPython' and extra == 'woff'
- zopfli>=0.1.4 ; extra == 'woff'
- unicodedata2>=17.0.0 ; python_full_version < '3.15' and extra == 'unicode'
- lz4>=1.7.4.2 ; extra == 'graphite'
- scipy ; platform_python_implementation != 'PyPy' and extra == 'interpolatable'
- munkres ; platform_python_implementation == 'PyPy' and extra == 'interpolatable'
- pycairo ; extra == 'interpolatable'
- matplotlib ; extra == 'plot'
- sympy ; extra == 'symfont'
- xattr ; sys_platform == 'darwin' and extra == 'type1'
- skia-pathops>=0.5.0 ; extra == 'pathops'
- uharfbuzz>=0.45.0 ; extra == 'repacker'
- lxml>=4.0 ; extra == 'all'
- brotli>=1.0.1 ; platform_python_implementation == 'CPython' and extra == 'all'
- brotlicffi>=0.8.0 ; platform_python_implementation != 'CPython' and extra == 'all'
- zopfli>=0.1.4 ; extra == 'all'
- unicodedata2>=17.0.0 ; python_full_version < '3.15' and extra == 'all'
- lz4>=1.7.4.2 ; extra == 'all'
- scipy ; platform_python_implementation != 'PyPy' and extra == 'all'
- munkres ; platform_python_implementation == 'PyPy' and extra == 'all'
- pycairo ; extra == 'all'
- matplotlib ; extra == 'all'
- sympy ; extra == 'all'
- xattr ; sys_platform == 'darwin' and extra == 'all'
- skia-pathops>=0.5.0 ; extra == 'all'
- uharfbuzz>=0.45.0 ; extra == 'all'
requires_python: '>=3.10'
- pypi: https://files.pythonhosted.org/packages/9b/8a/99c8b3c3888c5c474c08dbfd7c8899786de9604b727fcefb055b42c84bba/fonttools-4.62.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
name: fonttools
version: 4.62.1
sha256: 149f7d84afca659d1a97e39a4778794a2f83bf344c5ee5134e09995086cc2392
requires_dist:
- lxml>=4.0 ; extra == 'lxml'
- brotli>=1.0.1 ; platform_python_implementation == 'CPython' and extra == 'woff'
- brotlicffi>=0.8.0 ; platform_python_implementation != 'CPython' and extra == 'woff'
- zopfli>=0.1.4 ; extra == 'woff'
- unicodedata2>=17.0.0 ; python_full_version < '3.15' and extra == 'unicode'
- lz4>=1.7.4.2 ; extra == 'graphite'
- scipy ; platform_python_implementation != 'PyPy' and extra == 'interpolatable'
- munkres ; platform_python_implementation == 'PyPy' and extra == 'interpolatable'
- pycairo ; extra == 'interpolatable'
- matplotlib ; extra == 'plot'
- sympy ; extra == 'symfont'
- xattr ; sys_platform == 'darwin' and extra == 'type1'
- skia-pathops>=0.5.0 ; extra == 'pathops'
- uharfbuzz>=0.45.0 ; extra == 'repacker'
- lxml>=4.0 ; extra == 'all'
- brotli>=1.0.1 ; platform_python_implementation == 'CPython' and extra == 'all'
- brotlicffi>=0.8.0 ; platform_python_implementation != 'CPython' and extra == 'all'
- zopfli>=0.1.4 ; extra == 'all'
- unicodedata2>=17.0.0 ; python_full_version < '3.15' and extra == 'all'
- lz4>=1.7.4.2 ; extra == 'all'
- scipy ; platform_python_implementation != 'PyPy' and extra == 'all'
- munkres ; platform_python_implementation == 'PyPy' and extra == 'all'
- pycairo ; extra == 'all'
- matplotlib ; extra == 'all'
- sympy ; extra == 'all'
- xattr ; sys_platform == 'darwin' and extra == 'all'
- skia-pathops>=0.5.0 ; extra == 'all'
- uharfbuzz>=0.45.0 ; extra == 'all'
requires_python: '>=3.10'
- conda: https://conda.anaconda.org/conda-forge/linux-64/icu-78.3-h33c6efd_0.conda
sha256: fbf86c4a59c2ed05bbffb2ba25c7ed94f6185ec30ecb691615d42342baa1a16a
md5: c80d8a3b84358cb967fa81e7075fbc8a
depends:
- __glibc >=2.17,<3.0.a0
- libgcc >=14
- libstdcxx >=14
license: MIT
license_family: MIT
purls: []
size: 12723451
timestamp: 1773822285671
- conda: https://conda.anaconda.org/conda-forge/osx-64/icu-78.3-h25d91c4_0.conda
sha256: 1294117122d55246bb83ad5b589e2a031aacdf2d0b1f99fd338aa4394f881735
md5: 627eca44e62e2b665eeec57a984a7f00
depends:
- __osx >=11.0
license: MIT
license_family: MIT
purls: []
size: 12273764
timestamp: 1773822733780
- pypi: https://files.pythonhosted.org/packages/cb/b1/3846dd7f199d53cb17f49cba7e651e9ce294d8497c8c150530ed11865bb8/iniconfig-2.3.0-py3-none-any.whl
name: iniconfig
version: 2.3.0
sha256: f631c04d2c48c52b84d0d0549c99ff3859c98df65b3101406327ecc7d53fbf12
requires_python: '>=3.10'
- pypi: https://files.pythonhosted.org/packages/62/a1/3d680cbfd5f4b8f15abc1d571870c5fc3e594bb582bc3b64ea099db13e56/jinja2-3.1.6-py3-none-any.whl
name: jinja2
version: 3.1.6
sha256: 85ece4451f492d0c13c5dd7c13a64681a86afae63a5f347908daf103ce6d2f67
requires_dist:
- markupsafe>=2.0
- babel>=2.7 ; extra == 'i18n'
requires_python: '>=3.7'
- pypi: https://files.pythonhosted.org/packages/7b/91/984aca2ec129e2757d1e4e3c81c3fcda9d0f85b74670a094cc443d9ee949/joblib-1.5.3-py3-none-any.whl
name: joblib
version: 1.5.3
sha256: 5fc3c5039fc5ca8c0276333a188bbd59d6b7ab37fe6632daa76bc7f9ec18e713
requires_python: '>=3.9'
- pypi: https://files.pythonhosted.org/packages/99/9f/795fedf35634f746151ca8839d05681ceb6287fbed6cc1c9bf235f7887c2/kiwisolver-1.5.0-cp312-cp312-macosx_11_0_arm64.whl
name: kiwisolver
version: 1.5.0
sha256: ed3a984b31da7481b103f68776f7128a89ef26ed40f4dc41a2223cda7fb24819
requires_python: '>=3.10'
- pypi: https://files.pythonhosted.org/packages/bf/d9/405320f8077e8e1c5c4bd6adc45e1e6edf6d727b6da7f2e2533cf58bff71/kiwisolver-1.5.0-cp312-cp312-macosx_10_13_x86_64.whl
name: kiwisolver
version: 1.5.0
sha256: 72ec46b7eba5b395e0a7b63025490d3214c11013f4aacb4f5e8d6c3041829588
requires_python: '>=3.10'
- pypi: https://files.pythonhosted.org/packages/c4/13/680c54afe3e65767bed7ec1a15571e1a2f1257128733851ade24abcefbcc/kiwisolver-1.5.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
name: kiwisolver
version: 1.5.0
sha256: bb5136fb5352d3f422df33f0c879a1b0c204004324150cc3b5e3c4f310c9049f
requires_python: '>=3.10'
- conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.45.1-default_hbd61a6d_102.conda
sha256: 3d584956604909ff5df353767f3a2a2f60e07d070b328d109f30ac40cd62df6c
md5: 18335a698559cdbcd86150a48bf54ba6
depends:
- __glibc >=2.17,<3.0.a0
- zstd >=1.5.7,<1.6.0a0
constrains:
- binutils_impl_linux-64 2.45.1
license: GPL-3.0-only
license_family: GPL
purls: []
size: 728002
timestamp: 1774197446916
- conda: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.7.5-hecca717_0.conda
sha256: e8c2b57f6aacabdf2f1b0924bd4831ce5071ba080baa4a9e8c0d720588b6794c
md5: 49f570f3bc4c874a06ea69b7225753af
depends:
- __glibc >=2.17,<3.0.a0
- libgcc >=14
constrains:
- expat 2.7.5.*
license: MIT
license_family: MIT
purls: []
size: 76624
timestamp: 1774719175983
- conda: https://conda.anaconda.org/conda-forge/osx-64/libexpat-2.7.5-hcc62823_0.conda
sha256: 341d8a457a8342c396a8ac788da2639cbc8b62568f6ba2a3d322d1ace5aa9e16
md5: 1d6e71b8c73711e28ffe207acdc4e2f8
depends:
- __osx >=11.0
constrains:
- expat 2.7.5.*
license: MIT
license_family: MIT
purls: []
size: 74797
timestamp: 1774719557730
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libexpat-2.7.5-hf6b4638_0.conda
sha256: 06780dec91dd25770c8cf01e158e1062fbf7c576b1406427475ce69a8af75b7e
md5: a32123f93e168eaa4080d87b0fb5da8a
depends:
- __osx >=11.0
constrains:
- expat 2.7.5.*
license: MIT
license_family: MIT
purls: []
size: 68192
timestamp: 1774719211725
- conda: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.5.2-h3435931_0.conda
sha256: 31f19b6a88ce40ebc0d5a992c131f57d919f73c0b92cd1617a5bec83f6e961e6
md5: a360c33a5abe61c07959e449fa1453eb
depends:
- __glibc >=2.17,<3.0.a0
- libgcc >=14
license: MIT
license_family: MIT
purls: []
size: 58592
timestamp: 1769456073053
- conda: https://conda.anaconda.org/conda-forge/osx-64/libffi-3.5.2-hd1f9c09_0.conda
sha256: 951958d1792238006fdc6fce7f71f1b559534743b26cc1333497d46e5903a2d6
md5: 66a0dc7464927d0853b590b6f53ba3ea
depends:
- __osx >=10.13
license: MIT
license_family: MIT
purls: []
size: 53583
timestamp: 1769456300951
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.5.2-hcf2aa1b_0.conda
sha256: 6686a26466a527585e6a75cc2a242bf4a3d97d6d6c86424a441677917f28bec7
md5: 43c04d9cb46ef176bb2a4c77e324d599
depends:
- __osx >=11.0
license: MIT
license_family: MIT
purls: []
size: 40979
timestamp: 1769456747661
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-15.2.0-he0feb66_18.conda
sha256: faf7d2017b4d718951e3a59d081eb09759152f93038479b768e3d612688f83f5
md5: 0aa00f03f9e39fb9876085dee11a85d4
depends:
- __glibc >=2.17,<3.0.a0
- _openmp_mutex >=4.5
constrains:
- libgcc-ng ==15.2.0=*_18
- libgomp 15.2.0 he0feb66_18
license: GPL-3.0-only WITH GCC-exception-3.1
license_family: GPL
purls: []
size: 1041788
timestamp: 1771378212382
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-15.2.0-h69a702a_18.conda
sha256: e318a711400f536c81123e753d4c797a821021fb38970cebfb3f454126016893
md5: d5e96b1ed75ca01906b3d2469b4ce493
depends:
- libgcc 15.2.0 he0feb66_18
license: GPL-3.0-only WITH GCC-exception-3.1
license_family: GPL
purls: []
size: 27526
timestamp: 1771378224552
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-15.2.0-he0feb66_18.conda
sha256: 21337ab58e5e0649d869ab168d4e609b033509de22521de1bfed0c031bfc5110
md5: 239c5e9546c38a1e884d69effcf4c882
depends:
- __glibc >=2.17,<3.0.a0
license: GPL-3.0-only WITH GCC-exception-3.1
license_family: GPL
purls: []
size: 603262
timestamp: 1771378117851
- conda: https://conda.anaconda.org/conda-forge/linux-64/liblzma-5.8.3-hb03c661_0.conda
sha256: ec30e52a3c1bf7d0425380a189d209a52baa03f22fb66dd3eb587acaa765bd6d
md5: b88d90cad08e6bc8ad540cb310a761fb
depends:
- __glibc >=2.17,<3.0.a0
- libgcc >=14
constrains:
- xz 5.8.3.*
license: 0BSD
purls: []
size: 113478
timestamp: 1775825492909
- conda: https://conda.anaconda.org/conda-forge/osx-64/liblzma-5.8.3-hbb4bfdb_0.conda
sha256: d9e2006051529aec5578c6efeb13bb6a7200a014b2d5a77a579e83a8049d5f3c
md5: becdfbfe7049fa248e52aa37a9df09e2
depends:
- __osx >=11.0
constrains:
- xz 5.8.3.*
license: 0BSD
purls: []
size: 105724
timestamp: 1775826029494
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/liblzma-5.8.3-h8088a28_0.conda
sha256: 34878d87275c298f1a732c6806349125cebbf340d24c6c23727268184bba051e
md5: b1fd823b5ae54fbec272cea0811bd8a9
depends:
- __osx >=11.0
constrains:
- xz 5.8.3.*
license: 0BSD
purls: []
size: 92472
timestamp: 1775825802659
- conda: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.1-hb9d3cd8_1.conda
sha256: 927fe72b054277cde6cb82597d0fcf6baf127dcbce2e0a9d8925a68f1265eef5
md5: d864d34357c3b65a4b731f78c0801dc4
depends:
- __glibc >=2.17,<3.0.a0
- libgcc >=13
license: LGPL-2.1-only
license_family: GPL
purls: []
size: 33731
timestamp: 1750274110928
- conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.53.0-hf4e2dac_0.conda
sha256: ec37c79f737933bbac965f5dc0f08ef2790247129a84bb3114fad4900adce401
md5: 810d83373448da85c3f673fbcb7ad3a3
depends:
- __glibc >=2.17,<3.0.a0
- icu >=78.3,<79.0a0
- libgcc >=14
- libzlib >=1.3.2,<2.0a0
license: blessing
purls: []
size: 958864
timestamp: 1775753750179
- conda: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.53.0-h8f8c405_0.conda
sha256: ae9d83cab8988a7d4ccec411fef23c141b5b3d301db3e926ab7cd4befe3764e6
md5: f2bb6692dfb33a1bbce746aa812a9a5b
depends:
- __osx >=11.0
- icu >=78.3,<79.0a0
- libzlib >=1.3.2,<2.0a0
license: blessing
purls: []
size: 1007272
timestamp: 1775754456682
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.53.0-h1b79a29_0.conda
sha256: 1a9d1e3e18dbb0b87cff3b40c3e42703730d7ac7ee9b9322c2682196a81ba0c3
md5: 8423c008105df35485e184066cad4566
depends:
- __osx >=11.0
- libzlib >=1.3.2,<2.0a0
license: blessing
purls: []
size: 920039
timestamp: 1775754485962
- conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-15.2.0-h934c35e_18.conda
sha256: 78668020064fdaa27e9ab65cd2997e2c837b564ab26ce3bf0e58a2ce1a525c6e
md5: 1b08cd684f34175e4514474793d44bcb
depends:
- __glibc >=2.17,<3.0.a0
- libgcc 15.2.0 he0feb66_18
constrains:
- libstdcxx-ng ==15.2.0=*_18
license: GPL-3.0-only WITH GCC-exception-3.1
license_family: GPL
purls: []
size: 5852330
timestamp: 1771378262446
- conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.42-h5347b49_0.conda
sha256: bc1b08c92626c91500fd9f26f2c797f3eb153b627d53e9c13cd167f1e12b2829
md5: 38ffe67b78c9d4de527be8315e5ada2c
depends:
- __glibc >=2.17,<3.0.a0
- libgcc >=14
license: BSD-3-Clause
license_family: BSD
purls: []
size: 40297
timestamp: 1775052476770
- conda: https://conda.anaconda.org/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda
sha256: 6ae68e0b86423ef188196fff6207ed0c8195dd84273cb5623b85aa08033a410c
md5: 5aa797f8787fe7a17d1b0821485b5adc
depends:
- libgcc-ng >=12
license: LGPL-2.1-or-later
purls: []
size: 100393
timestamp: 1702724383534
- conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.2-h25fd6f3_2.conda
sha256: 55044c403570f0dc26e6364de4dc5368e5f3fc7ff103e867c487e2b5ab2bcda9
md5: d87ff7921124eccd67248aa483c23fec
depends:
- __glibc >=2.17,<3.0.a0
constrains:
- zlib 1.3.2 *_2
license: Zlib
license_family: Other
purls: []
size: 63629
timestamp: 1774072609062
- conda: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.3.2-hbb4bfdb_2.conda
sha256: 4c6da089952b2d70150c74234679d6f7ac04f4a98f9432dec724968f912691e7
md5: 30439ff30578e504ee5e0b390afc8c65
depends:
- __osx >=11.0
constrains:
- zlib 1.3.2 *_2
license: Zlib
license_family: Other
purls: []
size: 59000
timestamp: 1774073052242
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.3.2-h8088a28_2.conda
sha256: 361415a698514b19a852f5d1123c5da746d4642139904156ddfca7c922d23a05
md5: bc5a5721b6439f2f62a84f2548136082
depends:
- __osx >=11.0
constrains:
- zlib 1.3.2 *_2
license: Zlib
license_family: Other
purls: []
size: 47759
timestamp: 1774072956767
- pypi: https://files.pythonhosted.org/packages/3c/2e/8d0c2ab90a8c1d9a24f0399058ab8519a3279d1bd4289511d74e909f060e/markupsafe-3.0.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
name: markupsafe
version: 3.0.3
sha256: d6dd0be5b5b189d31db7cda48b91d7e0a9795f31430b7f271219ab30f1d3ac9d
requires_python: '>=3.9'
- pypi: https://files.pythonhosted.org/packages/5a/72/147da192e38635ada20e0a2e1a51cf8823d2119ce8883f7053879c2199b5/markupsafe-3.0.3-cp312-cp312-macosx_10_13_x86_64.whl
name: markupsafe
version: 3.0.3
sha256: d53197da72cc091b024dd97249dfc7794d6a56530370992a5e1a08983ad9230e
requires_python: '>=3.9'
- pypi: https://files.pythonhosted.org/packages/9a/81/7e4e08678a1f98521201c3079f77db69fb552acd56067661f8c2f534a718/markupsafe-3.0.3-cp312-cp312-macosx_11_0_arm64.whl
name: markupsafe
version: 3.0.3
sha256: 1872df69a4de6aead3491198eaf13810b565bdbeec3ae2dc8780f14458ec73ce
requires_python: '>=3.9'
- pypi: https://files.pythonhosted.org/packages/32/91/d024616abdba99e83120e07a20658976f6a343646710760c4a51df126029/matplotlib-3.10.9-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
name: matplotlib
version: 3.10.9
sha256: ae20801130378b82d647ff5047c07316295b68dc054ca6b3c13519d0ea624285
requires_dist:
- contourpy>=1.0.1
- cycler>=0.10
- fonttools>=4.22.0
- kiwisolver>=1.3.1
- numpy>=1.23
- packaging>=20.0
- pillow>=8
- pyparsing>=3
- python-dateutil>=2.7
- meson-python>=0.13.1,<0.17.0 ; extra == 'dev'
- pybind11>=2.13.2,!=2.13.3 ; extra == 'dev'
- setuptools-scm>=7,<10 ; extra == 'dev'
- setuptools>=64 ; extra == 'dev'
requires_python: '>=3.10'
- pypi: https://files.pythonhosted.org/packages/35/c6/5581e26c72233ebb2a2a6fed2d24fb7c66b4700120b813f51b0555acf0b6/matplotlib-3.10.9-cp312-cp312-macosx_10_13_x86_64.whl
name: matplotlib
version: 3.10.9
sha256: f0c3c28d9fbcc1fe7a03be236d73430cf6409c41fb2383a7ac52fe932b072cb1
requires_dist:
- contourpy>=1.0.1
- cycler>=0.10
- fonttools>=4.22.0
- kiwisolver>=1.3.1
- numpy>=1.23
- packaging>=20.0
- pillow>=8
- pyparsing>=3
- python-dateutil>=2.7
- meson-python>=0.13.1,<0.17.0 ; extra == 'dev'
- pybind11>=2.13.2,!=2.13.3 ; extra == 'dev'
- setuptools-scm>=7,<10 ; extra == 'dev'
- setuptools>=64 ; extra == 'dev'
requires_python: '>=3.10'
- pypi: https://files.pythonhosted.org/packages/b7/18/4880dd762e40cd360c1bf06e890c5a97b997e91cb324602b1a19950ad5ce/matplotlib-3.10.9-cp312-cp312-macosx_11_0_arm64.whl
name: matplotlib
version: 3.10.9
sha256: 41cb28c2bd769aa3e98322c6ab09854cbcc52ab69d2759d681bba3e327b2b320
requires_dist:
- contourpy>=1.0.1
- cycler>=0.10
- fonttools>=4.22.0
- kiwisolver>=1.3.1
- numpy>=1.23
- packaging>=20.0
- pillow>=8
- pyparsing>=3
- python-dateutil>=2.7
- meson-python>=0.13.1,<0.17.0 ; extra == 'dev'
- pybind11>=2.13.2,!=2.13.3 ; extra == 'dev'
- setuptools-scm>=7,<10 ; extra == 'dev'
- setuptools>=64 ; extra == 'dev'
requires_python: '>=3.10'
- conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.6-hdb14827_0.conda
sha256: fc89f74bbe362fb29fa3c037697a89bec140b346a2469a90f7936d1d7ea4d8a3
md5: fc21868a1a5aacc937e7a18747acb8a5
depends:
- __glibc >=2.17,<3.0.a0
- libgcc >=14
license: X11 AND BSD-3-Clause
purls: []
size: 918956
timestamp: 1777422145199
- conda: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.6-hcc0dc9a_0.conda
sha256: f5f7e006ff4271305ab4cc08eedd855c67a571793c3d18aff73f645f088a8cae
md5: 31b8740cf1b2588d4e61c81191004061
depends:
- __osx >=11.0
license: X11 AND BSD-3-Clause
purls: []
size: 831711
timestamp: 1777423052277
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.6-h1d4f5a5_0.conda
sha256: 4ea6c620b87bd1d42bb2ccc2c87cd2483fa2d7f9e905b14c223f11ff3f4c455d
md5: 343d10ed5b44030a2f67193905aea159
depends:
- __osx >=11.0
license: X11 AND BSD-3-Clause
purls: []
size: 805509
timestamp: 1777423252320
- pypi: https://files.pythonhosted.org/packages/0a/0d/0e3ecece05b7a7e87ab9fb587855548da437a061326fff64a223b6dcb78a/numpy-2.4.4-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
name: numpy
version: 2.4.4
sha256: 81f4a14bee47aec54f883e0cad2d73986640c1590eb9bfaaba7ad17394481e6e
requires_python: '>=3.11'
- pypi: https://files.pythonhosted.org/packages/28/05/32396bec30fb2263770ee910142f49c1476d08e8ad41abf8403806b520ce/numpy-2.4.4-cp312-cp312-macosx_10_13_x86_64.whl
name: numpy
version: 2.4.4
sha256: 15716cfef24d3a9762e3acdf87e27f58dc823d1348f765bbea6bef8c639bfa1b
requires_python: '>=3.11'
- pypi: https://files.pythonhosted.org/packages/c5/f3/a983d28637bfcd763a9c7aafdb6d5c0ebf3d487d1e1459ffdb57e2f01117/numpy-2.4.4-cp312-cp312-macosx_11_0_arm64.whl
name: numpy
version: 2.4.4
sha256: 23cbfd4c17357c81021f21540da84ee282b9c8fba38a03b7b9d09ba6b951421e
requires_python: '>=3.11'
- conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.6.2-h35e630c_0.conda
sha256: c0ef482280e38c71a08ad6d71448194b719630345b0c9c60744a2010e8a8e0cb
md5: da1b85b6a87e141f5140bb9924cecab0
depends:
- __glibc >=2.17,<3.0.a0
- ca-certificates
- libgcc >=14
license: Apache-2.0
license_family: Apache
purls: []
size: 3167099
timestamp: 1775587756857
- conda: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.6.2-hc881268_0.conda
sha256: 334fd49ea31b99114f5afb1ec44555dc8c90640648302a4f8f838ee345d1ec50
md5: 5cf0ece4375c73d7a5765e83565a69c7
depends:
- __osx >=11.0
- ca-certificates
license: Apache-2.0
license_family: Apache
purls: []
size: 2776564
timestamp: 1775589970694
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.6.2-hd24854e_0.conda
sha256: c91bf510c130a1ea1b6ff023e28bac0ccaef869446acd805e2016f69ebdc49ea
md5: 25dcccd4f80f1638428613e0d7c9b4e1
depends:
- __osx >=11.0
- ca-certificates
license: Apache-2.0
license_family: Apache
purls: []
size: 3106008
timestamp: 1775587972483
- conda: https://conda.anaconda.org/conda-forge/noarch/packaging-26.2-pyhc364b38_0.conda
sha256: 3906abfb6511a3bb309e39b9b1b7bc38f50a723971de2395489fd1f379255890
md5: 4c06a92e74452cfa53623a81592e8934
depends:
- python >=3.8
- python
license: Apache-2.0
license_family: APACHE
purls:
- pkg:pypi/packaging?source=compressed-mapping
size: 91574
timestamp: 1777103621679
- pypi: https://files.pythonhosted.org/packages/35/d0/4831af68ce30cc2d03c697bea8450e3225a835ef497d0d70f31b8cdde965/pandas-3.0.2-cp312-cp312-macosx_11_0_arm64.whl
name: pandas
version: 3.0.2
sha256: 970762605cff1ca0d3f71ed4f3a769ea8f85fc8e6348f6e110b8fea7e6eb5a14
requires_dist:
- numpy>=1.26.0 ; python_full_version < '3.14'
- numpy>=2.3.3 ; python_full_version >= '3.14'
- python-dateutil>=2.8.2
- tzdata ; sys_platform == 'win32'
- tzdata ; sys_platform == 'emscripten'
- hypothesis>=6.116.0 ; extra == 'test'
- pytest>=8.3.4 ; extra == 'test'
- pytest-xdist>=3.6.1 ; extra == 'test'
- pyarrow>=13.0.0 ; extra == 'pyarrow'
- bottleneck>=1.4.2 ; extra == 'performance'
- numba>=0.60.0 ; extra == 'performance'
- numexpr>=2.10.2 ; extra == 'performance'
- scipy>=1.14.1 ; extra == 'computation'
- xarray>=2024.10.0 ; extra == 'computation'
- fsspec>=2024.10.0 ; extra == 'fss'
- s3fs>=2024.10.0 ; extra == 'aws'
- gcsfs>=2024.10.0 ; extra == 'gcp'
- odfpy>=1.4.1 ; extra == 'excel'
- openpyxl>=3.1.5 ; extra == 'excel'
- python-calamine>=0.3.0 ; extra == 'excel'
- pyxlsb>=1.0.10 ; extra == 'excel'
- xlrd>=2.0.1 ; extra == 'excel'
- xlsxwriter>=3.2.0 ; extra == 'excel'
- pyarrow>=13.0.0 ; extra == 'parquet'
- pyarrow>=13.0.0 ; extra == 'feather'
- pyiceberg>=0.8.1 ; extra == 'iceberg'
- tables>=3.10.1 ; extra == 'hdf5'
- pyreadstat>=1.2.8 ; extra == 'spss'
- sqlalchemy>=2.0.36 ; extra == 'postgresql'
- psycopg2>=2.9.10 ; extra == 'postgresql'
- adbc-driver-postgresql>=1.2.0 ; extra == 'postgresql'
- sqlalchemy>=2.0.36 ; extra == 'mysql'
- pymysql>=1.1.1 ; extra == 'mysql'
- sqlalchemy>=2.0.36 ; extra == 'sql-other'
- adbc-driver-postgresql>=1.2.0 ; extra == 'sql-other'
- adbc-driver-sqlite>=1.2.0 ; extra == 'sql-other'
- beautifulsoup4>=4.12.3 ; extra == 'html'
- html5lib>=1.1 ; extra == 'html'
- lxml>=5.3.0 ; extra == 'html'
- lxml>=5.3.0 ; extra == 'xml'
- matplotlib>=3.9.3 ; extra == 'plot'
- jinja2>=3.1.5 ; extra == 'output-formatting'
- tabulate>=0.9.0 ; extra == 'output-formatting'
- pyqt5>=5.15.9 ; extra == 'clipboard'
- qtpy>=2.4.2 ; extra == 'clipboard'
- zstandard>=0.23.0 ; extra == 'compression'
- pytz>=2024.2 ; extra == 'timezone'
- adbc-driver-postgresql>=1.2.0 ; extra == 'all'
- adbc-driver-sqlite>=1.2.0 ; extra == 'all'
- beautifulsoup4>=4.12.3 ; extra == 'all'
- bottleneck>=1.4.2 ; extra == 'all'
- fastparquet>=2024.11.0 ; extra == 'all'
- fsspec>=2024.10.0 ; extra == 'all'
- gcsfs>=2024.10.0 ; extra == 'all'
- html5lib>=1.1 ; extra == 'all'
- hypothesis>=6.116.0 ; extra == 'all'
- jinja2>=3.1.5 ; extra == 'all'
- lxml>=5.3.0 ; extra == 'all'
- matplotlib>=3.9.3 ; extra == 'all'
- numba>=0.60.0 ; extra == 'all'
- numexpr>=2.10.2 ; extra == 'all'
- odfpy>=1.4.1 ; extra == 'all'
- openpyxl>=3.1.5 ; extra == 'all'
- psycopg2>=2.9.10 ; extra == 'all'
- pyarrow>=13.0.0 ; extra == 'all'
- pyiceberg>=0.8.1 ; extra == 'all'
- pymysql>=1.1.1 ; extra == 'all'
- pyqt5>=5.15.9 ; extra == 'all'
- pyreadstat>=1.2.8 ; extra == 'all'
- pytest>=8.3.4 ; extra == 'all'
- pytest-xdist>=3.6.1 ; extra == 'all'
- python-calamine>=0.3.0 ; extra == 'all'
- pytz>=2024.2 ; extra == 'all'
- pyxlsb>=1.0.10 ; extra == 'all'
- qtpy>=2.4.2 ; extra == 'all'
- scipy>=1.14.1 ; extra == 'all'
- s3fs>=2024.10.0 ; extra == 'all'
- sqlalchemy>=2.0.36 ; extra == 'all'
- tables>=3.10.1 ; extra == 'all'
- tabulate>=0.9.0 ; extra == 'all'
- xarray>=2024.10.0 ; extra == 'all'
- xlrd>=2.0.1 ; extra == 'all'
- xlsxwriter>=3.2.0 ; extra == 'all'
- zstandard>=0.23.0 ; extra == 'all'
requires_python: '>=3.11'
- pypi: https://files.pythonhosted.org/packages/c4/a8/3a61a721472959ab0ce865ef05d10b0d6bfe27ce8801c99f33d4fa996e65/pandas-3.0.2-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
name: pandas
version: 3.0.2
sha256: ef8b27695c3d3dc78403c9a7d5e59a62d5464a7e1123b4e0042763f7104dc74f
requires_dist:
- numpy>=1.26.0 ; python_full_version < '3.14'
- numpy>=2.3.3 ; python_full_version >= '3.14'
- python-dateutil>=2.8.2
- tzdata ; sys_platform == 'win32'
- tzdata ; sys_platform == 'emscripten'
- hypothesis>=6.116.0 ; extra == 'test'
- pytest>=8.3.4 ; extra == 'test'
- pytest-xdist>=3.6.1 ; extra == 'test'
- pyarrow>=13.0.0 ; extra == 'pyarrow'
- bottleneck>=1.4.2 ; extra == 'performance'
- numba>=0.60.0 ; extra == 'performance'
- numexpr>=2.10.2 ; extra == 'performance'
- scipy>=1.14.1 ; extra == 'computation'
- xarray>=2024.10.0 ; extra == 'computation'
- fsspec>=2024.10.0 ; extra == 'fss'
- s3fs>=2024.10.0 ; extra == 'aws'
- gcsfs>=2024.10.0 ; extra == 'gcp'
- odfpy>=1.4.1 ; extra == 'excel'
- openpyxl>=3.1.5 ; extra == 'excel'
- python-calamine>=0.3.0 ; extra == 'excel'
- pyxlsb>=1.0.10 ; extra == 'excel'
- xlrd>=2.0.1 ; extra == 'excel'
- xlsxwriter>=3.2.0 ; extra == 'excel'
- pyarrow>=13.0.0 ; extra == 'parquet'
- pyarrow>=13.0.0 ; extra == 'feather'
- pyiceberg>=0.8.1 ; extra == 'iceberg'
- tables>=3.10.1 ; extra == 'hdf5'
- pyreadstat>=1.2.8 ; extra == 'spss'
- sqlalchemy>=2.0.36 ; extra == 'postgresql'
- psycopg2>=2.9.10 ; extra == 'postgresql'
- adbc-driver-postgresql>=1.2.0 ; extra == 'postgresql'
- sqlalchemy>=2.0.36 ; extra == 'mysql'
- pymysql>=1.1.1 ; extra == 'mysql'
- sqlalchemy>=2.0.36 ; extra == 'sql-other'