-
-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathgpu.conda-lock.yml
1901 lines (1901 loc) · 56 KB
/
gpu.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 new.gpu.conda-lock.yml
# To update a single package to the latest version compatible with the version constraints in the source:
# conda-lock lock --lockfile new.gpu.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 gpu.environment.yml --lockfile new.gpu.conda-lock.yml
version: 1
metadata:
content_hash:
linux-64: 6af49ccea25c9159d409133633209985d50155b29366ccbf1b1c65bbfa2cc084
channels:
- url: conda-forge
used_env_vars: []
platforms:
- linux-64
sources:
- gpu.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: _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: antlr-python-runtime
version: 4.9.3
manager: conda
platform: linux-64
dependencies:
python: '>=3.6'
url: https://conda.anaconda.org/conda-forge/noarch/antlr-python-runtime-4.9.3-pyhd8ed1ab_1.tar.bz2
hash:
md5: c88eaec8de9ae1fa161205aa18e7a5b1
sha256: b91f8ab4ac2b48972fbee1fc8e092cc452fdf59156e4ff2322c94bbf73650f94
category: main
optional: false
- name: aom
version: 3.5.0
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
libstdcxx-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/aom-3.5.0-h27087fc_0.tar.bz2
hash:
md5: a08150fd2298460cd1fcccf626305642
sha256: ed05f72ffa891e3c6a507eac6f0221c85c1f0611491328cd098308060740891c
category: main
optional: false
- name: beautifulsoup4
version: 4.12.3
manager: conda
platform: linux-64
dependencies:
python: '>=3.6'
soupsieve: '>=1.2'
url: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.3-pyha770c72_0.conda
hash:
md5: 332493000404d8411859539a5a630865
sha256: 7b05b2d0669029326c623b9df7a29fa49d1982a9e7e31b2fea34b4c9a4a72317
category: main
optional: false
- name: brotli-python
version: 1.1.0
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc: '>=13'
libstdcxx: '>=13'
python: '>=3.10,<3.11.0a0'
python_abi: 3.10.*
url: https://conda.anaconda.org/conda-forge/linux-64/brotli-python-1.1.0-py310hf71b8c6_2.conda
hash:
md5: bf502c169c71e3c6ac0d6175addfacc2
sha256: 14f1e89d3888d560a553f40ac5ba83e4435a107552fa5b2b2029a7472554c1ef
category: main
optional: false
- name: bzip2
version: 1.0.8
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda
hash:
md5: 62ee74e96c5ebb0af99386de58cf9553
sha256: 5ced96500d945fb286c9c838e54fa759aa04a7129c59800f0846b4335cee770d
category: main
optional: false
- name: ca-certificates
version: 2024.8.30
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.8.30-hbcca054_0.conda
hash:
md5: c27d1c142233b5bc9ca570c6e2e0c244
sha256: afee721baa6d988e27fef1832f68d6f32ac8cc99cdf6015732224c2841a09cea
category: main
optional: false
- name: certifi
version: 2024.8.30
manager: conda
platform: linux-64
dependencies:
python: '>=3.7'
url: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.8.30-pyhd8ed1ab_0.conda
hash:
md5: 12f7d00853807b0531775e9be891cb11
sha256: 7020770df338c45ac6b560185956c32f0a5abf4b76179c037f115fc7d687819f
category: main
optional: false
- name: cffi
version: 1.17.1
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libffi: '>=3.4,<4.0a0'
libgcc: '>=13'
pycparser: ''
python: '>=3.10,<3.11.0a0'
python_abi: 3.10.*
url: https://conda.anaconda.org/conda-forge/linux-64/cffi-1.17.1-py310h8deb56e_0.conda
hash:
md5: 1fc24a3196ad5ede2a68148be61894f4
sha256: 1b389293670268ab80c3b8735bc61bc71366862953e000efbb82204d00e41b6c
category: main
optional: false
- name: charset-normalizer
version: 3.4.0
manager: conda
platform: linux-64
dependencies:
python: '>=3.7'
url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.0-pyhd8ed1ab_0.conda
hash:
md5: a374efa97290b8799046df7c5ca17164
sha256: 1873ac45ea61f95750cb0b4e5e675d1c5b3def937e80c7eebb19297f76810be8
category: main
optional: false
- name: codetiming
version: 1.4.0
manager: conda
platform: linux-64
dependencies:
dataclasses: ''
python: '>=3.6'
url: https://conda.anaconda.org/conda-forge/noarch/codetiming-1.4.0-pyhd8ed1ab_0.tar.bz2
hash:
md5: a1f3168974155fc60367ef1a88e57569
sha256: fe95abca179c43648fb36957d7dd5526c5e28ee04092e303e7b1778c9e964355
category: main
optional: false
- name: colorama
version: 0.4.6
manager: conda
platform: linux-64
dependencies:
python: '>=3.7'
url: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2
hash:
md5: 3faab06a954c2a04039983f2c4a50d99
sha256: 2c1b2e9755ce3102bca8d69e8f26e4f087ece73f50418186aee7c74bef8e1698
category: main
optional: false
- name: cuda-version
version: '11.2'
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/conda-forge/noarch/cuda-version-11.2-hb11dac2_3.conda
hash:
md5: 62cac0856c698032c9d1111581edabb5
sha256: 6f73773b72270f9e9c9ab24c7f08e343076e07ee0976001fcd712bbb073396f8
category: main
optional: false
- name: cudatoolkit
version: 11.2.2
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.2.2-hc23eb0c_13.conda
hash:
md5: 8494b1c8dcc0ec01f2d4652a90cd01ef
sha256: c1f87f8b7c05abc56902ebe165fb8d6ca2302b866347097eba04e8728a91bd3f
category: main
optional: false
- name: cudnn
version: 8.9.7.29
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
cuda-version: '>=11.0,<12.0a0'
cudatoolkit: 11.*
libgcc-ng: '>=12'
libstdcxx-ng: '>=12'
libzlib: '>=1.2.13,<2.0.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/cudnn-8.9.7.29-hbc23b4c_3.conda
hash:
md5: 4a2d5fab2871d95544de4e1752948d0f
sha256: c553234d447d9938556f067aba7a4686c8e5427e03e740e67199da3782cc420c
category: main
optional: false
- name: dataclasses
version: '0.8'
manager: conda
platform: linux-64
dependencies:
python: '>=3.7'
url: https://conda.anaconda.org/conda-forge/noarch/dataclasses-0.8-pyhc8e2a94_3.tar.bz2
hash:
md5: a362b2124b06aad102e2ee4581acee7d
sha256: 63a83e62e0939bc1ab32de4ec736f6403084198c4639638b354a352113809c92
category: main
optional: false
- name: ffmpeg
version: 4.4.2
manager: conda
platform: linux-64
dependencies:
aom: '>=3.5.0,<3.6.0a0'
bzip2: '>=1.0.8,<2.0a0'
fontconfig: '>=2.14.1,<3.0a0'
fonts-conda-ecosystem: ''
freetype: '>=2.12.1,<3.0a0'
gmp: '>=6.2.1,<7.0a0'
gnutls: '>=3.7.8,<3.8.0a0'
lame: '>=3.100,<3.101.0a0'
libgcc-ng: '>=12'
libstdcxx-ng: '>=12'
libva: '>=2.16.0,<3.0a0'
libvpx: '>=1.11.0,<1.12.0a0'
libxml2: '>=2.10.3,<3.0.0a0'
libzlib: '>=1.2.13,<2.0.0a0'
openh264: '>=2.3.1,<2.3.2.0a0'
svt-av1: '>=1.4.1,<1.4.2.0a0'
x264: '>=1!164.3095,<1!165'
x265: '>=3.5,<3.6.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/ffmpeg-4.4.2-gpl_h8dda1f0_112.conda
hash:
md5: 3a2af583ab741078cd7336fc16a94c24
sha256: 92ceac7ac2f09846c963b1687a0b72194deefa0920653e9d4ff2b0bcae706523
category: main
optional: false
- name: filelock
version: 3.16.1
manager: conda
platform: linux-64
dependencies:
python: '>=3.7'
url: https://conda.anaconda.org/conda-forge/noarch/filelock-3.16.1-pyhd8ed1ab_0.conda
hash:
md5: 916f8ec5dd4128cd5f207a3c4c07b2c6
sha256: 1da766da9dba05091af87977922fe60dc7464091a9ccffb3765d403189d39be4
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.15.0
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
freetype: '>=2.12.1,<3.0a0'
libexpat: '>=2.6.3,<3.0a0'
libgcc: '>=13'
libuuid: '>=2.38.1,<3.0a0'
libzlib: '>=1.3.1,<2.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/fontconfig-2.15.0-h7e30c49_1.conda
hash:
md5: 8f5b0b297b59e1ac160ad4beec99dbee
sha256: 7093aa19d6df5ccb6ca50329ef8510c6acb6b0d8001191909397368b65b02113
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-0.tar.bz2
hash:
md5: f766549260d6815b0c52253f1fb1bb29
sha256: 53f23a3319466053818540bcdf2091f253cbdbab1e0e9ae7b9e509dcaa2a5e38
category: main
optional: false
- name: freetype
version: 2.12.1
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
libpng: '>=1.6.39,<1.7.0a0'
libzlib: '>=1.2.13,<2.0.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/freetype-2.12.1-h267a509_2.conda
hash:
md5: 9ae35c3d96db2c94ce0cef86efdfa2cb
sha256: b2e3c449ec9d907dd4656cb0dc93e140f447175b125a3824b31368b06c666bb6
category: main
optional: false
- name: gdown
version: 5.2.0
manager: conda
platform: linux-64
dependencies:
beautifulsoup4: ''
filelock: ''
python: '>=3.8'
requests: ''
tqdm: ''
url: https://conda.anaconda.org/conda-forge/noarch/gdown-5.2.0-pyhd8ed1ab_0.conda
hash:
md5: 29903392720ea0d6162b772ff97235c3
sha256: 5a645ec883846558db8b6c3ea370602a7b2783e8c9d1c9b59f385a7f43f8f26c
category: main
optional: false
- name: gettext
version: 0.22.5
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
gettext-tools: 0.22.5
libasprintf: 0.22.5
libasprintf-devel: 0.22.5
libgcc-ng: '>=12'
libgettextpo: 0.22.5
libgettextpo-devel: 0.22.5
libstdcxx-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/gettext-0.22.5-he02047a_3.conda
hash:
md5: c7f243bbaea97cd6ea1edd693270100e
sha256: c3d9a453f523acbf2b3e1c82a42edfc7c7111b4686a2180ab48cb9b51a274218
category: main
optional: false
- name: gettext-tools
version: 0.22.5
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/gettext-tools-0.22.5-he02047a_3.conda
hash:
md5: fcd2016d1d299f654f81021e27496818
sha256: 0fd003953ce1ce9f4569458aab9ffaa397e3be2bc069250e2f05fd93b0ad2976
category: main
optional: false
- name: gmp
version: 6.3.0
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
libstdcxx-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/gmp-6.3.0-hac33072_2.conda
hash:
md5: c94a5994ef49749880a8139cf9afcbe1
sha256: 309cf4f04fec0c31b6771a5809a1909b4b3154a2208f52351e1ada006f4c750c
category: main
optional: false
- name: gnutls
version: 3.7.9
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
libidn2: '>=2,<3.0a0'
libstdcxx-ng: '>=12'
libtasn1: '>=4.19.0,<5.0a0'
nettle: '>=3.9.1,<3.10.0a0'
p11-kit: '>=0.24.1,<0.25.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/gnutls-3.7.9-hb077bed_0.conda
hash:
md5: 33eded89024f21659b1975886a4acf70
sha256: 52d824a5d2b8a5566cd469cae6ad6920469b5a15b3e0ddc609dd29151be71be2
category: main
optional: false
- name: googleapis-common-protos
version: 1.66.0
manager: conda
platform: linux-64
dependencies:
protobuf: '>=3.20.2,<6.0.0.dev0,!=3.20.0,!=3.20.1,!=4.21.1,!=4.21.2,!=4.21.3,!=4.21.4,!=4.21.5'
python: '>=3.9'
url: https://conda.anaconda.org/conda-forge/noarch/googleapis-common-protos-1.66.0-pyhff2d567_0.conda
hash:
md5: 4861e30ff0cd566ea6fb4593e3b7c22a
sha256: d8d19575a827f2c62500949b9536efdd6b5406c9f546a73b6a87ac90b03a5875
category: main
optional: false
- name: h2
version: 4.1.0
manager: conda
platform: linux-64
dependencies:
hpack: '>=4.0,<5'
hyperframe: '>=6.0,<7'
python: '>=3.6.1'
url: https://conda.anaconda.org/conda-forge/noarch/h2-4.1.0-pyhd8ed1ab_0.tar.bz2
hash:
md5: b748fbf7060927a6e82df7cb5ee8f097
sha256: bfc6a23849953647f4e255c782e74a0e18fe16f7e25c7bb0bc57b83bb6762c7a
category: main
optional: false
- name: hpack
version: 4.0.0
manager: conda
platform: linux-64
dependencies:
python: ''
url: https://conda.anaconda.org/conda-forge/noarch/hpack-4.0.0-pyh9f0ad1d_0.tar.bz2
hash:
md5: 914d6646c4dbb1fd3ff539830a12fd71
sha256: 5dec948932c4f740674b1afb551223ada0c55103f4c7bf86a110454da3d27cb8
category: main
optional: false
- name: hydra-core
version: 1.3.2
manager: conda
platform: linux-64
dependencies:
antlr-python-runtime: 4.9.*
importlib_resources: ''
omegaconf: '>=2.2,<2.4'
packaging: ''
python: '>=3.6'
url: https://conda.anaconda.org/conda-forge/noarch/hydra-core-1.3.2-pyhd8ed1ab_0.conda
hash:
md5: 297d09ccdcec5b347d44c88f2b61cf03
sha256: 35044b4bb1059c4ed7d8392b776e663a390ad7a2bb6f7e2f09ecd5e9b5d40b75
category: main
optional: false
- name: hyperframe
version: 6.0.1
manager: conda
platform: linux-64
dependencies:
python: '>=3.6'
url: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.0.1-pyhd8ed1ab_0.tar.bz2
hash:
md5: 9f765cbfab6870c8435b9eefecd7a1f4
sha256: e374a9d0f53149328134a8d86f5d72bca4c6dcebed3c0ecfa968c02996289330
category: main
optional: false
- name: idna
version: '3.10'
manager: conda
platform: linux-64
dependencies:
python: '>=3.6'
url: https://conda.anaconda.org/conda-forge/noarch/idna-3.10-pyhd8ed1ab_0.conda
hash:
md5: 7ba2ede0e7c795ff95088daf0dc59753
sha256: 8c57fd68e6be5eecba4462e983aed7e85761a519aab80e834bbd7794d4b545b2
category: main
optional: false
- name: importlib_resources
version: 6.4.5
manager: conda
platform: linux-64
dependencies:
python: '>=3.8'
zipp: '>=3.1.0'
url: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.4.5-pyhd8ed1ab_0.conda
hash:
md5: c808991d29b9838fb4d96ce8267ec9ec
sha256: 2cb9db3e40033c3df72d3defc678a012840378fd55a67e4351363d4b321a0dc1
category: main
optional: false
- name: jpeg
version: 9e
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/jpeg-9e-h0b41bf4_3.conda
hash:
md5: c7a069243e1fbe9a556ed2ec030e6407
sha256: 8f73194d09c9ea4a7e2b3562766b8d72125cc147b62c7cf83393e3a3bbfd581b
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: lcms2
version: '2.15'
manager: conda
platform: linux-64
dependencies:
jpeg: '>=9e,<10a'
libgcc-ng: '>=12'
libtiff: '>=4.5.0,<4.6.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/lcms2-2.15-hfd0df8a_0.conda
hash:
md5: aa8840cdf17ef0c6084d1e24abc7a28b
sha256: 443e926b585528112ec6aa4d85bf087722914ed8d85a2f75ae47c023c55c4238
category: main
optional: false
- name: ld_impl_linux-64
version: '2.43'
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
url: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.43-h712a8e2_2.conda
hash:
md5: 048b02e3962f066da18efe3a21b77672
sha256: 7c91cea91b13f4314d125d1bedb9d03a29ebbd5080ccdea70260363424646dbe
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: libasprintf
version: 0.22.5
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/libasprintf-0.22.5-he8f35ee_3.conda
hash:
md5: 4fab9799da9571266d05ca5503330655
sha256: 2da5c735811cbf38c7f7844ab457ff8b25046bbf5fe5ebd5dc1c2fafdf4fbe1c
category: main
optional: false
- name: libasprintf-devel
version: 0.22.5
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libasprintf: 0.22.5
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/libasprintf-devel-0.22.5-he8f35ee_3.conda
hash:
md5: 1091193789bb830127ed067a9e01ac57
sha256: ccc7967e298ddf3124c8ad9741c7180dc6f778ae4135ec87978214f7b3c64dc2
category: main
optional: false
- name: libblas
version: 3.9.0
manager: conda
platform: linux-64
dependencies:
mkl: '>=2022.1.0,<2023.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-16_linux64_mkl.tar.bz2
hash:
md5: 85f61af03fd291dae33150ffe89dc09a
sha256: 24e656f13b402b6fceb88df386768445ab9beb657d451a8e5a88d4b3380cf7a4
category: main
optional: false
- name: libcblas
version: 3.9.0
manager: conda
platform: linux-64
dependencies:
libblas: 3.9.0
url: https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.9.0-16_linux64_mkl.tar.bz2
hash:
md5: 361bf757b95488de76c4f123805742d3
sha256: 892ba10508f22310ccfe748df1fd3b6c7f20e7b6f6b79e69ed337863551c1bd8
category: main
optional: false
- name: libdeflate
version: '1.17'
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/libdeflate-1.17-h0b41bf4_0.conda
hash:
md5: 5cc781fd91968b11a8a7fdbee0982676
sha256: f9983a8ea03531f2c14bce76c870ca325c0fddf0c4e872bff1f78bc52624179c
category: main
optional: false
- name: libdrm
version: 2.4.123
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc-ng: '>=13'
libpciaccess: '>=0.18,<0.19.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/libdrm-2.4.123-hb9d3cd8_0.conda
hash:
md5: ee605e794bdc14e2b7f84c4faa0d8c2c
sha256: 5f274243fc7480b721a4ed6623c72d07b86a508a1363a85f0f16451ab655ace8
category: main
optional: false
- name: libexpat
version: 2.6.4
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc: '>=13'
url: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.6.4-h5888daf_0.conda
hash:
md5: db833e03127376d461e1e13e76f09b6c
sha256: 56541b98447b58e52d824bd59d6382d609e11de1f8adf20b23143e353d2b8d26
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: libgcc
version: 14.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-14.2.0-h77fa898_1.conda
hash:
md5: 3cb76c3f10d3bc7f1105b2fc9db984df
sha256: 53eb8a79365e58849e7b1a068d31f4f9e718dc938d6f2c03e960345739a03569
category: main
optional: false
- name: libgcc-ng
version: 14.2.0
manager: conda
platform: linux-64
dependencies:
libgcc: 14.2.0
url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-14.2.0-h69a702a_1.conda
hash:
md5: e39480b9ca41323497b05492a63bc35b
sha256: 3a76969c80e9af8b6e7a55090088bc41da4cffcde9e2c71b17f44d37b7cb87f7
category: main
optional: false
- name: libgettextpo
version: 0.22.5
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/libgettextpo-0.22.5-he02047a_3.conda
hash:
md5: efab66b82ec976930b96d62a976de8e7
sha256: 7f2d1f4d69973e2c3c3d2b6420d5eb989982baba97d63ab2d7a2b25a92d886b4
category: main
optional: false
- name: libgettextpo-devel
version: 0.22.5
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc-ng: '>=12'
libgettextpo: 0.22.5
url: https://conda.anaconda.org/conda-forge/linux-64/libgettextpo-devel-0.22.5-he02047a_3.conda
hash:
md5: 9aba7960731e6b4547b3a52f812ed801
sha256: 0a66cdd46d1cd5201061252535cd91905b3222328a9294c1a5bcd32e85531545
category: main
optional: false
- name: libhwloc
version: 2.11.1
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc-ng: '>=12'
libstdcxx-ng: '>=12'
libxml2: '>=2.12.7,<3.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/libhwloc-2.11.1-default_hecaa2ac_1000.conda
hash:
md5: f54aeebefb5c5ff84eca4fb05ca8aa3a
sha256: 8473a300e10b79557ce0ac81602506b47146aff3df4cc3568147a7dd07f480a2
category: main
optional: false
- name: libiconv
version: '1.17'
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.17-hd590300_2.conda
hash:
md5: d66573916ffcf376178462f1b61c941e
sha256: 8ac2f6a9f186e76539439e50505d98581472fedb347a20e7d1f36429849f05c9
category: main
optional: false
- name: libidn2
version: 2.3.7
manager: conda
platform: linux-64
dependencies:
gettext: '>=0.21.1,<1.0a0'
libgcc-ng: '>=12'
libunistring: '>=0,<1.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/libidn2-2.3.7-hd590300_0.conda
hash:
md5: 2b7b0d827c6447cc1d85dc06d5b5de46
sha256: 253f9be445c58bf07b39d8f67ac08bccc5010c75a8c2070cddfb6c20e1ca4f4f
category: main
optional: false
- name: liblapack
version: 3.9.0
manager: conda
platform: linux-64
dependencies:
libblas: 3.9.0
url: https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-16_linux64_mkl.tar.bz2
hash:
md5: a2f166748917d6d6e4707841ca1f519e
sha256: d6201f860b2d76ed59027e69c2bbad6d1cb211a215ec9705cc487cde488fa1fa
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: libpciaccess
version: '0.18'
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/libpciaccess-0.18-hd590300_0.conda
hash:
md5: 48f4330bfcd959c3cfb704d424903c82
sha256: c0a30ac74eba66ea76a4f0a39acc7833f5ed783a632ca3bb6665b2d81aabd2fb
category: main
optional: false
- name: libpng
version: 1.6.44
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc: '>=13'
libzlib: '>=1.3.1,<2.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.44-hadc24fc_0.conda
hash:
md5: f4cc49d7aa68316213e4b12be35308d1
sha256: e5b14f7a01c2db4362d8591f42f82f336ed48d5e4079e4d1f65d0c2a3637ea78
category: main
optional: false
- name: libprotobuf
version: 3.20.3
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
libstdcxx-ng: '>=12'
libzlib: '>=1.2.13,<2.0.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-3.20.3-h3eb15da_0.conda
hash:
md5: af581c55e6ff3a93af3ae710e091a80d
sha256: f9a34009abbaee35f570d0e3f27a9f606e5fedd953bd7b4a6fe17febe86a15a8
category: main
optional: false
- name: libsqlite
version: 3.47.0
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc: '>=13'
libzlib: '>=1.3.1,<2.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.47.0-hadc24fc_1.conda
hash:
md5: b6f02b52a174e612e89548f4663ce56a
sha256: 8a9aadf996a2399f65b679c6e7f29139d5059f699c63e6d7b50e20db10c00508
category: main
optional: false
- name: libstdcxx
version: 14.2.0
manager: conda
platform: linux-64
dependencies:
libgcc: 14.2.0
url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-14.2.0-hc0a3c3a_1.conda
hash:
md5: 234a5554c53625688d51062645337328
sha256: 4661af0eb9bdcbb5fb33e5d0023b001ad4be828fccdcc56500059d56f9869462
category: main
optional: false
- name: libstdcxx-ng
version: 14.2.0
manager: conda
platform: linux-64
dependencies:
libstdcxx: 14.2.0
url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-14.2.0-h4852527_1.conda
hash:
md5: 8371ac6457591af2cf6159439c1fd051
sha256: 25bb30b827d4f6d6f0522cc0579e431695503822f144043b93c50237017fffd8
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: libtiff
version: 4.5.0
manager: conda
platform: linux-64
dependencies:
jpeg: '>=9e,<10a'
lerc: '>=4.0.0,<5.0a0'
libdeflate: '>=1.17,<1.18.0a0'
libgcc-ng: '>=12'
libstdcxx-ng: '>=12'
libwebp-base: '>=1.2.4,<2.0a0'
libzlib: '>=1.2.13,<2.0.0a0'
xz: '>=5.2.6,<6.0a0'
zstd: '>=1.5.2,<1.6.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/libtiff-4.5.0-h6adf6a1_2.conda
hash:
md5: 2e648a34072eb39d7c4fc2a9981c5f0c
sha256: e3e18d91fb282b61288d4fd2574dfa31f7ae90ef2737f96722fb6ad3257862ee
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: libva
version: 2.18.0
manager: conda
platform: linux-64
dependencies:
libdrm: '>=2.4.114,<2.5.0a0'
libgcc-ng: '>=12'
xorg-libx11: '>=1.8.4,<2.0a0'
xorg-libxext: '>=1.3.4,<2.0a0'
xorg-libxfixes: ''
url: https://conda.anaconda.org/conda-forge/linux-64/libva-2.18.0-h0b41bf4_0.conda
hash:
md5: 56e049224de34bbe0478aad422227942
sha256: e7254d0111a403ffe707e2ad39b6ce49a2be733e751d14a7255b0cb20da2a16b
category: main
optional: false
- name: libvpx
version: 1.11.0
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/libvpx-1.11.0-h9c3ff4c_3.tar.bz2