-
Notifications
You must be signed in to change notification settings - Fork 2
/
conda-lock.yml
4908 lines (4908 loc) · 144 KB
/
conda-lock.yml
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 --file 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: b3bc921f3b2ec6c9fc6b9f5479fa5d65e011bd6f00f3f2c719e1f507a9c774fa
channels:
- url: conda-forge
used_env_vars: []
platforms:
- linux-64
sources:
- environment.yml
package:
- name: _libgcc_mutex
version: '0.1'
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2
hash:
md5: d7c89558ba9fa0495403155b64376d81
sha256: fe51de6107f9edc7aa4f786a70f4a883943bc9d39b3bb7307c04c41410990726
category: main
optional: false
- name: ca-certificates
version: 2023.7.22
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2023.7.22-hbcca054_0.conda
hash:
md5: a73ecd2988327ad4c8f2c331482917f2
sha256: 525b7b6b5135b952ec1808de84e5eca57c7c7ff144e29ef3e96ae4040ff432c1
category: main
optional: false
- name: conda-ecosystem-user-package-isolation
version: '1.0'
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/conda-forge/linux-64/conda-ecosystem-user-package-isolation-1.0-ha770c72_1.tar.bz2
hash:
md5: ae754334312bf9346a0f75d1d21bc24f
sha256: 0692b32ffc84f4b98f05b700693ae40607af9431c56ddcc42bd130238723bbec
category: main
optional: false
- name: fenics-ufcx
version: 0.6.0
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/conda-forge/noarch/fenics-ufcx-0.6.0-h56297ac_0.conda
hash:
md5: 6424710417c308e1e5a711de04e7b4cb
sha256: d3abe7a32493d2c69f86b18961837a629156fcbb38bb8509da6479f3e8d689f0
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-hab24e00_0.tar.bz2
hash:
md5: 19410c3df09dfb12d1206132a1d357c5
sha256: 470d5db54102bd51dbb0c5990324a2f4a0bc976faa493b22193338adb9882e2e
category: main
optional: false
- name: kernel-headers_linux-64
version: 2.6.32
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-64-2.6.32-he073ed8_16.conda
hash:
md5: 7ca122655873935e02c91279c5b03c8c
sha256: aaa8aa6dc776d734a6702032588ff3c496721da905366d91162e3654c082aef0
category: main
optional: false
- name: ld_impl_linux-64
version: '2.40'
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-h41732ed_0.conda
hash:
md5: 7aca3059a1729aa76c597603f10b0dd3
sha256: f6cc89d887555912d6c61b295d398cff9ec982a3417d38025c45d5dd9b9e79cd
category: main
optional: false
- name: libboost-headers
version: 1.82.0
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/conda-forge/linux-64/libboost-headers-1.82.0-ha770c72_6.conda
hash:
md5: a943dcb8fd22cf23ce901ac84f6538c2
sha256: c996950b85808115ea833e577a0af2969dbb0378c299560c2b945401a7770823
category: main
optional: false
- name: libgcc-devel_linux-64
version: 12.3.0
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-devel_linux-64-12.3.0-h8bca6fd_2.conda
hash:
md5: ed613582de7b8569fdc53ca141be176a
sha256: 7e12d0496389017ca526254913b24d9024e1728c849a0d6476a4b7fde9d03cba
category: main
optional: false
- name: libstdcxx-devel_linux-64
version: 12.3.0
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-devel_linux-64-12.3.0-h8bca6fd_2.conda
hash:
md5: 7268a17e56eb099d1b8869bbbf46de4c
sha256: e8483069599561ef24b884c898442eadc510190f978fa388db3281b10c3c084e
category: main
optional: false
- name: libstdcxx-ng
version: 13.2.0
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-13.2.0-h7e041cc_2.conda
hash:
md5: 9172c297304f2a20134fc56c97fbe229
sha256: ab22ecdc974cdbe148874ea876d9c564294d5eafa760f403ed4fd495307b4243
category: main
optional: false
- name: mpi
version: '1.0'
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/conda-forge/linux-64/mpi-1.0-openmpi.tar.bz2
hash:
md5: 1dcc49e16749ff79ba2194fa5d4ca5e7
sha256: 54cf44ee2c122bce206f834a825af06e3b14fc4fd58c968ae9329715cc281d1e
category: main
optional: false
- name: mumps-include
version: 5.2.1
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/conda-forge/linux-64/mumps-include-5.2.1-ha770c72_11.tar.bz2
hash:
md5: 765196257c11b54dc52522d2fcafdd69
sha256: 583922c671eb90e576a96432fe1439bc5eb46f88c4a0a4867fba39653c09c6de
category: main
optional: false
- name: nlohmann_json
version: 3.11.2
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/conda-forge/linux-64/nlohmann_json-3.11.2-h27087fc_0.tar.bz2
hash:
md5: b7743cf3f8da023abe95afc215111555
sha256: 55ac71e0431267b30b3bc9ea0238d1b9dc69644938d213511749c71b91506a7b
category: main
optional: false
- name: pybind11-abi
version: '4'
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/conda-forge/noarch/pybind11-abi-4-hd8ed1ab_3.tar.bz2
hash:
md5: 878f923dd6acc8aeb47a75da6c4098be
sha256: d4fb485b79b11042a16dc6abfb0c44c4f557707c2653ac47c81e5d32b24a3bb0
category: main
optional: false
- name: python_abi
version: '3.10'
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.10-4_cp310.conda
hash:
md5: 26322ec5d7712c3ded99dd656142b8ce
sha256: 456bec815bfc2b364763084d08b412fdc4c17eb9ccc66a36cb775fa7ac3cbaec
category: main
optional: false
- name: tzdata
version: 2023c
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2023c-h71feb2d_0.conda
hash:
md5: 939e3e74d8be4dac89ce83b20de2492a
sha256: 0449138224adfa125b220154408419ec37c06b0b49f63c5954724325903ecf55
category: main
optional: false
- name: utfcpp
version: 3.2.5
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/conda-forge/linux-64/utfcpp-3.2.5-ha770c72_0.conda
hash:
md5: b3599de486d88c2c447501cd2b053a99
sha256: 91c89693a4bd7f9aec874528506ba08dfc6c9acc3aec88dfb315dad6adba0c8b
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-0.tar.bz2
hash:
md5: f766549260d6815b0c52253f1fb1bb29
sha256: 53f23a3319466053818540bcdf2091f253cbdbab1e0e9ae7b9e509dcaa2a5e38
category: main
optional: false
- name: libgomp
version: 13.2.0
manager: conda
platform: linux-64
dependencies:
_libgcc_mutex: '0.1'
url: https://conda.anaconda.org/conda-forge/linux-64/libgomp-13.2.0-h807b86a_2.conda
hash:
md5: e2042154faafe61969556f28bade94b9
sha256: e1e82348f8296abfe344162b3b5f0ddc2f504759ebeb8b337ba99beaae583b15
category: main
optional: false
- name: sysroot_linux-64
version: '2.12'
manager: conda
platform: linux-64
dependencies:
kernel-headers_linux-64: 2.6.32
url: https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-64-2.12-he073ed8_16.conda
hash:
md5: 071ea8dceff4d30ac511f4a2f8437cd1
sha256: 4c024b2eee24c6da7d3e08723111ec02665c578844c5b3e9e6b38f89000bec41
category: main
optional: false
- name: _openmp_mutex
version: '4.5'
manager: conda
platform: linux-64
dependencies:
_libgcc_mutex: '0.1'
libgomp: '>=7.5.0'
url: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2
hash:
md5: 73aaf86a425cc6e73fcf236a5a46396d
sha256: fbe2c5e56a653bebb982eda4876a9178aedfc2b545f25d0ce9c4c0b508253d22
category: main
optional: false
- name: binutils_impl_linux-64
version: '2.40'
manager: conda
platform: linux-64
dependencies:
ld_impl_linux-64: '2.40'
sysroot_linux-64: ''
url: https://conda.anaconda.org/conda-forge/linux-64/binutils_impl_linux-64-2.40-hf600244_0.conda
hash:
md5: 33084421a8c0af6aef1b439707f7662a
sha256: a7e0ea2b71a5b03d82e5a58fb6b612ab1c44d72ce161f9aa441f7ba467cd4c8d
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: binutils_linux-64
version: '2.40'
manager: conda
platform: linux-64
dependencies:
binutils_impl_linux-64: 2.40.*
sysroot_linux-64: ''
url: https://conda.anaconda.org/conda-forge/linux-64/binutils_linux-64-2.40-hbdbef99_2.conda
hash:
md5: adfebae9fdc63a598495dfe3b006973a
sha256: 333f3339d94c93bcc02a723e3e460cb6ff6075e05f5247e15bef5dcdcec541a3
category: main
optional: false
- name: libgcc-ng
version: 13.2.0
manager: conda
platform: linux-64
dependencies:
_libgcc_mutex: '0.1'
_openmp_mutex: '>=4.5'
url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-13.2.0-h807b86a_2.conda
hash:
md5: c28003b0be0494f9a7664389146716ff
sha256: d361d3c87c376642b99c1fc25cddec4b9905d3d9b9203c1c545b8c8c1b04539a
category: main
optional: false
- name: alsa-lib
version: 1.2.10
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/alsa-lib-1.2.10-hd590300_0.conda
hash:
md5: 75dae9a4201732aa78a530b826ee5fe0
sha256: 51147922bad9d3176e780eb26f748f380cd3184896a9f9125d8ac64fe330158b
category: main
optional: false
- name: aom
version: 3.6.1
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
libstdcxx-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/aom-3.6.1-h59595ed_0.conda
hash:
md5: 8457db6d1175ee86c8e077f6ac60ff55
sha256: 006d10fe845374e71fb15a6c1f58ae4b3efef69be02b0992265abfb5c4c2e026
category: main
optional: false
- name: attr
version: 2.5.1
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/attr-2.5.1-h166bdaf_1.tar.bz2
hash:
md5: d9c69a24ad678ffce24c6543a0176b00
sha256: 82c13b1772c21fc4a17441734de471d3aabf82b61db9b11f4a1bd04a9c4ac324
category: main
optional: false
- name: bzip2
version: 1.0.8
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=9.3.0'
url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h7f98852_4.tar.bz2
hash:
md5: a1fd65c7ccbf10880423d82bca54eb54
sha256: cb521319804640ff2ad6a9f118d972ed76d86bea44e5626c09a13d38f562e1fa
category: main
optional: false
- name: c-ares
version: 1.20.1
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.20.1-hd590300_1.conda
hash:
md5: 2facbaf5ee1a56967aecaee89799160e
sha256: 1700d9ebfd3b21c8b50e12a502f26e015719e1f3dbb5d491b5be061cf148ca7a
category: main
optional: false
- name: dav1d
version: 1.2.1
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/dav1d-1.2.1-hd590300_0.conda
hash:
md5: 418c6ca5929a611cbd69204907a83995
sha256: 22053a5842ca8ee1cf8e1a817138cdb5e647eb2c46979f84153f6ad7bde73020
category: main
optional: false
- name: double-conversion
version: 3.3.0
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
libstdcxx-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/double-conversion-3.3.0-h59595ed_0.conda
hash:
md5: c2f83a5ddadadcdb08fe05863295ee97
sha256: 9eee491a73b67fd64379cf715f85f8681568ebc1f02f9e11b4c50d46a3323544
category: main
optional: false
- name: eigen
version: 3.4.0
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
libstdcxx-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/eigen-3.4.0-h00ab1b0_0.conda
hash:
md5: b1b879d6d093f55dd40d58b5eb2f0699
sha256: 53b15a98aadbe0704479bacaf7a5618fcb32d1577be320630674574241639b34
category: main
optional: false
- name: fribidi
version: 1.0.10
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=7.5.0'
url: https://conda.anaconda.org/conda-forge/linux-64/fribidi-1.0.10-h36c2ea0_0.tar.bz2
hash:
md5: ac7bc6a654f8f41b352b38f4051135f8
sha256: 5d7b6c0ee7743ba41399e9e05a58ccc1cfc903942e49ff6f677f6e423ea7a627
category: main
optional: false
- name: gettext
version: 0.21.1
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/gettext-0.21.1-h27087fc_0.tar.bz2
hash:
md5: 14947d8770185e5153fdd04d4673ed37
sha256: 4fcfedc44e4c9a053f0416f9fc6ab6ed50644fca3a761126dbd00d09db1f546a
category: main
optional: false
- name: gmp
version: 6.2.1
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=7.5.0'
libstdcxx-ng: '>=7.5.0'
url: https://conda.anaconda.org/conda-forge/linux-64/gmp-6.2.1-h58526e2_0.tar.bz2
hash:
md5: b94cf2db16066b242ebd26db2facbd56
sha256: 07a5319e1ac54fe5d38f50c60f7485af7f830b036da56957d0bfb7558a886198
category: main
optional: false
- name: graphite2
version: 1.3.13
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=7.5.0'
libstdcxx-ng: '>=7.5.0'
url: https://conda.anaconda.org/conda-forge/linux-64/graphite2-1.3.13-h58526e2_1001.tar.bz2
hash:
md5: 8c54672728e8ec6aa6db90cf2806d220
sha256: 65da967f3101b737b08222de6a6a14e20e480e7d523a5d1e19ace7b960b5d6b1
category: main
optional: false
- name: icu
version: '73.2'
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
libstdcxx-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/icu-73.2-h59595ed_0.conda
hash:
md5: cc47e1facc155f91abd89b11e48e72ff
sha256: e12fd90ef6601da2875ebc432452590bc82a893041473bc1c13ef29001a73ea8
category: main
optional: false
- name: jsoncpp
version: 1.9.5
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=9.4.0'
libstdcxx-ng: '>=9.4.0'
url: https://conda.anaconda.org/conda-forge/linux-64/jsoncpp-1.9.5-h4bd325d_1.tar.bz2
hash:
md5: ae7f50dd1e78c7e78b5d2cf7062e559d
sha256: 7a5a6cdfc17849bb8000cc31b91c22f1fe0e087dfc3fd59ecc4d3b64cf0ad772
category: main
optional: false
- name: jxrlib
version: '1.1'
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=9.3.0'
url: https://conda.anaconda.org/conda-forge/linux-64/jxrlib-1.1-h7f98852_2.tar.bz2
hash:
md5: 8e787b08fe19986d99d034b839df2961
sha256: 3ffc19c2ca272e6d5b8edc7cfc5bb71763dfdfa1810dd4b8820cc6b212ecbd95
category: main
optional: false
- name: keyutils
version: 1.6.1
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=10.3.0'
url: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2
hash:
md5: 30186d27e2c9fa62b45fb1476b7200e3
sha256: 150c05a6e538610ca7c43beb3a40d65c90537497a4f6a5f4d15ec0451b6f5ebb
category: main
optional: false
- name: lame
version: '3.100'
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/lame-3.100-h166bdaf_1003.tar.bz2
hash:
md5: a8832b479f93521a9e7b5b743803be51
sha256: aad2a703b9d7b038c0f745b853c6bb5f122988fe1a7a096e0e606d9cbec4eaab
category: main
optional: false
- name: lerc
version: 4.0.0
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
libstdcxx-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/lerc-4.0.0-h27087fc_0.tar.bz2
hash:
md5: 76bbff344f0134279f225174e9064c8f
sha256: cb55f36dcd898203927133280ae1dc643368af041a48bcf7c026acb7c47b0c12
category: main
optional: false
- name: libaec
version: 1.1.2
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
libstdcxx-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/libaec-1.1.2-h59595ed_1.conda
hash:
md5: 127b0be54c1c90760d7fe02ea7a56426
sha256: fdde15e74dc099ab1083823ec0f615958e53d9a8fae10405af977de251668bea
category: main
optional: false
- name: libbrotlicommon
version: 1.1.0
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlicommon-1.1.0-hd590300_1.conda
hash:
md5: aec6c91c7371c26392a06708a73c70e5
sha256: 40f29d1fab92c847b083739af86ad2f36d8154008cf99b64194e4705a1725d78
category: main
optional: false
- name: libdeflate
version: '1.19'
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/libdeflate-1.19-hd590300_0.conda
hash:
md5: 1635570038840ee3f9c71d22aa5b8b6d
sha256: 985ad27aa0ba7aad82afa88a8ede6a1aacb0aaca950d710f15d85360451e72fd
category: main
optional: false
- name: libev
version: '4.33'
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=7.5.0'
url: https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-h516909a_1.tar.bz2
hash:
md5: 6f8720dff19e17ce5d48cfe7f3d2f0a3
sha256: 8c9635aa0ea28922877dc96358f9547f6a55fc7e2eb75a556b05f1725496baf9
category: main
optional: false
- name: libexpat
version: 2.5.0
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.5.0-hcb278e6_1.conda
hash:
md5: 6305a3dd2752c76335295da4e581f2fd
sha256: 74c98a563777ae2ad71f1f74d458a8ab043cee4a513467c159ccf159d0e461f3
category: main
optional: false
- name: libffi
version: 3.4.2
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=9.4.0'
url: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2
hash:
md5: d645c6d2ac96843a2bfaccd2d62b3ac3
sha256: ab6e9856c21709b7b517e940ae7028ae0737546122f83c2aa5d692860c3b149e
category: main
optional: false
- name: libgfortran5
version: 13.2.0
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=13.2.0'
url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-13.2.0-ha4646dd_2.conda
hash:
md5: 78fdab09d9138851dde2b5fe2a11019e
sha256: 55ecf5c46c05a98b4822a041d6e1cb196a7b0606126eb96b24131b7d2c8ca561
category: main
optional: false
- name: libiconv
version: '1.17'
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=10.3.0'
url: https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.17-h166bdaf_0.tar.bz2
hash:
md5: b62b52da46c39ee2bc3c162ac7f1804d
sha256: 6a81ebac9f1aacdf2b4f945c87ad62b972f0f69c8e0981d68e111739e6720fd7
category: main
optional: false
- name: libjpeg-turbo
version: 2.1.5.1
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/libjpeg-turbo-2.1.5.1-hd590300_1.conda
hash:
md5: 323e90742f0f48fc22bea908735f55e6
sha256: 0ef7378818c6d5b407692d02556c32e2f6af31c7542bca5160d0b92a59427fb5
category: main
optional: false
- name: libnsl
version: 2.0.1
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda
hash:
md5: 30fd6e37fe21f86f4bd26d6ee73eeec7
sha256: 26d77a3bb4dceeedc2a41bd688564fe71bf2d149fdcf117049970bc02ff1add6
category: main
optional: false
- name: libogg
version: 1.3.4
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=9.3.0'
url: https://conda.anaconda.org/conda-forge/linux-64/libogg-1.3.4-h7f98852_1.tar.bz2
hash:
md5: 6e8cc2173440d77708196c5b93771680
sha256: b88afeb30620b11bed54dac4295aa57252321446ba4e6babd7dce4b9ffde9b25
category: main
optional: false
- name: libopus
version: 1.3.1
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=9.3.0'
url: https://conda.anaconda.org/conda-forge/linux-64/libopus-1.3.1-h7f98852_1.tar.bz2
hash:
md5: 15345e56d527b330e1cacbdf58676e8f
sha256: 0e1c2740ebd1c93226dc5387461bbcf8142c518f2092f3ea7551f77755decc8f
category: main
optional: false
- name: libpciaccess
version: '0.17'
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/libpciaccess-0.17-h166bdaf_0.tar.bz2
hash:
md5: b7463391cf284065294e2941dd41ab95
sha256: 9fe4aaf5629b4848d9407b9ed4da941ba7e5cebada63ee0becb9aa82259dc6e2
category: main
optional: false
- name: libsanitizer
version: 12.3.0
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12.3.0'
url: https://conda.anaconda.org/conda-forge/linux-64/libsanitizer-12.3.0-h0f45ef3_2.conda
hash:
md5: 4655db64eca78a6fcc4fb654fc1f8d57
sha256: a58add0b4477c59aee324b508d834267360b659f9c543f551ca4442196e656fe
category: main
optional: false
- name: libsodium
version: 1.0.18
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=7.5.0'
url: https://conda.anaconda.org/conda-forge/linux-64/libsodium-1.0.18-h36c2ea0_1.tar.bz2
hash:
md5: c3788462a6fbddafdb413a9f9053e58d
sha256: 53da0c8b79659df7b53eebdb80783503ce72fb4b10ed6e9e05cc0e9e4207a130
category: main
optional: false
- name: libtasn1
version: 4.19.0
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/libtasn1-4.19.0-h166bdaf_0.tar.bz2
hash:
md5: 93840744a8552e9ebf6bb1a5dffc125a
sha256: 5bfeada0e1c6ec2574afe2d17cdbc39994d693a41431338a6cb9dfa7c4d7bfc8
category: main
optional: false
- name: libunistring
version: 0.9.10
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=9.3.0'
url: https://conda.anaconda.org/conda-forge/linux-64/libunistring-0.9.10-h7f98852_0.tar.bz2
hash:
md5: 7245a044b4a1980ed83196176b78b73a
sha256: e88c45505921db29c08df3439ddb7f771bbff35f95e7d3103bf365d5d6ce2a6d
category: main
optional: false
- name: libuuid
version: 2.38.1
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda
hash:
md5: 40b61aab5c7ba9ff276c41cfffe6b80b
sha256: 787eb542f055a2b3de553614b25f09eefb0a0931b0c87dbcce6efdfd92f04f18
category: main
optional: false
- name: libvpx
version: 1.13.1
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
libstdcxx-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/libvpx-1.13.1-h59595ed_0.conda
hash:
md5: 0974a6d3432e10bae02bcab0cce1b308
sha256: 8067e73d6e4f82eae158cb86acdc2d1cf18dd7f13807f0b93e13a07ee4c04b79
category: main
optional: false
- name: libwebp-base
version: 1.3.2
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.3.2-hd590300_0.conda
hash:
md5: 30de3fd9b3b602f7473f30e684eeea8c
sha256: 68764a760fa81ef35dacb067fe8ace452bbb41476536a4a147a1051df29525f0
category: main
optional: false
- name: libzlib
version: 1.2.13
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.2.13-hd590300_5.conda
hash:
md5: f36c115f1ee199da648e0597ec2047ad
sha256: 370c7c5893b737596fd6ca0d9190c9715d89d888b8c88537ae1ef168c25e82e4
category: main
optional: false
- name: lz4-c
version: 1.9.4
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
libstdcxx-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda
hash:
md5: 318b08df404f9c9be5712aaa5a6f0bb0
sha256: 1b4c105a887f9b2041219d57036f72c4739ab9e9fe5a1486f094e58c76b31f5f
category: main
optional: false
- name: metis
version: 5.1.0
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/metis-5.1.0-h59595ed_1007.conda
hash:
md5: 40ccb8318df2500f83bd868dd8fcd201
sha256: 446bf794497284e2ffa28ab9191d70c38d372c51e3fd073f0d8b35efb51e7e02
category: main
optional: false
- name: mpg123
version: 1.32.3
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
libstdcxx-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/mpg123-1.32.3-h59595ed_0.conda
hash:
md5: bdadff838d5437aea83607ced8b37f75
sha256: f02b8ed16b3a488938b5f9453d19ea315ce6ed0d46cc389ecfaa28f2a4c3cb16
category: main
optional: false
- name: ncurses
version: '6.4'
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.4-hcb278e6_0.conda
hash:
md5: 681105bccc2a3f7f1a837d47d39c9179
sha256: ccf61e61d58a8a7b2d66822d5568e2dc9387883dd9b2da61e1d787ece4c4979a
category: main
optional: false
- name: nettle
version: 3.8.1
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/nettle-3.8.1-hc379101_1.tar.bz2
hash:
md5: 3cb2c7df59990bd37c2ce27fd906de68
sha256: 49c569a69608eee784e815179a70c6ae4d088dac42b7df999044f68058d593bb
category: main
optional: false
- name: nspr
version: '4.35'
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
libstdcxx-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/nspr-4.35-h27087fc_0.conda
hash:
md5: da0ec11a6454ae19bff5b02ed881a2b1
sha256: 8fadeebb2b7369a4f3b2c039a980d419f65c7b18267ba0c62588f9f894396d0c
category: main
optional: false
- name: openh264
version: 2.3.1
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
libstdcxx-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/openh264-2.3.1-hcb278e6_2.conda
hash:
md5: 37d01894f256b2a6921c5a218f42f8a2
sha256: 3be6de15d40f02c9bb34d5095c65b6b3f07e04fc21a0fb63d1885f1a31de5ae2
category: main
optional: false
- name: openssl
version: 3.1.3
manager: conda
platform: linux-64
dependencies:
ca-certificates: ''
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.1.3-hd590300_0.conda
hash:
md5: 7bb88ce04c8deb9f7d763ae04a1da72f
sha256: f4e35f506c7e8ab7dfdc47255b0d5aa8ce0c99028ae0affafd274333042c4f70
category: main
optional: false
- name: pixman
version: 0.42.2
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
libstdcxx-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/pixman-0.42.2-h59595ed_0.conda
hash:
md5: 700edd63ccd5fc66b70b1c028cea9a68
sha256: ae917851474eb3b08812b02c9e945d040808523ec53f828aa74a90b0cdf15f57
category: main
optional: false
- name: pkg-config
version: 0.29.2
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=7.5.0'
url: https://conda.anaconda.org/conda-forge/linux-64/pkg-config-0.29.2-h36c2ea0_1008.tar.bz2
hash:
md5: fbef41ff6a4c8140c30057466a1cdd47
sha256: 8b35a077ceccdf6888f1e82bd3ea281175014aefdc2d4cf63d7a4c7e169c125c
category: main
optional: false
- name: pthread-stubs
version: '0.4'
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=7.5.0'
url: https://conda.anaconda.org/conda-forge/linux-64/pthread-stubs-0.4-h36c2ea0_1001.tar.bz2
hash:
md5: 22dad4df6e8630e8dff2428f6f6a7036
sha256: 67c84822f87b641d89df09758da498b2d4558d47b920fd1d3fe6d3a871e000ff
category: main
optional: false
- name: pugixml
version: '1.13'
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
libstdcxx-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/pugixml-1.13-h59595ed_1.conda
hash:
md5: a7c81a1cf43fe01da4954c9a3001396a
sha256: 3390defa1f68cc0adcbd35d05c679d3b9955fa0d9334774c1012e771046d9d7a
category: main
optional: false
- name: rapidjson
version: 1.1.0
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=7.3.0'
libstdcxx-ng: '>=7.3.0'
url: https://conda.anaconda.org/conda-forge/linux-64/rapidjson-1.1.0-he1b5a44_1002.tar.bz2
hash:
md5: 37d4fdbb92d573c7d6ab6de74a666dc4
sha256: 73b74a21dcaafc4a9f43e7f4295ead29d0f3ef13790bad69351942b77294aad8
category: main
optional: false