-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconda-lock.yml
More file actions
5109 lines (5109 loc) · 149 KB
/
Copy pathconda-lock.yml
File metadata and controls
5109 lines (5109 loc) · 149 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 conda-lock.yml
# To update a single package to the latest version compatible with the version constraints in the source:
# conda-lock lock --lockfile 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 environment.yml --lockfile conda-lock.yml
version: 1
metadata:
content_hash:
linux-64: 040e71a4c52befbe9272759340b72f31ec0f0157277d0cd07a4458d25a91409b
channels:
- url: conda-forge
used_env_vars: []
platforms:
- linux-64
sources:
- environment.yml
package:
- name: _openmp_mutex
version: '4.5'
manager: conda
platform: linux-64
dependencies:
llvm-openmp: '>=9.0.1'
url: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-7_kmp_llvm.conda
hash:
md5: 887b70e1d607fba7957aa02f9ee0d939
sha256: c0cddb66070dd6355311f7667ce2acccf70d1013edaa6e97f22859502fefdb22
category: main
optional: false
- name: _python_abi3_support
version: '1.0'
manager: conda
platform: linux-64
dependencies:
cpython: ''
python-gil: ''
url: https://conda.anaconda.org/conda-forge/noarch/_python_abi3_support-1.0-hd8ed1ab_2.conda
hash:
md5: aaa2a381ccc56eac91d63b6c1240312f
sha256: a3967b937b9abf0f2a99f3173fa4630293979bd1644709d89580e7c62a544661
category: main
optional: false
- name: aiohappyeyeballs
version: 2.6.1
manager: conda
platform: linux-64
dependencies:
python: '>=3.9'
url: https://conda.anaconda.org/conda-forge/noarch/aiohappyeyeballs-2.6.1-pyhd8ed1ab_0.conda
hash:
md5: 18fd895e0e775622906cdabfc3cf0fb4
sha256: 7842ddc678e77868ba7b92a726b437575b23aaec293bca0d40826f1026d90e27
category: main
optional: false
- name: aiohttp
version: 3.13.5
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
aiohappyeyeballs: '>=2.5.0'
aiosignal: '>=1.4.0'
attrs: '>=17.3.0'
frozenlist: '>=1.1.1'
libgcc: '>=14'
multidict: '>=4.5,<7.0'
propcache: '>=0.2.0'
python: '>=3.11,<3.12.0a0'
python_abi: 3.11.*
yarl: '>=1.17.0,<2.0'
url: https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.13.5-py311h55b9665_0.conda
hash:
md5: 0fdb7435f551898c33b0017423e4fb53
sha256: 08ca6a6c936708a188e3f86c29c678e8ea7ec1114a5346fee4cd80a0a3ded3d7
category: main
optional: false
- name: aiosignal
version: 1.4.0
manager: conda
platform: linux-64
dependencies:
frozenlist: '>=1.1.0'
python: '>=3.9'
typing_extensions: '>=4.2'
url: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.4.0-pyhd8ed1ab_0.conda
hash:
md5: 421a865222cd0c9d83ff08bc78bf3a61
sha256: 8dc149a6828d19bf104ea96382a9d04dae185d4a03cc6beb1bc7b84c428e3ca2
category: main
optional: false
- name: alsa-lib
version: 1.2.15.3
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc: '>=14'
url: https://conda.anaconda.org/conda-forge/linux-64/alsa-lib-1.2.15.3-hb03c661_0.conda
hash:
md5: dcdc58c15961dbf17a0621312b01f5cb
sha256: d88aa7ae766cf584e180996e92fef2aa7d8e0a0a5ab1d4d49c32390c1b5fff31
category: main
optional: false
- name: annotated-doc
version: 0.0.4
manager: conda
platform: linux-64
dependencies:
python: ''
url: https://conda.anaconda.org/conda-forge/noarch/annotated-doc-0.0.4-pyhcf101f3_0.conda
hash:
md5: 52be5139047efadaeeb19c6a5103f92a
sha256: cc9fbc50d4ee7ee04e49ee119243e6f1765750f0fd0b4d270d5ef35461b643b1
category: main
optional: false
- name: attrs
version: 26.1.0
manager: conda
platform: linux-64
dependencies:
python: ''
url: https://conda.anaconda.org/conda-forge/noarch/attrs-26.1.0-pyhcf101f3_0.conda
hash:
md5: c6b0543676ecb1fb2d7643941fe375f2
sha256: 1b6124230bb4e571b1b9401537ecff575b7b109cc3a21ee019f65e083b8399ab
category: main
optional: false
- name: backports.zstd
version: 1.3.0
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc: '>=14'
python: ''
python_abi: 3.11.*
zstd: '>=1.5.7,<1.6.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/backports.zstd-1.3.0-py311h6b1f9c4_0.conda
hash:
md5: adda5ef2a74c9bdb338ff8a51192898a
sha256: 246e50ec7fc222875c6ecfa3feab77f5661dc43e26397bc01d9e0310e3cd48a0
category: main
optional: false
- name: binutils_impl_linux-64
version: 2.45.1
manager: conda
platform: linux-64
dependencies:
ld_impl_linux-64: 2.45.1
sysroot_linux-64: ''
zstd: '>=1.5.7,<1.6.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/binutils_impl_linux-64-2.45.1-default_hfdba357_102.conda
hash:
md5: 8165352fdce2d2025bf884dc0ee85700
sha256: 0a7d405064f53b9d91d92515f1460f7906ee5e8523f3cd8973430e81219f4917
category: main
optional: false
- name: blosc
version: 1.21.6
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc: '>=13'
libstdcxx: '>=13'
libzlib: '>=1.3.1,<2.0a0'
lz4-c: '>=1.10.0,<1.11.0a0'
snappy: '>=1.2.1,<1.3.0a0'
zstd: '>=1.5.6,<1.6.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/blosc-1.21.6-he440d0b_1.conda
hash:
md5: 2c2fae981fd2afd00812c92ac47d023d
sha256: e7af5d1183b06a206192ff440e08db1c4e8b2ca1f8376ee45fb2f3a85d4ee45d
category: main
optional: false
- 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://conda.anaconda.org/conda-forge/linux-64/brotli-1.2.0-hed03a55_1.conda
hash:
md5: 8ccf913aaba749a5496c17629d859ed1
sha256: e511644d691f05eb12ebe1e971fd6dc3ae55a4df5c253b4e1788b789bdf2dfa6
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://conda.anaconda.org/conda-forge/linux-64/brotli-bin-1.2.0-hb03c661_1.conda
hash:
md5: af39b9a8711d4a8d437b52c1d78eb6a1
sha256: 64b137f30b83b1dd61db6c946ae7511657eead59fdf74e84ef0ded219605aa94
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.11,<3.12.0a0'
python_abi: 3.11.*
url: https://conda.anaconda.org/conda-forge/linux-64/brotli-python-1.2.0-py311h66f275b_1.conda
hash:
md5: 86daecb8e4ed1042d5dc6efbe0152590
sha256: c36eb061d9ead85f97644cfb740d485dba9b8823357f35c17851078e95e975c1
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://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-hda65f42_9.conda
hash:
md5: d2ffd7602c02f2b316fd921d39876885
sha256: 0b75d45f0bba3e95dc693336fa51f40ea28c980131fec438afb7ce6118ed05f6
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://conda.anaconda.org/conda-forge/linux-64/c-ares-1.34.6-hb03c661_0.conda
hash:
md5: 920bb03579f15389b9e512095ad995b7
sha256: cc9accf72fa028d31c2a038460787751127317dcfa991f8d1f1babf216bb454e
category: main
optional: false
- name: c-blosc2
version: 2.23.1
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc: '>=14'
libstdcxx: '>=14'
lz4-c: '>=1.10.0,<1.11.0a0'
zlib-ng: '>=2.3.3,<2.4.0a0'
zstd: '>=1.5.7,<1.6.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/c-blosc2-2.23.1-hc31b594_0.conda
hash:
md5: 68ceffc6cadae61846a207cae60de094
sha256: b6ce82ebe3cf24e70179bd656eacfa97ce9df9a500f2cec6843043466a5e6af8
category: main
optional: false
- name: ca-certificates
version: 2026.2.25
manager: conda
platform: linux-64
dependencies:
__unix: ''
url: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2026.2.25-hbd8a1cb_0.conda
hash:
md5: 4492fd26db29495f0ba23f146cd5638d
sha256: 67cc7101b36421c5913a1687ef1b99f85b5d6868da3abbf6ec1a4181e79782fc
category: main
optional: false
- name: cairo
version: 1.18.4
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
fontconfig: '>=2.15.0,<3.0a0'
fonts-conda-ecosystem: ''
icu: '>=78.1,<79.0a0'
libexpat: '>=2.7.3,<3.0a0'
libfreetype: '>=2.14.1'
libfreetype6: '>=2.14.1'
libgcc: '>=14'
libglib: '>=2.86.3,<3.0a0'
libpng: '>=1.6.53,<1.7.0a0'
libstdcxx: '>=14'
libxcb: '>=1.17.0,<2.0a0'
libzlib: '>=1.3.1,<2.0a0'
pixman: '>=0.46.4,<1.0a0'
xorg-libice: '>=1.1.2,<2.0a0'
xorg-libsm: '>=1.2.6,<2.0a0'
xorg-libx11: '>=1.8.12,<2.0a0'
xorg-libxext: '>=1.3.6,<2.0a0'
xorg-libxrender: '>=0.9.12,<0.10.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/cairo-1.18.4-he90730b_1.conda
hash:
md5: bb6c4808bfa69d6f7f6b07e5846ced37
sha256: 06525fa0c4e4f56e771a3b986d0fdf0f0fc5a3270830ee47e127a5105bde1b9a
category: main
optional: false
- name: certifi
version: 2026.2.25
manager: conda
platform: linux-64
dependencies:
python: '>=3.10'
url: https://conda.anaconda.org/conda-forge/noarch/certifi-2026.2.25-pyhd8ed1ab_0.conda
hash:
md5: 765c4d97e877cdbbb88ff33152b86125
sha256: a6b118fd1ed6099dc4fc03f9c492b88882a780fadaef4ed4f93dc70757713656
category: main
optional: false
- name: cffi
version: 2.0.0
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libffi: '>=3.5.2,<3.6.0a0'
libgcc: '>=14'
pycparser: ''
python: '>=3.11,<3.12.0a0'
python_abi: 3.11.*
url: https://conda.anaconda.org/conda-forge/linux-64/cffi-2.0.0-py311h03d9500_1.conda
hash:
md5: 3912e4373de46adafd8f1e97e4bd166b
sha256: 3ad13377356c86d3a945ae30e9b8c8734300925ef81a3cb0a9db0d755afbe7bb
category: main
optional: false
- name: charset-normalizer
version: 3.4.7
manager: conda
platform: linux-64
dependencies:
python: '>=3.10'
url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.7-pyhd8ed1ab_0.conda
hash:
md5: a9167b9571f3baa9d448faa2139d1089
sha256: 3f9483d62ce24ecd063f8a5a714448445dc8d9e201147c46699fc0033e824457
category: main
optional: false
- name: cli11
version: 2.6.2
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc: '>=14'
libstdcxx: '>=14'
url: https://conda.anaconda.org/conda-forge/linux-64/cli11-2.6.2-h54a6638_0.conda
hash:
md5: 83dae3dfadcfec9b37a9fbff6f7f7378
sha256: 1d635e8963e094d95d35148df4b46e495f93bb0750ad5069f4e0e6bbb47ac3bf
category: main
optional: false
- name: click
version: 8.3.2
manager: conda
platform: linux-64
dependencies:
__unix: ''
python: '>=3.10'
url: https://conda.anaconda.org/conda-forge/noarch/click-8.3.2-pyhc90fa1f_0.conda
hash:
md5: 4d18bc3af7cfcea97bd817164672a08c
sha256: 526d434cf5390310f40f34ea6ec4f0c225cdf1e419010e624d399b13b2059f0f
category: main
optional: false
- name: conda-gcc-specs
version: 15.2.0
manager: conda
platform: linux-64
dependencies:
gcc_impl_linux-64: '>=15.2.0,<15.2.1.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/conda-gcc-specs-15.2.0-h53410ce_18.conda
hash:
md5: bdc9bf8cb0635231c4a14cc1b4f3b19f
sha256: 031dc4af908cf604039f0a02b0ce86c52609bb1adedeeb66f0d9f23894339095
category: main
optional: false
- 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.11.*
url: https://conda.anaconda.org/conda-forge/linux-64/contourpy-1.3.3-py311h724c32c_4.conda
hash:
md5: d04e508f5a03162c8bab4586a65d00bf
sha256: fd7aca059253cff3d8b0aec71f0c1bf2904823b13f1997bf222aea00a76f3cce
category: main
optional: false
- name: cpython
version: 3.11.15
manager: conda
platform: linux-64
dependencies:
python: '>=3.11,<3.12.0a0'
python_abi: '*'
url: https://conda.anaconda.org/conda-forge/noarch/cpython-3.11.15-py311hd8ed1ab_0.conda
hash:
md5: bf0d09d5c2b61aaf7b11c551c8545cfa
sha256: 4811072ccc369c80cb94156fb96fa234db1b90120c0859dc173bea42d49a57b5
category: main
optional: false
- name: cycler
version: 0.12.1
manager: conda
platform: linux-64
dependencies:
python: ''
url: https://conda.anaconda.org/conda-forge/noarch/cycler-0.12.1-pyhcf101f3_2.conda
hash:
md5: 4c2a8fef270f6c69591889b93f9f55c1
sha256: bb47aec5338695ff8efbddbc669064a3b10fe34ad881fb8ad5d64fbfa6910ed1
category: main
optional: false
- name: cyclopts
version: 4.10.2
manager: conda
platform: linux-64
dependencies:
attrs: '>=23.1.0'
docstring_parser: '>=0.15,<4.0'
python: ''
rich: '>=13.6.0'
rich-rst: '>=1.3.1,<2.0.0'
tomli: '>=2.0.0'
typing_extensions: '>=4.8.0'
url: https://conda.anaconda.org/conda-forge/noarch/cyclopts-4.10.2-pyhcf101f3_0.conda
hash:
md5: 2c07e2363c11ed772c045ef15bffe6bf
sha256: ec17b8111ef1371452093931b1791156c00ff481e64e5a9e6e98817ca9f5d50d
category: main
optional: false
- name: cyrus-sasl
version: 2.1.28
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
krb5: '>=1.22.2,<1.23.0a0'
libgcc: '>=13'
libntlm: '>=1.8,<2.0a0'
libstdcxx: '>=13'
libxcrypt: '>=4.4.36'
openssl: '>=3.5.5,<4.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/cyrus-sasl-2.1.28-hac629b4_1.conda
hash:
md5: af491aae930edc096b58466c51c4126c
sha256: 7684da83306bb69686c0506fb09aa7074e1a55ade50c3a879e4e5df6eebb1009
category: main
optional: false
- name: dbus
version: 1.16.2
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libexpat: '>=2.7.3,<3.0a0'
libgcc: '>=14'
libglib: '>=2.86.2,<3.0a0'
libstdcxx: '>=14'
libzlib: '>=1.3.1,<2.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/dbus-1.16.2-h24cb091_1.conda
hash:
md5: ce96f2f470d39bd96ce03945af92e280
sha256: 8bb557af1b2b7983cf56292336a1a1853f26555d9c6cecf1e5b2b96838c9da87
category: main
optional: false
- name: diskcache
version: 5.6.3
manager: conda
platform: linux-64
dependencies:
python: '>=3.9'
url: https://conda.anaconda.org/conda-forge/noarch/diskcache-5.6.3-pyhd8ed1ab_1.conda
hash:
md5: 1c33d47dcfb2f90c80c6d2213f9d65d7
sha256: 8430e56d52fe9eb46543d29c4c01388d5e085478d25b93a7c06d0a867648c5c5
category: main
optional: false
- name: docstring_parser
version: 0.17.0
manager: conda
platform: linux-64
dependencies:
python: '>=3.9'
url: https://conda.anaconda.org/conda-forge/noarch/docstring_parser-0.17.0-pyhd8ed1ab_0.conda
hash:
md5: ce49d3e5a7d20be2ba57a2c670bdd82e
sha256: 3069a555097f084d3b7bc8f9efbb42f9907ecbfa24d310c63df9814a8df491af
category: main
optional: false
- name: docutils
version: 0.22.4
manager: conda
platform: linux-64
dependencies:
python: '>=3.10'
url: https://conda.anaconda.org/conda-forge/noarch/docutils-0.22.4-pyhd8ed1ab_0.conda
hash:
md5: d6bd3cd217e62bbd7efe67ff224cd667
sha256: 0d605569a77350fb681f9ed8d357cc71649b59a304099dc9d09fbeec5e84a65e
category: main
optional: false
- name: double-conversion
version: 3.4.0
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc: '>=14'
libstdcxx: '>=14'
url: https://conda.anaconda.org/conda-forge/linux-64/double-conversion-3.4.0-hecca717_0.conda
hash:
md5: dbe3ec0f120af456b3477743ffd99b74
sha256: 40cdd1b048444d3235069d75f9c8e1f286db567f6278a93b4f024e5642cfaecc
category: main
optional: false
- name: eigen-abi
version: 5.0.1.80
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/conda-forge/linux-64/eigen-abi-5.0.1.80-hf414acd_0.conda
hash:
md5: a85c1768af7780d67c6446c17848b76f
sha256: acde70d55f7dbbc043d733427fd6f1ec6ca49db7cbabcf7a656dd29a952b8ad8
category: main
optional: false
- name: fenics-basix
version: 0.10.0
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
fenics-basix-nanobind-abi: 2.16.*
fenics-libbasix: '>=0.10.0,<0.10.1.0a0'
libgcc: '>=14'
libstdcxx: '>=14'
nanobind-abi: '16'
numpy: '>=1.21'
python: ''
python_abi: 3.11.*
url: https://conda.anaconda.org/conda-forge/linux-64/fenics-basix-0.10.0-py311h88a31a4_1.conda
hash:
md5: cebb75e50cb5af250967fb281b9a8265
sha256: 554427c3a65596b14e62eccab097b3cc94a0fafc4ed4c8f687a331be3329a28e
category: main
optional: false
- name: fenics-basix-nanobind-abi
version: '2.16'
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/conda-forge/linux-64/fenics-basix-nanobind-abi-2.16-py312h8b13081_1.conda
hash:
md5: 57bf366fbd0f8fc8801a2ed32baefc7c
sha256: d6d1a6126381f21d9ee9d18175f17fbbd9b3065dba494573ba5439b51ece4f3b
category: main
optional: false
- name: fenics-dolfinx
version: 0.10.0
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
cffi: ''
fenics-basix: 0.10.*
fenics-basix-nanobind-abi: 2.16.*
fenics-ffcx: 0.10.*
fenics-libdolfinx: '>=0.10.0,<0.10.1.0a0'
fenics-ufl: 2025.2.*
gcc: '>=14'
hdf5: '>=1.14.6,<1.14.7.0a0'
libboost: '>=1.88.0,<1.89.0a0'
libgcc: '>=14'
libstdcxx: '>=14'
mpi4py: '>=4.1.1,<5.0a0'
mpich: '>=5.0,<6.0a0'
nanobind-abi: '16'
numpy: '>=1.21'
petsc: '*'
petsc4py: ''
pkg-config: ''
python_abi: 3.11.*
slepc: '*'
slepc4py: ''
url: https://conda.anaconda.org/conda-forge/linux-64/fenics-dolfinx-0.10.0-py311h588deac_106.conda
hash:
md5: 4c81cb8aab6cfc210e04e361e77cbd3d
sha256: e1d9ac47c64d0c3d7a86bf67f0726f7fe0353d64c1e41c8c261c9f8d2f56d65b
category: main
optional: false
- name: fenics-ffcx
version: 0.10.1
manager: conda
platform: linux-64
dependencies:
cffi: ''
fenics-basix: 0.10.*
fenics-ufl: 2025.2.*
numpy: '>=1.21'
python: ''
setuptools: '>=77.0.3'
url: https://conda.anaconda.org/conda-forge/noarch/fenics-ffcx-0.10.1-pyh1e3ed43_0.conda
hash:
md5: 46f5b0204e38f92ef29792076b957123
sha256: 580c14ac362e4364ee80bcf8ce628dac5813f2449d70ed8a6c0dc1d88c7a9d67
category: main
optional: false
- name: fenics-libbasix
version: 0.10.0
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libblas: '>=3.9.0,<4.0a0'
libcblas: '>=3.9.0,<4.0a0'
libgcc: '>=14'
liblapack: '>=3.9.0,<4.0a0'
libstdcxx: '>=14'
url: https://conda.anaconda.org/conda-forge/linux-64/fenics-libbasix-0.10.0-py311h8a41e2e_1.conda
hash:
md5: ff31b2ea88d9df48f1c6d0b59e51966e
sha256: 548df6a6224ec39b6ba609e0a3e5aa7d1d33c42fde9551748fa0e4b856f50660
category: main
optional: false
- name: fenics-libdolfinx
version: 0.10.0
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
fenics-libbasix: '>=0.10.0,<0.10.1.0a0'
fenics-ufcx: 0.10.*
fmt: '>=12.1.0,<12.2.0a0'
hdf5: '>=1.14.6,<1.14.7.0a0'
kahip: '>=3.25,<3.25.1.0a0'
libadios2: '>=2.11.0,<2.11.1.0a0'
libboost: '>=1.88.0,<1.89.0a0'
libboost-devel: ''
libgcc: '>=14'
libptscotch: '*'
libscotch: '*'
libstdcxx: '>=14'
mpich: '>=5.0,<6.0a0'
parmetis: '>=4.0.3,<4.1.0a0'
petsc: '*'
pugixml: '>=1.15,<1.16.0a0'
slepc: '*'
spdlog: '>=1.17.0,<1.18.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/fenics-libdolfinx-0.10.0-py311h01929e7_106.conda
hash:
md5: 11ea61f6d9fdc1efd2fe835a8420d1ea
sha256: ea8476116dc33e2dd06d6e9d3ac6a5ee3d90415ac9d9afcc21e03da3a0603a87
category: main
optional: false
- name: fenics-ufcx
version: 0.10.1
manager: conda
platform: linux-64
dependencies:
__unix: ''
url: https://conda.anaconda.org/conda-forge/noarch/fenics-ufcx-0.10.1-haec879b_0.conda
hash:
md5: a53cdea6cc09c82c671b20c6e5748cd5
sha256: b012f7d00b1cdb86ad1fe583f5fd6a7f90d60c4c4cd58be65c6a8c277b6034ca
category: main
optional: false
- name: fenics-ufl
version: 2025.2.1
manager: conda
platform: linux-64
dependencies:
numpy: ''
python: ''
url: https://conda.anaconda.org/conda-forge/noarch/fenics-ufl-2025.2.1-pyhcf101f3_0.conda
hash:
md5: 84241f24b9a1872dd8d6cf6a4d5dca6d
sha256: 4fc42a37fb1f89592644cce7bc7e9546a9a826893d88ef27cb90c4c3073264a6
category: main
optional: false
- name: fftw
version: 3.3.10
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc: '>=14'
libgfortran: ''
libgfortran5: '>=14.3.0'
libstdcxx: '>=14'
mpich: '>=5.0,<6.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/fftw-3.3.10-mpi_mpich_h084ba78_12.conda
hash:
md5: 1264589010114552448c23f318a19a42
sha256: 10cec0fee6987c9db7aaeee342f449f65bd4104156fd5e23d300742f2407410e
category: main
optional: false
- name: filelock
version: 3.28.0
manager: conda
platform: linux-64
dependencies:
python: '>=3.10'
url: https://conda.anaconda.org/conda-forge/noarch/filelock-3.28.0-pyhd8ed1ab_0.conda
hash:
md5: 60a871a0e893d6ec7083115beba05001
sha256: d1151d785c346bc24bc19b4ee10f5cfd0b1963530e9ab6f7e4f3789640d1154e
category: main
optional: false
- name: fltk
version: 1.3.10
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
freetype: '>=2.12.1,<3.0a0'
libgcc: '>=13'
libglu: ''
libjpeg-turbo: '>=3.0.0,<4.0a0'
libpng: '>=1.6.44,<1.7.0a0'
libstdcxx: '>=13'
libxcb: '>=1.17.0,<2.0a0'
libzlib: '>=1.3.1,<2.0a0'
xorg-libice: '>=1.1.1,<2.0a0'
xorg-libsm: '>=1.2.4,<2.0a0'
xorg-libx11: '>=1.8.10,<2.0a0'
xorg-libxau: '>=1.0.11,<2.0a0'
xorg-libxdmcp: '>=1.1.5,<2.0a0'
xorg-libxext: '>=1.3.6,<2.0a0'
xorg-libxfixes: '>=6.0.1,<7.0a0'
xorg-libxrender: '>=0.9.11,<0.10.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/fltk-1.3.10-hff38c0f_0.conda
hash:
md5: 2d345e1c676fa81aef2c129ac0ed5608
sha256: acd4cd48be0fbb5a35c20c041572b1cc8498c0e15c5f49c1d9054c203b409146
category: main
optional: false
- name: fmt
version: 12.1.0
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc: '>=14'
libstdcxx: '>=14'
url: https://conda.anaconda.org/conda-forge/linux-64/fmt-12.1.0-hff5e90c_0.conda
hash:
md5: f7d7a4104082b39e3b3473fbd4a38229
sha256: d4e92ba7a7b4965341dc0fca57ec72d01d111b53c12d11396473115585a9ead6
category: main
optional: false
- name: font-ttf-dejavu-sans-mono
version: '2.37'
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2
hash:
md5: 0c96522c6bdaed4b1566d11387caaf45
sha256: 58d7f40d2940dd0a8aa28651239adbf5613254df0f75789919c4e6762054403b
category: main
optional: false
- name: font-ttf-inconsolata
version: '3.000'
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2
hash:
md5: 34893075a5c9e55cdafac56607368fc6
sha256: c52a29fdac682c20d252facc50f01e7c2e7ceac52aa9817aaf0bb83f7559ec5c
category: main
optional: false
- name: font-ttf-source-code-pro
version: '2.038'
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2
hash:
md5: 4d59c254e01d9cde7957100457e2d5fb
sha256: 00925c8c055a2275614b4d983e1df637245e19058d79fc7dd1a93b8d9fb4b139
category: main
optional: false
- name: font-ttf-ubuntu
version: '0.83'
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-h77eed37_3.conda
hash:
md5: 49023d73832ef61042f6a237cb2687e7
sha256: 2821ec1dc454bd8b9a31d0ed22a7ce22422c0aef163c59f49dfdf915d0f0ca14
category: main
optional: false
- name: fontconfig
version: 2.17.1
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libexpat: '>=2.7.4,<3.0a0'
libfreetype: '>=2.14.1'
libfreetype6: '>=2.14.1'
libgcc: '>=14'
libuuid: '>=2.41.3,<3.0a0'
libzlib: '>=1.3.1,<2.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/fontconfig-2.17.1-h27c8c51_0.conda
hash:
md5: 867127763fbe935bab59815b6e0b7b5c
sha256: aa4a44dba97151221100a637c7f4bde619567afade9c0265f8e1c8eed8d7bd8c
category: main
optional: false
- name: fonts-conda-ecosystem
version: '1'
manager: conda
platform: linux-64
dependencies:
fonts-conda-forge: ''
url: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2
hash:
md5: fee5683a3f04bd15cbd8318b096a27ab
sha256: a997f2f1921bb9c9d76e6fa2f6b408b7fa549edd349a77639c9fe7a23ea93e61
category: main
optional: false
- name: fonts-conda-forge
version: '1'
manager: conda
platform: linux-64
dependencies:
font-ttf-dejavu-sans-mono: ''
font-ttf-inconsolata: ''
font-ttf-source-code-pro: ''
font-ttf-ubuntu: ''
url: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-hc364b38_1.conda
hash:
md5: a7970cd949a077b7cb9696379d338681
sha256: 54eea8469786bc2291cc40bca5f46438d3e062a399e8f53f013b6a9f50e98333
category: main
optional: false
- name: fonttools
version: 4.62.0
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
brotli: ''
libgcc: '>=14'
munkres: ''
python: '>=3.11,<3.12.0a0'
python_abi: 3.11.*
unicodedata2: '>=15.1.0'
url: https://conda.anaconda.org/conda-forge/linux-64/fonttools-4.62.0-py311h3778330_0.conda
hash:
md5: bd4aa764c1b2f877aff5049f26cbffde
sha256: f97e434344eefb9af8a5892a831b53a276c26fbabec3d2f1261064a819e8bbc9
category: main
optional: false
- name: freeglut
version: 3.2.2
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
libstdcxx-ng: '>=12'
libxcb: '>=1.16,<2.0.0a0'
xorg-libx11: '>=1.8.9,<2.0a0'
xorg-libxau: '>=1.0.11,<2.0a0'
xorg-libxext: '>=1.3.4,<2.0a0'
xorg-libxfixes: ''
xorg-libxi: ''
url: https://conda.anaconda.org/conda-forge/linux-64/freeglut-3.2.2-ha6d2627_3.conda
hash:
md5: 84ec3f5b46f3076be49f2cf3f1cfbf02
sha256: 676540a8e7f73a894cb1fcb870e7bec623ec1c0a2d277094fd713261a02d8d56
category: main
optional: false
- name: freeimage
version: 3.18.0
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
imath: '>=3.2.2,<3.2.3.0a0'
jxrlib: '>=1.1,<1.2.0a0'
libgcc: '>=14'
libjpeg-turbo: '>=3.1.2,<4.0a0'
libpng: '>=1.6.50,<1.7.0a0'
libraw: '>=0.21.4,<0.22.0a0'
libstdcxx: '>=14'
libtiff: '>=4.7.1,<4.8.0a0'
libwebp-base: '>=1.6.0,<2.0a0'
libzlib: '>=1.3.1,<2.0a0'
openexr: '>=3.4.3,<3.5.0a0'
openjpeg: '>=2.5.4,<3.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/freeimage-3.18.0-h49ef1fa_24.conda
hash:
md5: 14ccdbaf6fcf27563ac43e522559a79b
sha256: 42a16cc6d4521d8b596d533be088f828afb390cb4b9ebba265f9ed22a91c2bdf
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://conda.anaconda.org/conda-forge/linux-64/freetype-2.14.3-ha770c72_0.conda
hash:
md5: 8462b5322567212beeb025f3519fb3e2
sha256: c934c385889c7836f034039b43b05ccfa98f53c900db03d8411189892ced090b
category: main
optional: false
- name: frozenlist
version: 1.7.0
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc: '>=14'
libstdcxx: '>=14'
python: '>=3.11,<3.12.0a0'
python_abi: 3.11.*
url: https://conda.anaconda.org/conda-forge/linux-64/frozenlist-1.7.0-py311h52bc045_0.conda
hash:
md5: d9be554be03e3f2012655012314167d6
sha256: cc7ec26db5d61078057da6e24e23abdd973414a065311fe0547a7620dd98e6b8
category: main
optional: false
- name: fsspec
version: 2026.3.0
manager: conda
platform: linux-64
dependencies:
python: '>=3.10'
url: https://conda.anaconda.org/conda-forge/noarch/fsspec-2026.3.0-pyhd8ed1ab_0.conda
hash:
md5: c18d2ba7577cdc618a20d45f1e31d14b
sha256: b4a7aec32167502dd4a2d1fb1208c63760828d7111339aa5b305b2d776afa70f
category: main
optional: false
- name: gcc
version: 15.2.0
manager: conda
platform: linux-64
dependencies:
conda-gcc-specs: ''
gcc_impl_linux-64: 15.2.0
url: https://conda.anaconda.org/conda-forge/linux-64/gcc-15.2.0-h0dff253_18.conda
hash:
md5: 9a992f62edc4c3858cf5838360643b41
sha256: 2b9dd26eb0c1d4ff93a1c87ff3a7fa81454f9b73c29aa7cdb439d067b03f7ced
category: main
optional: false
- name: gcc_impl_linux-64
version: 15.2.0
manager: conda
platform: linux-64
dependencies:
binutils_impl_linux-64: '>=2.45'
libgcc: '>=15.2.0'
libgcc-devel_linux-64: 15.2.0
libgomp: '>=15.2.0'
libsanitizer: 15.2.0
libstdcxx: '>=15.2.0'
libstdcxx-devel_linux-64: 15.2.0
sysroot_linux-64: ''
url: https://conda.anaconda.org/conda-forge/linux-64/gcc_impl_linux-64-15.2.0-he420e7e_18.conda
hash:
md5: cf56b6d74f580b91fd527e10d9a2e324
sha256: a088cfd3ae6fa83815faa8703bc9d21cc915f17bd1b51aac9c16ddf678da21e4
category: main
optional: false
- name: gl2ps
version: 1.4.2