-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpy-3.12.conda-lock.yml
More file actions
3163 lines (3163 loc) · 91.5 KB
/
py-3.12.conda-lock.yml
File metadata and controls
3163 lines (3163 loc) · 91.5 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.12.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.12.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.12.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.12.yml --lockfile py-3.12.conda-lock.yml
version: 1
metadata:
content_hash:
win-64: 72d041affd908a3bab6cced5dcc055f7bcc9462d404ab73712ebf6d1779343a4
linux-64: a88138472d5cf703033124b201e9efe5ddfd314346943b826d2af3fe2a691cdf
channels:
- url: conda-forge
used_env_vars: []
- url: nodefaults
used_env_vars: []
platforms:
- win-64
- linux-64
sources:
- pyproject.toml
- environments/env-python-3.12.yml
package:
- name: _openmp_mutex
version: '4.5'
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgomp: '>=7.5.0'
url: https://repo.prefix.dev/conda-forge/linux-64/_openmp_mutex-4.5-20_gnu.conda
hash:
md5: a9f577daf3de00bca7c3c76c0ecbd1de
sha256: 1dd3fffd892081df9726d7eb7e0dea6198962ba775bd88842135a4ddb4deb3c9
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: 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.12,<3.13.0a0'
python_abi: 3.12.*
url: https://repo.prefix.dev/conda-forge/linux-64/astroid-4.0.4-py312h7900ff3_0.conda
hash:
md5: 78bdb6d3da524bdea10ef44e5ec7658d
sha256: 50d706c0700ee47617de6a850cab0bb4a3419c2ed86804c21f449735f09e1c48
category: dev
optional: true
- name: astroid
version: 4.0.4
manager: conda
platform: win-64
dependencies:
python: '>=3.12,<3.13.0a0'
python_abi: 3.12.*
url: https://repo.prefix.dev/conda-forge/win-64/astroid-4.0.4-py312h2e8e312_0.conda
hash:
md5: 0cec3709c887fd21483f9fe36d039bac
sha256: 24916ad967b6b0d25c6ed2cff1e61b17f4f72d0c73cbdc5f2afdd55dcc0a36b5
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: 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.1.4
manager: conda
platform: linux-64
dependencies:
__unix: ''
url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2026.1.4-hbd8a1cb_0.conda
hash:
md5: bddacf101bb4dd0e51811cb69c7790e2
sha256: b5974ec9b50e3c514a382335efa81ed02b05906849827a34061c496f4defa0b2
category: main
optional: false
- name: ca-certificates
version: 2026.1.4
manager: conda
platform: win-64
dependencies:
__win: ''
url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2026.1.4-h4c7d964_0.conda
hash:
md5: 84d389c9eee640dda3d26fc5335c67d8
sha256: 4ddcb01be03f85d3db9d881407fb13a673372f1b9fac9c836ea441893390e049
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: 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.12.*
url: https://repo.prefix.dev/conda-forge/linux-64/contourpy-1.3.3-py312h0a2e395_4.conda
hash:
md5: 43c2bc96af3ae5ed9e8a10ded942aa50
sha256: 62447faf7e8eb691e407688c0b4b7c230de40d5ecf95bf301111b4d05c5be473
category: main
optional: false
- name: contourpy
version: 1.3.3
manager: conda
platform: win-64
dependencies:
numpy: '>=1.25'
python: ''
python_abi: 3.12.*
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-py312h78d62e6_4.conda
hash:
md5: 475bd41a63e613f2f2a2764cd1cd3b25
sha256: 5f0dd3a4243e8293acc40abf3b11bcb23401268a1ef2ed3bce4d5a060383c1da
category: main
optional: false
- name: coverage
version: 7.13.4
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc: '>=14'
python: '>=3.12,<3.13.0a0'
python_abi: 3.12.*
tomli: ''
url: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.13.4-py312h8a5da7c_0.conda
hash:
md5: a8df7f0812ac4fa6bbc7135556d3e2c4
sha256: 2c785feaf79c31981ef4a87e41ea1161e1ce6b740ce3f1fb9cf44245cae5cf29
category: dev
optional: true
- name: coverage
version: 7.13.4
manager: conda
platform: win-64
dependencies:
python: '>=3.12,<3.13.0a0'
python_abi: 3.12.*
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.13.4-py312h05f76fc_0.conda
hash:
md5: 19f19b2b7c41495cb27c04419acb8aaf
sha256: abcb257f21e8481dfff9b388e12c5df3dd1a335228785d5e900f9fb22197627a
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: '>=3.10'
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: '>=3.10'
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: 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.61.1
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
brotli: ''
libgcc: '>=14'
munkres: ''
python: '>=3.12,<3.13.0a0'
python_abi: 3.12.*
unicodedata2: '>=15.1.0'
url: https://repo.prefix.dev/conda-forge/linux-64/fonttools-4.61.1-py312h8a5da7c_0.conda
hash:
md5: 3bf8fb959dc598c67dac0430b4aff57a
sha256: c73cd238e0f6b2183c5168b64aa35a7eb66bb145192a9b26bb9041a4152844a3
category: main
optional: false
- name: fonttools
version: 4.61.1
manager: conda
platform: win-64
dependencies:
brotli: ''
munkres: ''
python: '>=3.12,<3.13.0a0'
python_abi: 3.12.*
ucrt: '>=10.0.20348.0'
unicodedata2: '>=15.1.0'
vc: '>=14.3,<15'
vc14_runtime: '>=14.44.35208'
url: https://repo.prefix.dev/conda-forge/win-64/fonttools-4.61.1-py312h05f76fc_0.conda
hash:
md5: 449a1487319070f736382d2b53bb5aec
sha256: 49df76416b253429ea7ff907e03215f2bb1450c03908b7e413a8bdd85154eded
category: main
optional: false
- name: freetype
version: 2.14.1
manager: conda
platform: linux-64
dependencies:
libfreetype: 2.14.1
libfreetype6: 2.14.1
url: https://repo.prefix.dev/conda-forge/linux-64/freetype-2.14.1-ha770c72_0.conda
hash:
md5: 4afc585cd97ba8a23809406cd8a9eda8
sha256: bf8e4dffe46f7d25dc06f31038cacb01672c47b9f45201f065b0f4d00ab0a83e
category: main
optional: false
- name: freetype
version: 2.14.1
manager: conda
platform: win-64
dependencies:
libfreetype: 2.14.1
libfreetype6: 2.14.1
url: https://repo.prefix.dev/conda-forge/win-64/freetype-2.14.1-h57928b3_0.conda
hash:
md5: d69c21967f35eb2ce7f1f85d6b6022d3
sha256: a9b3313edea0bf14ea6147ea43a1059d0bf78771a1336d2c8282891efc57709a
category: main
optional: false
- name: h5py
version: 3.15.1
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
cached-property: ''
hdf5: '>=1.14.6,<1.14.7.0a0'
libgcc: '>=14'
numpy: '>=1.23,<3'
python: '>=3.12,<3.13.0a0'
python_abi: 3.12.*
url: https://repo.prefix.dev/conda-forge/linux-64/h5py-3.15.1-nompi_py312ha4f8f14_101.conda
hash:
md5: 23965cb240cb534649dfe2327ecec4fa
sha256: bb5cefbe5b54195a54f749189fc6797568d52e8790b2f542143c681b98a92b71
category: main
optional: false
- name: h5py
version: 3.15.1
manager: conda
platform: win-64
dependencies:
cached-property: ''
hdf5: '>=1.14.6,<1.14.7.0a0'
numpy: '>=1.23,<3'
python: '>=3.12,<3.13.0a0'
python_abi: 3.12.*
ucrt: '>=10.0.20348.0'
vc: '>=14.3,<15'
vc14_runtime: '>=14.44.35208'
url: https://repo.prefix.dev/conda-forge/win-64/h5py-3.15.1-nompi_py312h03cd2ba_101.conda
hash:
md5: 555b01f3a74e7ca56445c20555b78cff
sha256: 15ddb5420b289cd048ffef089514c31cdc90c77d5cef7e36667563335be2769d
category: main
optional: false
- name: hdf5
version: 1.14.6
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libaec: '>=1.1.5,<2.0a0'
libcurl: '>=8.18.0,<9.0a0'
libgcc: '>=14'
libgfortran: ''
libgfortran5: '>=14.3.0'
libstdcxx: '>=14'
libzlib: '>=1.3.1,<2.0a0'
openssl: '>=3.5.5,<4.0a0'
url: https://repo.prefix.dev/conda-forge/linux-64/hdf5-1.14.6-nompi_h19486de_106.conda
hash:
md5: c223ee1429ba538f3e48cfb4a0b97357
sha256: 1fc50ce3b86710fba3ec9c5714f1612b5ffa4230d70bfe43e2a1436eacba1621
category: main
optional: false
- name: hdf5
version: 1.14.6
manager: conda
platform: win-64
dependencies:
libaec: '>=1.1.5,<2.0a0'
libcurl: '>=8.18.0,<9.0a0'
libzlib: '>=1.3.1,<2.0a0'
openssl: '>=3.5.5,<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/hdf5-1.14.6-nompi_hae35d4c_106.conda
hash:
md5: e2fb54650b51dcd92dfcbf42d2222ff8
sha256: d9f8f202ee91ae93515b18c498970f178dfd061743f25a65a205f848e197437f
category: main
optional: false
- name: icu
version: '78.2'
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc: '>=14'
libstdcxx: '>=14'
url: https://repo.prefix.dev/conda-forge/linux-64/icu-78.2-h33c6efd_0.conda
hash:
md5: 186a18e3ba246eccfc7cff00cd19a870
sha256: 142a722072fa96cf16ff98eaaf641f54ab84744af81754c292cb81e0881c0329
category: main
optional: false
- name: icu
version: '78.2'
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/icu-78.2-h637d24d_0.conda
hash:
md5: 0ee3bb487600d5e71ab7d28951b2016a
sha256: 5a41fb28971342e293769fc968b3414253a2f8d9e30ed7c31517a15b4887246a
category: main
optional: false
- name: importlib-metadata
version: 8.7.0
manager: conda
platform: linux-64
dependencies:
python: ''
zipp: '>=3.20'
url: https://repo.prefix.dev/conda-forge/noarch/importlib-metadata-8.7.0-pyhe01879c_1.conda
hash:
md5: 63ccfdc3a3ce25b027b8767eb722fca8
sha256: c18ab120a0613ada4391b15981d86ff777b5690ca461ea7e9e49531e8f374745
category: dev
optional: true
- name: importlib-metadata
version: 8.7.0
manager: conda
platform: win-64
dependencies:
python: '>=3.9'
zipp: '>=3.20'
url: https://repo.prefix.dev/conda-forge/noarch/importlib-metadata-8.7.0-pyhe01879c_1.conda
hash:
md5: 63ccfdc3a3ce25b027b8767eb722fca8
sha256: c18ab120a0613ada4391b15981d86ff777b5690ca461ea7e9e49531e8f374745
category: dev
optional: true
- name: iniconfig
version: 2.3.0
manager: conda
platform: linux-64
dependencies:
python: '>=3.10'
url: https://repo.prefix.dev/conda-forge/noarch/iniconfig-2.3.0-pyhd8ed1ab_0.conda
hash:
md5: 9614359868482abba1bd15ce465e3c42
sha256: e1a9e3b1c8fe62dc3932a616c284b5d8cbe3124bbfbedcf4ce5c828cb166ee19
category: dev
optional: true
- name: iniconfig
version: 2.3.0
manager: conda
platform: win-64
dependencies:
python: '>=3.10'
url: https://repo.prefix.dev/conda-forge/noarch/iniconfig-2.3.0-pyhd8ed1ab_0.conda
hash:
md5: 9614359868482abba1bd15ce465e3c42
sha256: e1a9e3b1c8fe62dc3932a616c284b5d8cbe3124bbfbedcf4ce5c828cb166ee19
category: dev
optional: true
- name: isort
version: 7.0.0
manager: conda
platform: linux-64
dependencies:
importlib-metadata: '>=4.6.0'
python: '>=3.10,<4.0'
url: https://repo.prefix.dev/conda-forge/noarch/isort-7.0.0-pyhd8ed1ab_0.conda
hash:
md5: 55a61979242077b2cc377c74326ea9f0
sha256: 13b0005877f553eb2e5c50447c9d0047e7257124ec2d1569d7dad35697790237
category: dev
optional: true
- name: isort
version: 7.0.0
manager: conda
platform: win-64
dependencies:
importlib-metadata: '>=4.6.0'
python: '>=3.10,<4.0'
url: https://repo.prefix.dev/conda-forge/noarch/isort-7.0.0-pyhd8ed1ab_0.conda
hash:
md5: 55a61979242077b2cc377c74326ea9f0
sha256: 13b0005877f553eb2e5c50447c9d0047e7257124ec2d1569d7dad35697790237
category: dev
optional: true
- name: keyutils
version: 1.6.3
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc: '>=13'
url: https://repo.prefix.dev/conda-forge/linux-64/keyutils-1.6.3-hb9d3cd8_0.conda
hash:
md5: b38117a3c920364aff79f870c984b4a3
sha256: 0960d06048a7185d3542d850986d807c6e37ca2e644342dd0c72feefcf26c2a4
category: main
optional: false
- name: kiwisolver
version: 1.4.9
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc: '>=14'
libstdcxx: '>=14'
python: ''
python_abi: 3.12.*
url: https://repo.prefix.dev/conda-forge/linux-64/kiwisolver-1.4.9-py312h0a2e395_2.conda
hash:
md5: 3a3004fddd39e3bb1a631b08d7045156
sha256: 170d76b7ac7197012bb048e1021482a7b2455f3592a5e8d97c96f285ebad064b
category: main
optional: false
- name: kiwisolver
version: 1.4.9
manager: conda
platform: win-64
dependencies:
python: ''
python_abi: 3.12.*
ucrt: '>=10.0.20348.0'
vc: '>=14.3,<15'
vc14_runtime: '>=14.44.35208'
url: https://repo.prefix.dev/conda-forge/win-64/kiwisolver-1.4.9-py312h78d62e6_2.conda
hash:
md5: 5dabe50380555cf2e89bd58173e88739
sha256: 98d4946312b570bea37260b51cdc4dbc4847735703877580fc3566166623c8a5
category: main
optional: false
- name: krb5
version: 1.22.2
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
keyutils: '>=1.6.3,<2.0a0'
libedit: '>=3.1.20250104,<4.0a0'
libgcc: '>=14'
libstdcxx: '>=14'
openssl: '>=3.5.5,<4.0a0'
url: https://repo.prefix.dev/conda-forge/linux-64/krb5-1.22.2-ha1258a1_0.conda
hash:
md5: fb53fb07ce46a575c5d004bbc96032c2
sha256: 3e307628ca3527448dd1cb14ad7bb9d04d1d28c7d4c5f97ba196ae984571dd25
category: main
optional: false
- name: krb5
version: 1.22.2
manager: conda
platform: win-64
dependencies:
openssl: '>=3.5.5,<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/krb5-1.22.2-h0ea6238_0.conda
hash:
md5: 4432f52dc0c8eb6a7a6abc00a037d93c
sha256: eb60f1ad8b597bcf95dee11bc11fe71a8325bc1204cf51d2bb1f2120ffd77761
category: main
optional: false
- name: lcms2
version: '2.18'
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc: '>=14'
libjpeg-turbo: '>=3.1.2,<4.0a0'
libtiff: '>=4.7.1,<4.8.0a0'
url: https://repo.prefix.dev/conda-forge/linux-64/lcms2-2.18-h0c24ade_0.conda
hash:
md5: 6f2e2c8f58160147c4d1c6f4c14cbac4
sha256: 836ec4b895352110335b9fdcfa83a8dcdbe6c5fb7c06c4929130600caea91c0a
category: main
optional: false
- name: lcms2
version: '2.18'
manager: conda
platform: win-64
dependencies:
libjpeg-turbo: '>=3.1.2,<4.0a0'
libtiff: '>=4.7.1,<4.8.0a0'
ucrt: '>=10.0.20348.0'
vc: '>=14.3,<15'
vc14_runtime: '>=14.44.35208'
url: https://repo.prefix.dev/conda-forge/win-64/lcms2-2.18-hf2c6c5f_0.conda
hash:
md5: b6c68d6b829b044cd17a41e0a8a23ca1
sha256: 7eeb18c5c86db146b62da66d9e8b0e753a52987f9134a494309588bbeceddf28
category: main
optional: false
- name: ld_impl_linux-64
version: 2.45.1
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
zstd: '>=1.5.7,<1.6.0a0'
url: https://repo.prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.45.1-default_hbd61a6d_101.conda
hash:
md5: 12bd9a3f089ee6c9266a37dab82afabd
sha256: 565941ac1f8b0d2f2e8f02827cbca648f4d18cd461afc31f15604cd291b5c5f3
category: main
optional: false
- name: lerc
version: 4.0.0
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc: '>=13'
libstdcxx: '>=13'
url: https://repo.prefix.dev/conda-forge/linux-64/lerc-4.0.0-h0aef613_1.conda
hash:
md5: 9344155d33912347b37f0ae6c410a835
sha256: 412381a43d5ff9bbed82cd52a0bbca5b90623f62e41007c9c42d3870c60945ff
category: main
optional: false
- name: lerc
version: 4.0.0
manager: conda
platform: win-64
dependencies:
ucrt: '>=10.0.20348.0'
vc: '>=14.2,<15'
vc14_runtime: '>=14.29.30139'
url: https://repo.prefix.dev/conda-forge/win-64/lerc-4.0.0-h6470a55_1.conda
hash:
md5: c1b81da6d29a14b542da14a36c9fbf3f
sha256: 868a3dff758cc676fa1286d3f36c3e0101cca56730f7be531ab84dc91ec58e9d
category: main
optional: false
- name: libaec
version: 1.1.5
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc: '>=14'
libstdcxx: '>=14'
url: https://repo.prefix.dev/conda-forge/linux-64/libaec-1.1.5-h088129d_0.conda
hash:
md5: 86f7414544ae606282352fa1e116b41f
sha256: 822e4ae421a7e9c04e841323526321185f6659222325e1a9aedec811c686e688
category: main
optional: false
- name: libaec
version: 1.1.5
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/libaec-1.1.5-haf901d7_0.conda
hash:
md5: 43b6385cfad52a7083f2c41984eb4e91
sha256: e54c08964262c73671d9e80e400333e59c617e0b454476ad68933c0c458156c8
category: main
optional: false
- name: libblas
version: 3.11.0
manager: conda
platform: linux-64
dependencies:
libopenblas: '>=0.3.30,<1.0a0'
url: https://repo.prefix.dev/conda-forge/linux-64/libblas-3.11.0-5_h4a7cf45_openblas.conda
hash:
md5: c160954f7418d7b6e87eaf05a8913fa9
sha256: 18c72545080b86739352482ba14ba2c4815e19e26a7417ca21a95b76ec8da24c
category: main
optional: false
- name: libblas
version: 3.11.0
manager: conda
platform: win-64
dependencies:
mkl: '>=2025.3.0,<2026.0a0'
url: https://repo.prefix.dev/conda-forge/win-64/libblas-3.11.0-5_hf2e6a31_mkl.conda
hash:
md5: f9decf88743af85c9c9e05556a4c47c0
sha256: f0cb7b2697461a306341f7ff32d5b361bb84f3e94478464c1e27ee01fc8f276b
category: main
optional: false
- name: libbrotlicommon
version: 1.2.0
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc: '>=14'
url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlicommon-1.2.0-hb03c661_1.conda
hash:
md5: 72c8fd1af66bd67bf580645b426513ed
sha256: 318f36bd49ca8ad85e6478bd8506c88d82454cc008c1ac1c6bf00a3c42fa610e
category: main
optional: false
- name: libbrotlicommon
version: 1.2.0
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/libbrotlicommon-1.2.0-hfd05255_1.conda
hash:
md5: 444b0a45bbd1cb24f82eedb56721b9c4
sha256: 5097303c2fc8ebf9f9ea9731520aa5ce4847d0be41764edd7f6dee2100b82986
category: main
optional: false
- name: libbrotlidec
version: 1.2.0
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libbrotlicommon: 1.2.0
libgcc: '>=14'
url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlidec-1.2.0-hb03c661_1.conda
hash:
md5: 366b40a69f0ad6072561c1d09301c886
sha256: 12fff21d38f98bc446d82baa890e01fd82e3b750378fedc720ff93522ffb752b
category: main
optional: false
- name: libbrotlidec
version: 1.2.0
manager: conda
platform: win-64
dependencies:
libbrotlicommon: 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/libbrotlidec-1.2.0-hfd05255_1.conda
hash:
md5: 450e3ae947fc46b60f1d8f8f318b40d4
sha256: 3239ce545cf1c32af6fffb7fc7c75cb1ef5b6ea8221c66c85416bb2d46f5cccb
category: main
optional: false
- name: libbrotlienc
version: 1.2.0
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libbrotlicommon: 1.2.0
libgcc: '>=14'
url: https://repo.prefix.dev/conda-forge/linux-64/libbrotlienc-1.2.0-hb03c661_1.conda
hash:
md5: 4ffbb341c8b616aa2494b6afb26a0c5f
sha256: a0c15c79997820bbd3fbc8ecf146f4fe0eca36cc60b62b63ac6cf78857f1dd0d
category: main
optional: false
- name: libbrotlienc
version: 1.2.0
manager: conda
platform: win-64
dependencies:
libbrotlicommon: 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/libbrotlienc-1.2.0-hfd05255_1.conda
hash:
md5: ccd93cfa8e54fd9df4e83dbe55ff6e8c
sha256: 3226df6b7df98734440739f75527d585d42ca2bfe912fbe8d1954c512f75341a
category: main
optional: false
- name: libcblas
version: 3.11.0
manager: conda
platform: linux-64
dependencies:
libblas: 3.11.0
url: https://repo.prefix.dev/conda-forge/linux-64/libcblas-3.11.0-5_h0358290_openblas.conda
hash:
md5: 6636a2b6f1a87572df2970d3ebc87cc0
sha256: 0cbdcc67901e02dc17f1d19e1f9170610bd828100dc207de4d5b6b8ad1ae7ad8
category: main
optional: false
- name: libcblas
version: 3.11.0
manager: conda
platform: win-64
dependencies:
libblas: 3.11.0
url: https://repo.prefix.dev/conda-forge/win-64/libcblas-3.11.0-5_h2a3cdd5_mkl.conda
hash:
md5: b3fa8e8b55310ba8ef0060103afb02b5
sha256: 49dc59d8e58360920314b8d276dd80da7866a1484a9abae4ee2760bc68f3e68d