-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpy-3.14.conda-lock.yml
More file actions
4466 lines (4466 loc) · 130 KB
/
Copy pathpy-3.14.conda-lock.yml
File metadata and controls
4466 lines (4466 loc) · 130 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 lock file was generated by conda-lock (https://github.com/conda/conda-lock). DO NOT EDIT!
#
# A "lock file" contains a concrete list of package versions (with checksums) to be installed. Unlike
# e.g. `conda env create`, the resulting environment will not change as new package versions become
# available, unless you explicitly update the lock file.
#
# Install this environment as "YOURENV" with:
# conda-lock install -n YOURENV py-3.14.conda-lock.yml
# This lock contains optional development dependencies. Include them in the installed environment with:
# conda-lock install --dev-dependencies -n YOURENV py-3.14.conda-lock.yml
# To update a single package to the latest version compatible with the version constraints in the source:
# conda-lock lock --lockfile py-3.14.conda-lock.yml --update PACKAGE
# To re-solve the entire environment, e.g. after changing a version constraint in the source file:
# conda-lock -f pyproject.toml -f environments/env-python-3.14.yml --lockfile py-3.14.conda-lock.yml
version: 1
metadata:
content_hash:
win-64: 7bfb0c555eec9c53e215c07b0292303434371dc40e1f6bea7ba60c052eb94601
linux-64: fcd8bd8bfb67823b63b86ab5edfda4a1914851c303660e815c91dd274d98eb15
channels:
- url: conda-forge
used_env_vars: []
- url: nodefaults
used_env_vars: []
platforms:
- win-64
- linux-64
sources:
- pyproject.toml
- environments/env-python-3.14.yml
package:
- name: _openmp_mutex
version: '4.5'
manager: conda
platform: linux-64
dependencies:
llvm-openmp: '>=9.0.1'
url: https://repo.prefix.dev/conda-forge/linux-64/_openmp_mutex-4.5-7_kmp_llvm.conda
hash:
md5: 887b70e1d607fba7957aa02f9ee0d939
sha256: c0cddb66070dd6355311f7667ce2acccf70d1013edaa6e97f22859502fefdb22
category: main
optional: false
- name: _openmp_mutex
version: '4.5'
manager: conda
platform: win-64
dependencies:
libgomp: '>=7.5.0'
libwinpthread: '>=12.0.0.r4.gg4f2fc60ca'
url: https://repo.prefix.dev/conda-forge/win-64/_openmp_mutex-4.5-20_gnu.conda
hash:
md5: 1626967b574d1784b578b52eaeb071e7
sha256: 8a1cee28bd0ee7451ada1cd50b64720e57e17ff994fc62dd8329bef570d382e4
category: main
optional: false
- name: alabaster
version: 1.0.0
manager: conda
platform: linux-64
dependencies:
python: '>=3.10'
url: https://repo.prefix.dev/conda-forge/noarch/alabaster-1.0.0-pyhd8ed1ab_1.conda
hash:
md5: 1fd9696649f65fd6611fcdb4ffec738a
sha256: 6c4456a138919dae9edd3ac1a74b6fbe5fd66c05675f54df2f8ab8c8d0cc6cea
category: dev
optional: true
- name: alabaster
version: 1.0.0
manager: conda
platform: win-64
dependencies:
python: '>=3.10'
url: https://repo.prefix.dev/conda-forge/noarch/alabaster-1.0.0-pyhd8ed1ab_1.conda
hash:
md5: 1fd9696649f65fd6611fcdb4ffec738a
sha256: 6c4456a138919dae9edd3ac1a74b6fbe5fd66c05675f54df2f8ab8c8d0cc6cea
category: dev
optional: true
- name: annotated-types
version: 0.7.0
manager: conda
platform: linux-64
dependencies:
python: '>=3.9'
typing-extensions: '>=4.0.0'
url: https://repo.prefix.dev/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_1.conda
hash:
md5: 2934f256a8acfe48f6ebb4fce6cde29c
sha256: e0ea1ba78fbb64f17062601edda82097fcf815012cf52bb704150a2668110d48
category: main
optional: false
- name: annotated-types
version: 0.7.0
manager: conda
platform: win-64
dependencies:
python: '>=3.9'
typing-extensions: '>=4.0.0'
url: https://repo.prefix.dev/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_1.conda
hash:
md5: 2934f256a8acfe48f6ebb4fce6cde29c
sha256: e0ea1ba78fbb64f17062601edda82097fcf815012cf52bb704150a2668110d48
category: main
optional: false
- name: astroid
version: 4.0.4
manager: conda
platform: linux-64
dependencies:
python: '>=3.14,<3.15.0a0'
python_abi: 3.14.*
url: https://repo.prefix.dev/conda-forge/linux-64/astroid-4.0.4-py314hdafbbf9_0.conda
hash:
md5: bc30c5eab5cb4daeff7931dd6523e1d7
sha256: 64b35b179ffc0e2409eced094c6280f89c4bbbba5715ae2ba18d37e18e00fce0
category: dev
optional: true
- name: astroid
version: 4.0.4
manager: conda
platform: win-64
dependencies:
python: '>=3.14,<3.15.0a0'
python_abi: 3.14.*
url: https://repo.prefix.dev/conda-forge/win-64/astroid-4.0.4-py314h86ab7b2_0.conda
hash:
md5: d104588051bc8b8c592cfd1ccdbf0a6b
sha256: 18d45f2251b15637c73f3d9a5818601797a9ee89b0bb0203bf810dac27d1294a
category: dev
optional: true
- name: aws-c-auth
version: 0.10.1
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
aws-c-cal: '>=0.9.13,<0.9.14.0a0'
aws-c-common: '>=0.12.6,<0.12.7.0a0'
aws-c-http: '>=0.10.13,<0.10.14.0a0'
aws-c-io: '>=0.26.3,<0.26.4.0a0'
aws-c-sdkutils: '>=0.2.4,<0.2.5.0a0'
libgcc: '>=14'
url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-auth-0.10.1-ha62d5e7_3.conda
hash:
md5: 55eaf7066da1299d217ab32baedc7fa8
sha256: ccbf2cc4bea4aab6e071d67ecc2743197759f6df855787e7a5f57f7973f913a2
category: main
optional: false
- name: aws-c-auth
version: 0.10.1
manager: conda
platform: win-64
dependencies:
aws-c-cal: '>=0.9.13,<0.9.14.0a0'
aws-c-common: '>=0.12.6,<0.12.7.0a0'
aws-c-http: '>=0.10.13,<0.10.14.0a0'
aws-c-io: '>=0.26.3,<0.26.4.0a0'
aws-c-sdkutils: '>=0.2.4,<0.2.5.0a0'
ucrt: '>=10.0.20348.0'
vc: '>=14.3,<15'
vc14_runtime: '>=14.44.35208'
url: https://repo.prefix.dev/conda-forge/win-64/aws-c-auth-0.10.1-h8b39d88_3.conda
hash:
md5: 9f25944ccae498b7afbc81ce24f4c37a
sha256: ffa66e862ddcd8a825c3d44e83404daec7b8d36b7313650e09aa39443c312f5e
category: main
optional: false
- name: aws-c-cal
version: 0.9.13
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
aws-c-common: '>=0.12.6,<0.12.7.0a0'
libgcc: '>=14'
openssl: '>=3.5.4,<4.0a0'
url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-cal-0.9.13-h2c9d079_1.conda
hash:
md5: 3c3d02681058c3d206b562b2e3bc337f
sha256: f21d648349a318f4ae457ea5403d542ba6c0e0343b8642038523dd612b2a5064
category: main
optional: false
- name: aws-c-cal
version: 0.9.13
manager: conda
platform: win-64
dependencies:
aws-c-common: '>=0.12.6,<0.12.7.0a0'
ucrt: '>=10.0.20348.0'
vc: '>=14.3,<15'
vc14_runtime: '>=14.44.35208'
url: https://repo.prefix.dev/conda-forge/win-64/aws-c-cal-0.9.13-h46f3b43_1.conda
hash:
md5: 7cc4953d504d4e8f3d6f4facb8549465
sha256: 5f61082caea9fbdd6ba02702935e9dea9997459a7e6c06fd47f21b81aac882fb
category: main
optional: false
- name: aws-c-common
version: 0.12.6
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc: '>=14'
url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-common-0.12.6-hb03c661_0.conda
hash:
md5: e36ad70a7e0b48f091ed6902f04c23b8
sha256: 926a5b9de0a586e88669d81de717c8dd3218c51ce55658e8a16af7e7fe87c833
category: main
optional: false
- name: aws-c-common
version: 0.12.6
manager: conda
platform: win-64
dependencies:
ucrt: '>=10.0.20348.0'
vc: '>=14.3,<15'
vc14_runtime: '>=14.44.35208'
url: https://repo.prefix.dev/conda-forge/win-64/aws-c-common-0.12.6-hfd05255_0.conda
hash:
md5: b1465f33b05b9af02ad0887c01837831
sha256: 0627691c34eb3d9fcd18c71346d9f16f83e8e58f9983e792138a2cccf387d18a
category: main
optional: false
- name: aws-c-compression
version: 0.3.2
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
aws-c-common: '>=0.12.6,<0.12.7.0a0'
libgcc: '>=14'
url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-compression-0.3.2-h8b1a151_0.conda
hash:
md5: f16f498641c9e05b645fe65902df661a
sha256: 1838bdc077b77168416801f4715335b65e9223f83641a2c28644f8acd8f9db0e
category: main
optional: false
- name: aws-c-compression
version: 0.3.2
manager: conda
platform: win-64
dependencies:
aws-c-common: '>=0.12.6,<0.12.7.0a0'
ucrt: '>=10.0.20348.0'
vc: '>=14.3,<15'
vc14_runtime: '>=14.44.35208'
url: https://repo.prefix.dev/conda-forge/win-64/aws-c-compression-0.3.2-hcb3a2da_0.conda
hash:
md5: 0385f2340be1776b513258adaf70e208
sha256: f98fbb797d28de3ae41dbd42590549ee0a2a4e61772f9cc6d1a4fa45d47637de
category: main
optional: false
- name: aws-c-http
version: 0.10.13
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
aws-c-cal: '>=0.9.13,<0.9.14.0a0'
aws-c-common: '>=0.12.6,<0.12.7.0a0'
aws-c-compression: '>=0.3.2,<0.3.3.0a0'
aws-c-io: '>=0.26.3,<0.26.4.0a0'
libgcc: '>=14'
url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-http-0.10.13-h4bacb7b_0.conda
hash:
md5: 77f70a9ab785a146dbf66fba00131403
sha256: 38cfc8894db6729770ac18f900296c3f7c20f349a5586a8d8e1a62571fce61d5
category: main
optional: false
- name: aws-c-http
version: 0.10.13
manager: conda
platform: win-64
dependencies:
aws-c-cal: '>=0.9.13,<0.9.14.0a0'
aws-c-common: '>=0.12.6,<0.12.7.0a0'
aws-c-compression: '>=0.3.2,<0.3.3.0a0'
aws-c-io: '>=0.26.3,<0.26.4.0a0'
ucrt: '>=10.0.20348.0'
vc: '>=14.3,<15'
vc14_runtime: '>=14.44.35208'
url: https://repo.prefix.dev/conda-forge/win-64/aws-c-http-0.10.13-h612f3e8_0.conda
hash:
md5: 88626be3c14ac87c09629dcbf65e6279
sha256: cf939d4a0849bc41421b4c380b2bbbc0beb1fd9b375bb9627b98d9415ec9ea69
category: main
optional: false
- name: aws-c-io
version: 0.26.3
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
aws-c-cal: '>=0.9.13,<0.9.14.0a0'
aws-c-common: '>=0.12.6,<0.12.7.0a0'
libgcc: '>=14'
s2n: '>=1.7.3,<1.7.4.0a0'
url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-io-0.26.3-hb18f61d_2.conda
hash:
md5: d1337309873c443bcc9f118b67eed84e
sha256: eee7f7aa2c5b9e0a31edba7b81482036fbe751c40bc6697fd057fbd2c656406b
category: main
optional: false
- name: aws-c-io
version: 0.26.3
manager: conda
platform: win-64
dependencies:
aws-c-cal: '>=0.9.13,<0.9.14.0a0'
aws-c-common: '>=0.12.6,<0.12.7.0a0'
ucrt: '>=10.0.20348.0'
vc: '>=14.3,<15'
vc14_runtime: '>=14.44.35208'
url: https://repo.prefix.dev/conda-forge/win-64/aws-c-io-0.26.3-h0d5b9f9_2.conda
hash:
md5: 86eb8e8959c2d6053a50ad31ef6e5b5d
sha256: 7cf5aca930fc12f4e27bd4645d20224d608c2c650443e5633faea3bf8b0a7736
category: main
optional: false
- name: aws-c-s3
version: 0.12.2
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
aws-c-auth: '>=0.10.1,<0.10.2.0a0'
aws-c-cal: '>=0.9.13,<0.9.14.0a0'
aws-c-common: '>=0.12.6,<0.12.7.0a0'
aws-c-http: '>=0.10.13,<0.10.14.0a0'
aws-c-io: '>=0.26.3,<0.26.4.0a0'
aws-checksums: '>=0.2.10,<0.2.11.0a0'
libgcc: '>=14'
openssl: '>=3.5.6,<4.0a0'
url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-s3-0.12.2-he6ee468_1.conda
hash:
md5: 50ae8372984b8b98e056ac8f6b70ab29
sha256: 4cecb4d595b7cf558087c37b8131cae5204b2c64d75f6b951dc3731d3f872bb8
category: main
optional: false
- name: aws-c-s3
version: 0.12.2
manager: conda
platform: win-64
dependencies:
aws-c-auth: '>=0.10.1,<0.10.2.0a0'
aws-c-cal: '>=0.9.13,<0.9.14.0a0'
aws-c-common: '>=0.12.6,<0.12.7.0a0'
aws-c-http: '>=0.10.13,<0.10.14.0a0'
aws-c-io: '>=0.26.3,<0.26.4.0a0'
aws-checksums: '>=0.2.10,<0.2.11.0a0'
ucrt: '>=10.0.20348.0'
vc: '>=14.3,<15'
vc14_runtime: '>=14.44.35208'
url: https://repo.prefix.dev/conda-forge/win-64/aws-c-s3-0.12.2-h61b906f_1.conda
hash:
md5: 2c4cd5a0bb004c9975a4d7257a55c34a
sha256: 8d9c747d71c493e6d5e5a125a267c6ac51baba1e4b89c01c2a4084239267b8e1
category: main
optional: false
- name: aws-c-sdkutils
version: 0.2.4
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
aws-c-common: '>=0.12.6,<0.12.7.0a0'
libgcc: '>=14'
url: https://repo.prefix.dev/conda-forge/linux-64/aws-c-sdkutils-0.2.4-h8b1a151_4.conda
hash:
md5: c7e3e08b7b1b285524ab9d74162ce40b
sha256: 9d62c5029f6f8219368a8665f0a549da572dc777f52413b7d75609cacdbc02cc
category: main
optional: false
- name: aws-c-sdkutils
version: 0.2.4
manager: conda
platform: win-64
dependencies:
aws-c-common: '>=0.12.6,<0.12.7.0a0'
ucrt: '>=10.0.20348.0'
vc: '>=14.3,<15'
vc14_runtime: '>=14.44.35208'
url: https://repo.prefix.dev/conda-forge/win-64/aws-c-sdkutils-0.2.4-hcb3a2da_4.conda
hash:
md5: 3c97faee5be6fd0069410cf2bca71c85
sha256: c86c30edba7457e04d905c959328142603b62d7d1888aed893b2e21cca9c302c
category: main
optional: false
- name: aws-checksums
version: 0.2.10
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
aws-c-common: '>=0.12.6,<0.12.7.0a0'
libgcc: '>=14'
url: https://repo.prefix.dev/conda-forge/linux-64/aws-checksums-0.2.10-h8b1a151_0.conda
hash:
md5: f8e1bcc5c7d839c5882e94498791be08
sha256: 09472dd5fa4473cffd44741ee4c1112f2c76d7168d1343de53c2ad283dc1efa6
category: main
optional: false
- name: aws-checksums
version: 0.2.10
manager: conda
platform: win-64
dependencies:
aws-c-common: '>=0.12.6,<0.12.7.0a0'
ucrt: '>=10.0.20348.0'
vc: '>=14.3,<15'
vc14_runtime: '>=14.44.35208'
url: https://repo.prefix.dev/conda-forge/win-64/aws-checksums-0.2.10-hcb3a2da_0.conda
hash:
md5: 96e950e5007fb691322db578736aba52
sha256: 505b2365bbf3c197c9c2e007ba8262bcdaaddc970f84ce67cf73868ca2990989
category: main
optional: false
- name: babel
version: 2.18.0
manager: conda
platform: linux-64
dependencies:
python: ''
url: https://repo.prefix.dev/conda-forge/noarch/babel-2.18.0-pyhcf101f3_1.conda
hash:
md5: f1976ce927373500cc19d3c0b2c85177
sha256: a14a9ad02101aab25570543a59c5193043b73dc311a25650134ed9e6cb691770
category: dev
optional: true
- name: babel
version: 2.18.0
manager: conda
platform: win-64
dependencies:
python: ''
url: https://repo.prefix.dev/conda-forge/noarch/babel-2.18.0-pyhcf101f3_1.conda
hash:
md5: f1976ce927373500cc19d3c0b2c85177
sha256: a14a9ad02101aab25570543a59c5193043b73dc311a25650134ed9e6cb691770
category: dev
optional: true
- name: backports.zstd
version: 1.5.0
manager: conda
platform: linux-64
dependencies:
python: '>=3.14'
url: https://repo.prefix.dev/conda-forge/noarch/backports.zstd-1.5.0-py314h680f03e_0.conda
hash:
md5: 1133126d840e75287d83947be3fc3e71
sha256: a1c97297e867776760489537bc5ae36fa83a154be30e3b79385a39ca4cb058fe
category: dev
optional: true
- name: backports.zstd
version: 1.5.0
manager: conda
platform: win-64
dependencies:
python: '>=3.14'
url: https://repo.prefix.dev/conda-forge/noarch/backports.zstd-1.5.0-py314h680f03e_0.conda
hash:
md5: 1133126d840e75287d83947be3fc3e71
sha256: a1c97297e867776760489537bc5ae36fa83a154be30e3b79385a39ca4cb058fe
category: dev
optional: true
- name: brotli
version: 1.2.0
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
brotli-bin: 1.2.0
libbrotlidec: 1.2.0
libbrotlienc: 1.2.0
libgcc: '>=14'
url: https://repo.prefix.dev/conda-forge/linux-64/brotli-1.2.0-hed03a55_1.conda
hash:
md5: 8ccf913aaba749a5496c17629d859ed1
sha256: e511644d691f05eb12ebe1e971fd6dc3ae55a4df5c253b4e1788b789bdf2dfa6
category: main
optional: false
- name: brotli
version: 1.2.0
manager: conda
platform: win-64
dependencies:
brotli-bin: 1.2.0
libbrotlidec: 1.2.0
libbrotlienc: 1.2.0
ucrt: '>=10.0.20348.0'
vc: '>=14.3,<15'
vc14_runtime: '>=14.44.35208'
url: https://repo.prefix.dev/conda-forge/win-64/brotli-1.2.0-h2d644bc_1.conda
hash:
md5: bc58fdbced45bb096364de0fba1637af
sha256: a4fffdf1c9b9d3d0d787e20c724cff3a284dfa3773f9ce609c93b1cfd0ce8933
category: main
optional: false
- name: brotli-bin
version: 1.2.0
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libbrotlidec: 1.2.0
libbrotlienc: 1.2.0
libgcc: '>=14'
url: https://repo.prefix.dev/conda-forge/linux-64/brotli-bin-1.2.0-hb03c661_1.conda
hash:
md5: af39b9a8711d4a8d437b52c1d78eb6a1
sha256: 64b137f30b83b1dd61db6c946ae7511657eead59fdf74e84ef0ded219605aa94
category: main
optional: false
- name: brotli-bin
version: 1.2.0
manager: conda
platform: win-64
dependencies:
libbrotlidec: 1.2.0
libbrotlienc: 1.2.0
ucrt: '>=10.0.20348.0'
vc: '>=14.3,<15'
vc14_runtime: '>=14.44.35208'
url: https://repo.prefix.dev/conda-forge/win-64/brotli-bin-1.2.0-hfd05255_1.conda
hash:
md5: 6abd7089eb3f0c790235fe469558d190
sha256: e76966232ef9612de33c2087e3c92c2dc42ea5f300050735a3c646f33bce0429
category: main
optional: false
- name: brotli-python
version: 1.2.0
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc: '>=14'
libstdcxx: '>=14'
python: '>=3.14,<3.15.0a0'
python_abi: 3.14.*
url: https://repo.prefix.dev/conda-forge/linux-64/brotli-python-1.2.0-py314h3de4e8d_1.conda
hash:
md5: 8910d2c46f7e7b519129f486e0fe927a
sha256: 3ad3500bff54a781c29f16ce1b288b36606e2189d0b0ef2f67036554f47f12b0
category: dev
optional: true
- name: brotli-python
version: 1.2.0
manager: conda
platform: win-64
dependencies:
python: '>=3.14,<3.15.0a0'
python_abi: 3.14.*
ucrt: '>=10.0.20348.0'
vc: '>=14.3,<15'
vc14_runtime: '>=14.44.35208'
url: https://repo.prefix.dev/conda-forge/win-64/brotli-python-1.2.0-py314he701e3d_1.conda
hash:
md5: 1302b74b93c44791403cbeee6a0f62a3
sha256: 6854ee7675135c57c73a04849c29cbebc2fb6a3a3bfee1f308e64bf23074719b
category: dev
optional: true
- name: bzip2
version: 1.0.8
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc: '>=14'
url: https://repo.prefix.dev/conda-forge/linux-64/bzip2-1.0.8-hda65f42_9.conda
hash:
md5: d2ffd7602c02f2b316fd921d39876885
sha256: 0b75d45f0bba3e95dc693336fa51f40ea28c980131fec438afb7ce6118ed05f6
category: main
optional: false
- name: bzip2
version: 1.0.8
manager: conda
platform: win-64
dependencies:
ucrt: '>=10.0.20348.0'
vc: '>=14.3,<15'
vc14_runtime: '>=14.44.35208'
url: https://repo.prefix.dev/conda-forge/win-64/bzip2-1.0.8-h0ad9c76_9.conda
hash:
md5: 4cb8e6b48f67de0b018719cdf1136306
sha256: 76dfb71df5e8d1c4eded2dbb5ba15bb8fb2e2b0fe42d94145d5eed4c75c35902
category: main
optional: false
- name: c-ares
version: 1.34.6
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc: '>=14'
url: https://repo.prefix.dev/conda-forge/linux-64/c-ares-1.34.6-hb03c661_0.conda
hash:
md5: 920bb03579f15389b9e512095ad995b7
sha256: cc9accf72fa028d31c2a038460787751127317dcfa991f8d1f1babf216bb454e
category: main
optional: false
- name: ca-certificates
version: 2026.5.20
manager: conda
platform: linux-64
dependencies:
__unix: ''
url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2026.5.20-hbd8a1cb_0.conda
hash:
md5: 489b8e97e666c93f68fdb35c3c9b957f
sha256: 9812a303a1395e1dafbd92e5bc8a1ff6013bcbba0a09c7f03a8d23e43560aa9b
category: main
optional: false
- name: ca-certificates
version: 2026.5.20
manager: conda
platform: win-64
dependencies:
__win: ''
url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2026.5.20-h4c7d964_0.conda
hash:
md5: c9b86eece2f944541b86441c94117ab3
sha256: 86981d764e4ea1883409d30447ff9da46127426d31a63df08315aaded768e652
category: main
optional: false
- name: cached-property
version: 1.5.2
manager: conda
platform: linux-64
dependencies:
cached_property: '>=1.5.2,<1.5.3.0a0'
url: https://repo.prefix.dev/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2
hash:
md5: 9b347a7ec10940d3f7941ff6c460b551
sha256: 561e6660f26c35d137ee150187d89767c988413c978e1b712d53f27ddf70ea17
category: main
optional: false
- name: cached-property
version: 1.5.2
manager: conda
platform: win-64
dependencies:
cached_property: '>=1.5.2,<1.5.3.0a0'
url: https://repo.prefix.dev/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_1.tar.bz2
hash:
md5: 9b347a7ec10940d3f7941ff6c460b551
sha256: 561e6660f26c35d137ee150187d89767c988413c978e1b712d53f27ddf70ea17
category: main
optional: false
- name: cached_property
version: 1.5.2
manager: conda
platform: linux-64
dependencies:
python: '>=3.6'
url: https://repo.prefix.dev/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2
hash:
md5: 576d629e47797577ab0f1b351297ef4a
sha256: 6dbf7a5070cc43d90a1e4c2ec0c541c69d8e30a0e25f50ce9f6e4a432e42c5d7
category: main
optional: false
- name: cached_property
version: 1.5.2
manager: conda
platform: win-64
dependencies:
python: '>=3.6'
url: https://repo.prefix.dev/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2
hash:
md5: 576d629e47797577ab0f1b351297ef4a
sha256: 6dbf7a5070cc43d90a1e4c2ec0c541c69d8e30a0e25f50ce9f6e4a432e42c5d7
category: main
optional: false
- name: certifi
version: 2026.5.20
manager: conda
platform: linux-64
dependencies:
python: '>=3.10'
url: https://repo.prefix.dev/conda-forge/noarch/certifi-2026.5.20-pyhd8ed1ab_0.conda
hash:
md5: 9fefff2f745ea1cc2ef15211a20c054a
sha256: 645655a3510e38e625da136595f3f16f2130c3263630cc3bc8f60f619ddbe490
category: dev
optional: true
- name: certifi
version: 2026.5.20
manager: conda
platform: win-64
dependencies:
python: '>=3.10'
url: https://repo.prefix.dev/conda-forge/noarch/certifi-2026.5.20-pyhd8ed1ab_0.conda
hash:
md5: 9fefff2f745ea1cc2ef15211a20c054a
sha256: 645655a3510e38e625da136595f3f16f2130c3263630cc3bc8f60f619ddbe490
category: dev
optional: true
- name: charset-normalizer
version: 3.4.7
manager: conda
platform: linux-64
dependencies:
python: '>=3.10'
url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.7-pyhd8ed1ab_0.conda
hash:
md5: a9167b9571f3baa9d448faa2139d1089
sha256: 3f9483d62ce24ecd063f8a5a714448445dc8d9e201147c46699fc0033e824457
category: dev
optional: true
- name: charset-normalizer
version: 3.4.7
manager: conda
platform: win-64
dependencies:
python: '>=3.10'
url: https://repo.prefix.dev/conda-forge/noarch/charset-normalizer-3.4.7-pyhd8ed1ab_0.conda
hash:
md5: a9167b9571f3baa9d448faa2139d1089
sha256: 3f9483d62ce24ecd063f8a5a714448445dc8d9e201147c46699fc0033e824457
category: dev
optional: true
- name: colorama
version: 0.4.6
manager: conda
platform: linux-64
dependencies:
python: '>=3.9'
url: https://repo.prefix.dev/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda
hash:
md5: 962b9857ee8e7018c22f2776ffa0b2d7
sha256: ab29d57dc70786c1269633ba3dff20288b81664d3ff8d21af995742e2bb03287
category: dev
optional: true
- name: colorama
version: 0.4.6
manager: conda
platform: win-64
dependencies:
python: '>=3.9'
url: https://repo.prefix.dev/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda
hash:
md5: 962b9857ee8e7018c22f2776ffa0b2d7
sha256: ab29d57dc70786c1269633ba3dff20288b81664d3ff8d21af995742e2bb03287
category: dev
optional: true
- name: contourpy
version: 1.3.3
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc: '>=14'
libstdcxx: '>=14'
numpy: '>=1.25'
python: ''
python_abi: 3.14.*
url: https://repo.prefix.dev/conda-forge/linux-64/contourpy-1.3.3-py314h97ea11e_4.conda
hash:
md5: 95bede9cdb7a30a4b611223d52a01aa4
sha256: b0314a7f1fb4a294b1a8bcf5481d4a8d9412a9fee23b7e3f93fb10e4d504f2cc
category: main
optional: false
- name: contourpy
version: 1.3.3
manager: conda
platform: win-64
dependencies:
numpy: '>=1.25'
python: ''
python_abi: 3.14.*
ucrt: '>=10.0.20348.0'
vc: '>=14.3,<15'
vc14_runtime: '>=14.44.35208'
url: https://repo.prefix.dev/conda-forge/win-64/contourpy-1.3.3-py314hf309875_4.conda
hash:
md5: c26934035616f7d578f9da0491aed3d8
sha256: f141bcbf8e490b49b2f53f517173d13a64d75e43cfae170e0d931cb0b66f4bce
category: main
optional: false
- name: coverage
version: 7.14.1
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc: '>=14'
python: '>=3.14,<3.15.0a0'
python_abi: 3.14.*
tomli: ''
url: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.14.1-py314h67df5f8_0.conda
hash:
md5: 2af0e1fec00680b1b6ef3859585ca8fa
sha256: 4fb298517c0aff45eb449bf4bd484c0f4d0ab36d4e5c1005b7f0312e68330b57
category: dev
optional: true
- name: coverage
version: 7.14.1
manager: conda
platform: win-64
dependencies:
python: '>=3.14,<3.15.0a0'
python_abi: 3.14.*
tomli: ''
ucrt: '>=10.0.20348.0'
vc: '>=14.3,<15'
vc14_runtime: '>=14.44.35208'
url: https://repo.prefix.dev/conda-forge/win-64/coverage-7.14.1-py314h2359020_0.conda
hash:
md5: 442d8dfea629c6a1c46347db9a5ec974
sha256: 9bd2e2e705d44961482bc58339fe3d456cbbdbc16520c607be9609601c39e5ba
category: dev
optional: true
- name: cycler
version: 0.12.1
manager: conda
platform: linux-64
dependencies:
python: ''
url: https://repo.prefix.dev/conda-forge/noarch/cycler-0.12.1-pyhcf101f3_2.conda
hash:
md5: 4c2a8fef270f6c69591889b93f9f55c1
sha256: bb47aec5338695ff8efbddbc669064a3b10fe34ad881fb8ad5d64fbfa6910ed1
category: main
optional: false
- name: cycler
version: 0.12.1
manager: conda
platform: win-64
dependencies:
python: ''
url: https://repo.prefix.dev/conda-forge/noarch/cycler-0.12.1-pyhcf101f3_2.conda
hash:
md5: 4c2a8fef270f6c69591889b93f9f55c1
sha256: bb47aec5338695ff8efbddbc669064a3b10fe34ad881fb8ad5d64fbfa6910ed1
category: main
optional: false
- name: dill
version: 0.4.1
manager: conda
platform: linux-64
dependencies:
python: ''
url: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.1-pyhcf101f3_0.conda
hash:
md5: 080a808fce955026bf82107d955d32da
sha256: 1ef84c0cc4efd0c2d58c3cb365945edbd9ee42a1c54514d1ccba4b641005f757
category: dev
optional: true
- name: dill
version: 0.4.1
manager: conda
platform: win-64
dependencies:
python: ''
url: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.1-pyhcf101f3_0.conda
hash:
md5: 080a808fce955026bf82107d955d32da
sha256: 1ef84c0cc4efd0c2d58c3cb365945edbd9ee42a1c54514d1ccba4b641005f757
category: dev
optional: true
- name: discretize
version: 0.12.0
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc: '>=14'
libstdcxx: '>=14'
numpy: '>=1.23,<3'
python: ''
python_abi: 3.14.*
scipy: '>=1.12'
url: https://repo.prefix.dev/conda-forge/linux-64/discretize-0.12.0-np2py314hb287c12_1.conda
hash:
md5: 938ba04ba3aded18ed474a9e508e9c23
sha256: c96c79d7facb5b4c764593a504bf2b720d89d534b3ab26897ca1eeac27c2412c
category: main
optional: false
- name: discretize
version: 0.12.0
manager: conda
platform: win-64
dependencies:
numpy: '>=1.23,<3'
python: ''
python_abi: 3.14.*
scipy: '>=1.12'
ucrt: '>=10.0.20348.0'
vc: '>=14.3,<15'
vc14_runtime: '>=14.44.35208'
url: https://repo.prefix.dev/conda-forge/win-64/discretize-0.12.0-np2py314h1495373_1.conda
hash:
md5: b8473b159537e85bceea7f1b758b883d
sha256: 68a337dc5fa612be54000d9d111a4722760190b321246fc3386cc245112e675e
category: main
optional: false
- name: docutils
version: 0.21.2
manager: conda
platform: linux-64
dependencies:
python: '>=3.9'
url: https://repo.prefix.dev/conda-forge/noarch/docutils-0.21.2-pyhd8ed1ab_1.conda
hash:
md5: 24c1ca34138ee57de72a943237cde4cc
sha256: fa5966bb1718bbf6967a85075e30e4547901410cc7cb7b16daf68942e9a94823
category: dev
optional: true
- name: docutils
version: 0.21.2
manager: conda
platform: win-64
dependencies:
python: '>=3.9'
url: https://repo.prefix.dev/conda-forge/noarch/docutils-0.21.2-pyhd8ed1ab_1.conda
hash:
md5: 24c1ca34138ee57de72a943237cde4cc
sha256: fa5966bb1718bbf6967a85075e30e4547901410cc7cb7b16daf68942e9a94823
category: dev
optional: true
- name: exceptiongroup
version: 1.3.1
manager: conda
platform: linux-64
dependencies:
python: '>=3.10'
typing_extensions: '>=4.6.0'
url: https://repo.prefix.dev/conda-forge/noarch/exceptiongroup-1.3.1-pyhd8ed1ab_0.conda
hash:
md5: 8e662bd460bda79b1ea39194e3c4c9ab
sha256: ee6cf346d017d954255bbcbdb424cddea4d14e4ed7e9813e429db1d795d01144
category: dev
optional: true
- name: exceptiongroup
version: 1.3.1
manager: conda
platform: win-64
dependencies:
python: '>=3.10'
typing_extensions: '>=4.6.0'
url: https://repo.prefix.dev/conda-forge/noarch/exceptiongroup-1.3.1-pyhd8ed1ab_0.conda
hash:
md5: 8e662bd460bda79b1ea39194e3c4c9ab
sha256: ee6cf346d017d954255bbcbdb424cddea4d14e4ed7e9813e429db1d795d01144
category: dev
optional: true
- name: fonttools
version: 4.63.0
manager: conda
platform: linux-64
dependencies:
brotli: ''
munkres: ''
python: '>=3.10'
unicodedata2: '>=15.1.0'
url: https://repo.prefix.dev/conda-forge/noarch/fonttools-4.63.0-pyh7db6752_0.conda
hash:
md5: 0509ee74d95e5b98eb6fe2a47760e399
sha256: c9752235f1ff7061d834e5e4a3d0adf71ebeeff2b3fad82dab607edce7f70c91
category: main
optional: false
- name: fonttools
version: 4.63.0
manager: conda
platform: win-64
dependencies:
brotli: ''
munkres: ''
python: '>=3.10'
unicodedata2: '>=15.1.0'
url: https://repo.prefix.dev/conda-forge/noarch/fonttools-4.63.0-pyh7db6752_0.conda
hash:
md5: 0509ee74d95e5b98eb6fe2a47760e399
sha256: c9752235f1ff7061d834e5e4a3d0adf71ebeeff2b3fad82dab607edce7f70c91
category: main
optional: false
- name: freetype
version: 2.14.3
manager: conda
platform: linux-64
dependencies:
libfreetype: 2.14.3
libfreetype6: 2.14.3
url: https://repo.prefix.dev/conda-forge/linux-64/freetype-2.14.3-ha770c72_0.conda
hash:
md5: 8462b5322567212beeb025f3519fb3e2
sha256: c934c385889c7836f034039b43b05ccfa98f53c900db03d8411189892ced090b
category: main
optional: false
- name: freetype
version: 2.14.3
manager: conda
platform: win-64
dependencies:
libfreetype: 2.14.3
libfreetype6: 2.14.3
url: https://repo.prefix.dev/conda-forge/win-64/freetype-2.14.3-h57928b3_0.conda