-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
conda-lock.yml
6990 lines (6990 loc) · 204 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: 0d5721a4f92bef12dd8cca1a4ace85c25a173ae7cffa39bdf0e549541a83d213
channels:
- url: conda-forge
used_env_vars: []
- url: nvidia
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: cuda-version
version: '11.8'
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/conda-forge/noarch/cuda-version-11.8-h70ddcb2_2.conda
hash:
md5: 601900ec9ff06f62f76a247148e52c04
sha256: cb8a81465d5fa1b27e14981b7e1a9be4fc90945261a7459427e7bfb42129e26c
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: 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: libcufile
version: 1.4.0.31
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/nvidia/linux-64/libcufile-1.4.0.31-0.tar.bz2
hash:
md5: eacba45944720ae98bea25f468a11ca7
sha256: 12a5f558aceef5abd9f0f2d00716bd368f50a7d8ec71e8196c0d428d9a806463
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: poppler-data
version: 0.4.12
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/conda-forge/noarch/poppler-data-0.4.12-hd8ed1ab_0.conda
hash:
md5: d8d7293c5b37f39b2ac32940621c6592
sha256: 2f227e17b3c0346112815faa605502b66c1c4511a856127f2899abf15a98a2cf
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: 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: libcufile-dev
version: 1.4.0.31
manager: conda
platform: linux-64
dependencies:
libcufile: '>=1.4.0.31'
url: https://conda.anaconda.org/nvidia/linux-64/libcufile-dev-1.4.0.31-0.tar.bz2
hash:
md5: a8dfd661b50be828ea8e58d6fdd01363
sha256: 92b19b4988217a8e9b066e3f182b458f95aca2b2e4d489c14be09e65f13141d0
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: _openmp_mutex
version: '4.5'
manager: conda
platform: linux-64
dependencies:
_libgcc_mutex: '0.1'
llvm-openmp: '>=9.0.1'
url: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_kmp_llvm.tar.bz2
hash:
md5: 562b26ba2e19059551a811e72ab7f793
sha256: 84a66275da3a66e3f3e70e9d8f10496d807d01a9e4ec16cd2274cc5e28c478fc
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: aws-c-common
version: 0.9.3
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.9.3-hd590300_0.conda
hash:
md5: 434466e97a4174b0c4de114eb7100550
sha256: 6f3a9c285199f828ac1917112495b4e5f4ca578d385442f33aae282bd95618ac
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_0.conda
hash:
md5: 6642e4faa4804be3a0e7edfefbd16595
sha256: afe0f91314a1de2969bb7ebb92bf6c9d3326fb8cdbdc00d8111bad8952a8dc0f
category: main
optional: false
- name: cudatoolkit
version: 11.8.0
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc-ng: '>=12'
libstdcxx-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/cudatoolkit-11.8.0-h4ba93d1_12.conda
hash:
md5: 59a4d915d3406b3d11298e927db71ae0
sha256: fec3919316eef16368c2ab013c77beaf3f40b2f6a2f2bd5227bbd4ab7fa8dd8c
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: geos
version: 3.12.0
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
libstdcxx-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/geos-3.12.0-h59595ed_0.conda
hash:
md5: 3fdf79ef322c8379ae83be491d805369
sha256: c80ff0ed71db0d56567ee87df28bc442b596330ac241ab86f488e3139f0e2cae
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: gflags
version: 2.2.2
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/gflags-2.2.2-he1b5a44_1004.tar.bz2
hash:
md5: cddaf2c63ea4a5901cf09524c490ecdc
sha256: a853c0cacf53cfc59e1bca8d6e5cdfe9f38fce836f08c2a69e35429c2a492e77
category: main
optional: false
- name: giflib
version: 5.2.1
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/giflib-5.2.1-h0b41bf4_3.conda
hash:
md5: 96f3b11872ef6fad973eac856cd2624f
sha256: 41ec165704ccce2faa0437f4f53c03c06261a2cc9ff7614828e51427d9261f4b
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: json-c
version: '0.17'
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/json-c-0.17-h7ab15ed_0.conda
hash:
md5: 9961b1f100c3b6852bd97c9233d06979
sha256: 5646496ca07dfa1486d27ed07282967007811dfc63d6394652e87f94166ecae3
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: 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: libabseil
version: '20230802.1'
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
libstdcxx-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/libabseil-20230802.1-cxx17_h59595ed_0.conda
hash:
md5: 2785ddf4cb0e7e743477991d64353947
sha256: 8729021a93e67bb93b4e73ef0a132499db516accfea11561b667635bcd0507e7
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: libcrc32c
version: 1.1.2
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/libcrc32c-1.1.2-h9c3ff4c_0.tar.bz2
hash:
md5: c965a5aa0d5c1c37ffc62dff36e28400
sha256: fd1d153962764433fe6233f34a72cdeed5dcf8a883a85769e8295ce940b5b0c5
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: 3.0.0
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/libjpeg-turbo-3.0.0-hd590300_1.conda
hash:
md5: ea25936bb4080d843790b586850f82b8
sha256: b954e09b7e49c2f2433d6f3bb73868eda5e378278b0f8c1dd10a7ef090e14f2f
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: libnuma
version: 2.0.16
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/libnuma-2.0.16-h0b41bf4_1.conda
hash:
md5: 28bfe2cb11357ccc5be21101a6b7ce86
sha256: 814a50cba215548ec3ebfb53033ffb9b3b070b2966570ff44910b8d9ba1c359d
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: libtool
version: 2.4.7
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/libtool-2.4.7-h27087fc_0.conda
hash:
md5: f204c8ba400ec475452737094fb81d52
sha256: 345b3b580ef91557a82425ea3f432a70a8748c040deb14570b9f4dca4af3e3d1
category: main
optional: false
- name: libutf8proc
version: 2.8.0
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/libutf8proc-2.8.0-h166bdaf_0.tar.bz2
hash:
md5: ede4266dc02e875fe1ea77b25dd43747
sha256: 49082ee8d01339b225f7f8c60f32a2a2c05fe3b16f31b554b4fb2c1dea237d1c
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: libuv
version: 1.46.0
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/libuv-1.46.0-hd590300_0.conda
hash:
md5: d23c76f7e6dcd6243d1b6ef5e62d17d2
sha256: 4bc4c946e9a532c066442714eeeeb1ffbd03cd89789c4047293f5e782b5fedd7
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: lzo
version: '2.10'
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=7.5.0'
url: https://conda.anaconda.org/conda-forge/linux-64/lzo-2.10-h516909a_1000.tar.bz2
hash:
md5: bb14fcb13341b81d5eb386423b9d2bac
sha256: 25d16e6aaa3d0b450e61d0c4fadd7c9fd17f16e2fef09b34507209342d63c9f6
category: main
optional: false
- name: nccl
version: 2.19.3.1
manager: conda
platform: linux-64
dependencies:
cuda-version: '>=11.8,<12.0a0'
libgcc-ng: '>=12'
libstdcxx-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/nccl-2.19.3.1-h6103f9b_0.conda
hash:
md5: 5b4426d8e0534cd844924728d2137666
sha256: 0464f985f4e1ab8ccbb4b3d169ece570a3ac6e6302d87e1da7b0ef35bc196249
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: 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: 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: 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: rdma-core
version: '28.9'
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc-ng: '>=12'
libstdcxx-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/rdma-core-28.9-h59595ed_1.conda
hash:
md5: aeffb7c06b5f65e55e6c637408dc4100
sha256: 832f9393ab3144ce6468c6f150db9d398fad4451e96a8879afb3059f0c9902f6
category: main
optional: false
- name: sleef
version: 3.5.1
manager: conda
platform: linux-64
dependencies:
_openmp_mutex: '>=4.5'
libgcc-ng: '>=9.4.0'
url: https://conda.anaconda.org/conda-forge/linux-64/sleef-3.5.1-h9b69904_2.tar.bz2
hash:
md5: 6e016cf4c525d04a7bd038cee53ad3fd
sha256: 77d644a16f682e6d01df63fe9d25315011393498b63cf08c0e548780e46b2170
category: main
optional: false
- name: snappy
version: 1.1.10
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
libstdcxx-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/snappy-1.1.10-h9fff704_0.conda
hash:
md5: e6d228cd0bb74a51dd18f5bfce0b4115
sha256: 02219f2382b4fe39250627dade087a4412d811936a5a445636b7260477164eac
category: main
optional: false
- name: tzcode
version: 2023c
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/tzcode-2023c-h0b41bf4_0.conda
hash:
md5: 0c0533894f21c3d35697cb8378d390e2
sha256: 62b0d3eee4260d310f578015305834b8a588377f796e5e290ec267da8a51a027
category: main
optional: false
- name: uriparser
version: 0.9.7
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
libstdcxx-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/uriparser-0.9.7-hcb278e6_1.conda
hash:
md5: 2c46deb08ba9b10e90d0a6401ad65deb
sha256: bc7670384fc3e519b376eab25b2c747afe392b243f17e881075231f4a0f2e5a0
category: main
optional: false
- name: xorg-kbproto
version: 1.0.7
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=9.3.0'
url: https://conda.anaconda.org/conda-forge/linux-64/xorg-kbproto-1.0.7-h7f98852_1002.tar.bz2
hash:
md5: 4b230e8381279d76131116660f5a241a
sha256: e90b0a6a5d41776f11add74aa030f789faf4efd3875c31964d6f9cfa63a10dd1
category: main
optional: false
- name: xorg-libice
version: 1.1.1
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libice-1.1.1-hd590300_0.conda
hash:
md5: b462a33c0be1421532f28bfe8f4a7514
sha256: 5aa9b3682285bb2bf1a8adc064cb63aff76ef9178769740d855abb42b0d24236
category: main
optional: false
- name: xorg-libxau
version: 1.0.11
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxau-1.0.11-hd590300_0.conda
hash:
md5: 2c80dc38fface310c9bd81b17037fee5
sha256: 309751371d525ce50af7c87811b435c176915239fc9e132b99a25d5e1703f2d4
category: main
optional: false
- name: xorg-libxdmcp
version: 1.1.3
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=9.3.0'
url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxdmcp-1.1.3-h7f98852_0.tar.bz2
hash:
md5: be93aabceefa2fac576e971aef407908
sha256: 4df7c5ee11b8686d3453e7f3f4aa20ceef441262b49860733066c52cfd0e4a77
category: main
optional: false
- name: xorg-renderproto
version: 0.11.1
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=9.3.0'
url: https://conda.anaconda.org/conda-forge/linux-64/xorg-renderproto-0.11.1-h7f98852_1002.tar.bz2
hash:
md5: 06feff3d2634e3097ce2fe681474b534
sha256: 38942930f233d1898594dd9edf4b0c0786f3dbc12065a0c308634c37fd936034
category: main
optional: false
- name: xorg-xextproto
version: 7.3.0
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/xorg-xextproto-7.3.0-h0b41bf4_1003.conda
hash:
md5: bce9f945da8ad2ae9b1d7165a64d0f87
sha256: b8dda3b560e8a7830fe23be1c58cc41f407b2e20ae2f3b6901eb5842ba62b743
category: main
optional: false
- name: xorg-xproto
version: 7.0.31
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=9.3.0'
url: https://conda.anaconda.org/conda-forge/linux-64/xorg-xproto-7.0.31-h7f98852_1007.tar.bz2
hash:
md5: b4a4381d54784606820704f7b5f05a15
sha256: f197bb742a17c78234c24605ad1fe2d88b1d25f332b75d73e5ba8cf8fbc2a10d
category: main
optional: false
- name: xz
version: 5.2.6
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2
hash:
md5: 2161070d867d1b1204ea749c8eec4ef0
sha256: 03a6d28ded42af8a347345f82f3eebdd6807a08526d47899a42d62d319609162
category: main
optional: false
- name: yaml
version: 0.2.5
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=9.4.0'
url: https://conda.anaconda.org/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2
hash:
md5: 4cb3ad778ec2d5a7acbdf254eb1c42ae
sha256: a4e34c710eeb26945bdbdaba82d3d74f60a78f54a874ec10d373811a5d217535
category: main
optional: false
- name: aws-c-cal
version: 0.6.2
manager: conda
platform: linux-64
dependencies:
aws-c-common: '>=0.9.3,<0.9.4.0a0'
libgcc-ng: '>=12'
openssl: '>=3.1.3,<4.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.6.2-h09139f6_2.conda
hash:
md5: 29c3112841eee851f6f5451f6d705782
sha256: f6f91c7d04be3888365499628f3369fc94dada451360bd82e5e3c61abeb7fc3e
category: main
optional: false
- name: aws-c-compression
version: 0.2.17
manager: conda
platform: linux-64
dependencies:
aws-c-common: '>=0.9.3,<0.9.4.0a0'
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-compression-0.2.17-h184a658_3.conda
hash:
md5: c62775b5028b5a4eda25037f9af7f5b3
sha256: 07f3431f097f64c1ee916c27ac7745bbf27a9b06768fa0449d9e0eaea1b6f4d2
category: main
optional: false
- name: aws-c-sdkutils
version: 0.1.12
manager: conda
platform: linux-64
dependencies:
aws-c-common: '>=0.9.3,<0.9.4.0a0'
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-sdkutils-0.1.12-h184a658_2.conda
hash:
md5: ba06d81b81ec3eaf4ee83cd47f808134
sha256: f8cea4495d2d6c622aa65257aa24958fde6e5f5d518772036ba1fe5dfd0666ad
category: main
optional: false
- name: aws-checksums
version: 0.1.17
manager: conda
platform: linux-64
dependencies:
aws-c-common: '>=0.9.3,<0.9.4.0a0'
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.1.17-h184a658_2.conda