-
Notifications
You must be signed in to change notification settings - Fork 3
/
conda-lock.yml
10076 lines (10076 loc) · 294 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:
win-64: e206d101be40fce125cb8ba3cb14b8c36b897e0b7cc717407758c1eabb486658
linux-64: 9da9eae6b3ca6ca4de87fef35a90692df61e9552258ea9b2b56ff5bc92c10884
osx-64: 488d2ce573cecb4a92b9c63060f365510425ea87504d0924855048eae9de8506
osx-arm64: 357654310fa114d95241f787bf2a9610977f11a32a069c0c1849774fbb6e36d1
channels:
- url: defaults
used_env_vars: []
- url: conda-forge
used_env_vars: []
platforms:
- linux-64
- osx-64
- osx-arm64
- win-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: blas
version: '1.0'
manager: conda
platform: linux-64
dependencies: {}
url: https://repo.anaconda.com/pkgs/main/linux-64/blas-1.0-openblas.conda
hash:
md5: 9ddfcaef10d79366c90128f5dc444be8
sha256: c85b5d0a336b5be0f415c71fd7fe2eca59e09f42221bfa684aafef5510ba5487
category: main
optional: false
- name: ca-certificates
version: 2023.08.22
manager: conda
platform: linux-64
dependencies: {}
url: https://repo.anaconda.com/pkgs/main/linux-64/ca-certificates-2023.08.22-h06a4308_0.conda
hash:
md5: 243d5065a09a3e85ab888c05f5b6445a
sha256: 1d721d9183dc6e5e6fd639827f6755aa3250d9c65d66f2108c4bc9d08208382a
category: main
optional: false
- name: ld_impl_linux-64
version: '2.38'
manager: conda
platform: linux-64
dependencies: {}
url: https://repo.anaconda.com/pkgs/main/linux-64/ld_impl_linux-64-2.38-h1181459_1.conda
hash:
md5: 68eedfd9c06f2b0e6888d8db345b7f5b
sha256: 0c7a6f340f4a9e15cc99b3c7e11f07c7670a9b881161739edd77753e5530fe31
category: main
optional: false
- name: libgfortran5
version: 11.2.0
manager: conda
platform: linux-64
dependencies: {}
url: https://repo.anaconda.com/pkgs/main/linux-64/libgfortran5-11.2.0-h1234567_1.conda
hash:
md5: 36a01a8c30e0cadf0d3e842c50b73f3b
sha256: 83df17eb4be4232b6616f4a713624fab63cd8c41ea9957941b85e302b8954268
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: tzdata
version: 2023c
manager: conda
platform: linux-64
dependencies: {}
url: https://repo.anaconda.com/pkgs/main/noarch/tzdata-2023c-h04d1e81_0.conda
hash:
md5: 29db02adf8808f7c64642cead3e28acd
sha256: aa653896749686eb15c28c719a57df597bced46f983b1fdbcc9db3e2db9cc795
category: main
optional: false
- name: libgfortran-ng
version: 11.2.0
manager: conda
platform: linux-64
dependencies:
libgfortran5: 11.2.0.*
__glibc: '>=2.17'
url: https://repo.anaconda.com/pkgs/main/linux-64/libgfortran-ng-11.2.0-h00389a5_1.conda
hash:
md5: 7429b67ab7b1d7cb99b9d1f3ddaec6e3
sha256: 228ecd4c12468e9f5e2e1806e02309f83b9fdbc5860efd3b34afc8be52b86511
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: _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: 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: bzip2
version: 1.0.8
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=7.3.0'
url: https://repo.anaconda.com/pkgs/main/linux-64/bzip2-1.0.8-h7b6447c_0.conda
hash:
md5: 9303f4af7c004e069bae22bde8d800ee
sha256: d3fa503351a53692866182a3819fb28d105e32c25d177bf6a9444c4153215e0d
category: main
optional: false
- name: expat
version: 2.5.0
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=11.2.0'
libstdcxx-ng: '>=11.2.0'
url: https://repo.anaconda.com/pkgs/main/linux-64/expat-2.5.0-h6a678d5_0.conda
hash:
md5: 9a21d99d49a0a556cf9590430dec8ec0
sha256: 6f4e78cdb27e60a1c1a269379bf48833a6ef9c3052731b2b009e79076ab40552
category: main
optional: false
- name: giflib
version: 5.2.1
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=11.2.0'
url: https://repo.anaconda.com/pkgs/main/linux-64/giflib-5.2.1-h5eee18b_3.conda
hash:
md5: aa7d64adb3cd8a75d398167f8c29afc3
sha256: 733084f0c4c2c5ef1723fab13f38b389d279c197f408fd724d399ef9c4ecfcc9
category: main
optional: false
- name: icu
version: '73.1'
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=11.2.0'
libstdcxx-ng: '>=11.2.0'
url: https://repo.anaconda.com/pkgs/main/linux-64/icu-73.1-h6a678d5_0.conda
hash:
md5: 6d09df641fc23f7d277a04dc7ea32dd4
sha256: f60e8a4b965ba50214f5a7a24308c060860fa5062d9d69d581287a520006abba
category: main
optional: false
- name: jpeg
version: 9e
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=11.2.0'
url: https://repo.anaconda.com/pkgs/main/linux-64/jpeg-9e-h5eee18b_1.conda
hash:
md5: ac373800fda872108412d1ccfe3fa572
sha256: 93c52c384566cf975a928b79563ae6f6cfe369252c6cbeb933dc174429efaa69
category: main
optional: false
- name: lerc
version: '3.0'
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=7.5.0'
libstdcxx-ng: '>=7.5.0'
url: https://repo.anaconda.com/pkgs/main/linux-64/lerc-3.0-h295c915_0.conda
hash:
md5: b97309770412f10bed8d9448f6f98f87
sha256: e9b84d986a46d22c6a1713b267f98ed3adbd486e423d2be74a3b42416e5b3e60
category: main
optional: false
- name: libbrotlicommon
version: 1.0.9
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=11.2.0'
url: https://repo.anaconda.com/pkgs/main/linux-64/libbrotlicommon-1.0.9-h5eee18b_7.conda
hash:
md5: 73357cb8fde4b92707ec575c8d8a7ebc
sha256: 3c819c1c8125c03f36f22bb766c18fff319f9f8916f441102d53d0eb8cebb03a
category: main
optional: false
- name: libdeflate
version: '1.17'
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=11.2.0'
url: https://repo.anaconda.com/pkgs/main/linux-64/libdeflate-1.17-h5eee18b_1.conda
hash:
md5: 82831ef0b6c9595382d74e0c281f6742
sha256: 52d8daa860ab9f69b5d0ac846a75b344ea727b4df41fb28fb7e14fc42b029259
category: main
optional: false
- name: libffi
version: 3.4.4
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=11.2.0'
libstdcxx-ng: '>=11.2.0'
url: https://repo.anaconda.com/pkgs/main/linux-64/libffi-3.4.4-h6a678d5_0.conda
hash:
md5: 06e288f9250abef59b9a367d151fc339
sha256: 2ac2a8507a48fdf8ba71ab38b0843ca373782a4a0c6367775498843c24bbc08c
category: main
optional: false
- name: libopenblas
version: 0.3.21
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=11.2.0'
libgfortran-ng: ''
libgfortran5: '>=11.2.0'
libstdcxx-ng: '>=11.2.0'
url: https://repo.anaconda.com/pkgs/main/linux-64/libopenblas-0.3.21-h043d6bf_0.conda
hash:
md5: 7f7324dcc3c4761a14f3e4ac443235a7
sha256: 2be562fee8f310c93c5e9bbe6dda834b7b9408164b108a0b570c8587591f1dc2
category: main
optional: false
- name: libsodium
version: 1.0.18
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=7.3.0'
url: https://repo.anaconda.com/pkgs/main/linux-64/libsodium-1.0.18-h7b6447c_0.conda
hash:
md5: c8783b20f0e14bc1d701352c26c264d5
sha256: be446d634c6f366fce72b77c7a3b2709f2fd29dd8eedab05df253e99ce08650a
category: main
optional: false
- name: libuuid
version: 1.41.5
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=11.2.0'
url: https://repo.anaconda.com/pkgs/main/linux-64/libuuid-1.41.5-h5eee18b_0.conda
hash:
md5: 4a6a2354414c9080327274aa514e5299
sha256: 2a401aafabac51b7736cfe12d2ab205d29052640ea8183253c9d0a8e7ed0d49a
category: main
optional: false
- name: libuv
version: 1.44.2
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=11.2.0'
url: https://repo.anaconda.com/pkgs/main/linux-64/libuv-1.44.2-h5eee18b_0.conda
hash:
md5: c2c7c0ae511d2f6de249732f53e27b2e
sha256: b9e61e938010cd52f6474d8dbc1794e9880e1468ab2df8c9547555885c189a33
category: main
optional: false
- name: libwebp-base
version: 1.3.2
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=11.2.0'
url: https://repo.anaconda.com/pkgs/main/linux-64/libwebp-base-1.3.2-h5eee18b_0.conda
hash:
md5: 9179fc7baefa1e027f572edbc519d805
sha256: 3a79101d96374cce0cdb4a6e6e699379930b6b3bcb4e5e2a23a47949a8958718
category: main
optional: false
- name: libxcb
version: '1.15'
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=7.5.0'
url: https://repo.anaconda.com/pkgs/main/linux-64/libxcb-1.15-h7f8727e_0.conda
hash:
md5: ada518dcadd6aaee9aae47ba9a671553
sha256: 9feb197125e4803d702cfdf10116c856e381b59f845b3346f50cb10e9bb8c643
category: main
optional: false
- name: lz4-c
version: 1.9.4
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=11.2.0'
libstdcxx-ng: '>=11.2.0'
url: https://repo.anaconda.com/pkgs/main/linux-64/lz4-c-1.9.4-h6a678d5_0.conda
hash:
md5: 53915e9402180a7f22ea619c41089520
sha256: 763815f0f0795e4240df99d1992ae9799b3ac62eaea97438086526988ef31073
category: main
optional: false
- name: ncurses
version: '6.4'
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=11.2.0'
url: https://repo.anaconda.com/pkgs/main/linux-64/ncurses-6.4-h6a678d5_0.conda
hash:
md5: 5558eec6e2191741a92f832ea826251c
sha256: a3150cb7655d3781b2ff2d8a7f1eea6103dbbd8835adc7429f7377e4886f6129
category: main
optional: false
- name: openssl
version: 3.0.12
manager: conda
platform: linux-64
dependencies:
ca-certificates: ''
libgcc-ng: '>=7.5.0'
url: https://repo.anaconda.com/pkgs/main/linux-64/openssl-3.0.12-h7f8727e_0.conda
hash:
md5: 48caaebab690276acf1bc1f3b56febf4
sha256: 8e9f9f22c008b63be4d7bc8039ce5acf5703e5bcf0d650dfab6e352bf0cf9181
category: main
optional: false
- name: pcre
version: '8.45'
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=7.5.0'
libstdcxx-ng: '>=7.5.0'
url: https://repo.anaconda.com/pkgs/main/linux-64/pcre-8.45-h295c915_0.conda
hash:
md5: b32ccc24d1d9808618c1e898da60f68d
sha256: 2bf0144c02007ade42d6a5305987974cc751c7f2e2107d6f88c23d43ce354d5a
category: main
optional: false
- name: xz
version: 5.4.2
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=11.2.0'
url: https://repo.anaconda.com/pkgs/main/linux-64/xz-5.4.2-h5eee18b_0.conda
hash:
md5: bcd31de48a0dcb44bc5b99675800c5cc
sha256: 7920b417109da78d4ec115447cf58775ac7ff7ff96ad6892c6aba118558e9db3
category: main
optional: false
- name: yaml
version: 0.2.5
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=7.3.0'
url: https://repo.anaconda.com/pkgs/main/linux-64/yaml-0.2.5-h7b6447c_0.conda
hash:
md5: 39fdbf4db769e494ffb06d95680c83d8
sha256: e22753e19432d606139f7a604757839d265dff93345226ba0732676526870e28
category: main
optional: false
- name: zlib
version: 1.2.13
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=11.2.0'
url: https://repo.anaconda.com/pkgs/main/linux-64/zlib-1.2.13-h5eee18b_0.conda
hash:
md5: 333e31fbfbb5057c92fa845ad6adef93
sha256: 4b69b6752e384459b1fc47dfc078598d5b687b3ccffe21591676b640481fb794
category: main
optional: false
- name: glib
version: 2.69.1
manager: conda
platform: linux-64
dependencies:
libffi: '>=3.4,<4.0a0'
libgcc-ng: '>=11.2.0'
libstdcxx-ng: '>=11.2.0'
pcre: '>=8.45,<9.0a0'
zlib: '>=1.2.13,<1.3.0a0'
url: https://repo.anaconda.com/pkgs/main/linux-64/glib-2.69.1-he621ea3_2.conda
hash:
md5: 51cf1899782b3f3744aedd143fbc07f3
sha256: 72c578259d3d01d68e1a348f4402c131f0b9a68ea42c0b0e334a3fb48c062375
category: main
optional: false
- name: libbrotlidec
version: 1.0.9
manager: conda
platform: linux-64
dependencies:
libbrotlicommon: 1.0.9
libgcc-ng: '>=11.2.0'
url: https://repo.anaconda.com/pkgs/main/linux-64/libbrotlidec-1.0.9-h5eee18b_7.conda
hash:
md5: 5c31f3bd570dc4d7d799117c98aad6e3
sha256: 1251c6405edf786520b8c60ac9cbea50961098725f193b5010020a4faf94458d
category: main
optional: false
- name: libbrotlienc
version: 1.0.9
manager: conda
platform: linux-64
dependencies:
libbrotlicommon: 1.0.9
libgcc-ng: '>=11.2.0'
url: https://repo.anaconda.com/pkgs/main/linux-64/libbrotlienc-1.0.9-h5eee18b_7.conda
hash:
md5: 289179174f1216582a949b528d8224af
sha256: fafc4cd52916e22ae3d7682f133cb0ea5491f78ee5c304cd049d0b81f708d3a5
category: main
optional: false
- name: libcups
version: 2.4.2
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=11.2.0'
libstdcxx-ng: '>=11.2.0'
openssl: '>=3.0.8,<4.0a0'
zlib: '>=1.2.13,<1.3.0a0'
url: https://repo.anaconda.com/pkgs/main/linux-64/libcups-2.4.2-h2d74bed_1.conda
hash:
md5: 3f265c2172a9e8c90a74037b6fa13685
sha256: 4d109c301c9d3988c449162f2587eba56eea459ad41fec5ad701146c8d93f874
category: main
optional: false
- name: libedit
version: 3.1.20221030
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=11.2.0'
ncurses: '>=6.3,<7.0a0'
url: https://repo.anaconda.com/pkgs/main/linux-64/libedit-3.1.20221030-h5eee18b_0.conda
hash:
md5: 7c724a17739aceaf9d1633ff06962137
sha256: a173782157a51369f2a6dbdaaad3dfbc78d1ad4b76a5648fe55bca9acc7f0205
category: main
optional: false
- name: libllvm14
version: 14.0.6
manager: conda
platform: linux-64
dependencies:
libffi: '>=3.4,<4.0a0'
libgcc-ng: '>=11.2.0'
libstdcxx-ng: '>=11.2.0'
zlib: '>=1.2.13,<1.3.0a0'
url: https://repo.anaconda.com/pkgs/main/linux-64/libllvm14-14.0.6-hdb19cb5_3.conda
hash:
md5: aefea2b45cf32f12b4f1ffaa70aa3201
sha256: 67e1d43b6b6872fab33c4c99c8c6d37e4cd011222f53482b661b6dd17997c73c
category: main
optional: false
- name: libpng
version: 1.6.39
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=11.2.0'
zlib: '>=1.2.13,<1.3.0a0'
url: https://repo.anaconda.com/pkgs/main/linux-64/libpng-1.6.39-h5eee18b_0.conda
hash:
md5: f6aee38184512eb05b06c2e94d39ab22
sha256: 61f2daac38a2be6429f5119b6288914d25b5bbf6ca0cb2cfe117ef44141514b1
category: main
optional: false
- name: libxml2
version: 2.10.4
manager: conda
platform: linux-64
dependencies:
icu: '>=73.1,<74.0a0'
libgcc-ng: '>=11.2.0'
xz: '>=5.4.2,<6.0a0'
zlib: '>=1.2.13,<1.3.0a0'
url: https://repo.anaconda.com/pkgs/main/linux-64/libxml2-2.10.4-hf1b16e4_1.conda
hash:
md5: e87849ce513f9968794f20bba620e6a4
sha256: 36b7078131678de111a35c63a9ff2b156b791564d6421ec63ae0fd09b1667db7
category: main
optional: false
- name: nodejs
version: 18.16.0
manager: conda
platform: linux-64
dependencies:
icu: '>=73.1,<74.0a0'
libgcc-ng: '>=11.2.0'
libstdcxx-ng: '>=11.2.0'
libuv: '>=1.44.2,<1.45.0a0'
openssl: '>=3.0.10,<4.0a0'
zlib: '>=1.2.13,<1.3.0a0'
url: https://repo.anaconda.com/pkgs/main/linux-64/nodejs-18.16.0-h2d74bed_1.conda
hash:
md5: 9c3738cca534448e2895c97678799377
sha256: ee250f2b6b3869fcc9939f82c158e3d2ab54d78492e3fc2c52ba474ff17ecda4
category: main
optional: false
- name: readline
version: '8.2'
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=11.2.0'
ncurses: '>=6.3,<7.0a0'
url: https://repo.anaconda.com/pkgs/main/linux-64/readline-8.2-h5eee18b_0.conda
hash:
md5: be42180685cce6e6b0329201d9f48efb
sha256: 3bf83c138bf0843b2fdacc5fe6b0956813b11107540d0233c148b97682e894fb
category: main
optional: false
- name: tk
version: 8.6.12
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=7.5.0'
zlib: '>=1.2.12,<1.3.0a0'
url: https://repo.anaconda.com/pkgs/main/linux-64/tk-8.6.12-h1ccaba5_0.conda
hash:
md5: fa10ff4aa631fa4aa090a6234d7770b9
sha256: 566579b236dff05c97b56857a808e192f2b7d420dad728b3d7e95fb553a3ce02
category: main
optional: false
- name: zeromq
version: 4.3.4
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=7.3.0'
libsodium: '>=1.0.18,<1.0.19.0a0'
libstdcxx-ng: '>=7.3.0'
url: https://repo.anaconda.com/pkgs/main/linux-64/zeromq-4.3.4-h2531618_0.conda
hash:
md5: 45ce422428d9c98f354aec4b5cbd1046
sha256: 3d338592b4515c84764249b5a7be8ebfdd82d1e79953ceb0c23352bf2f6817b6
category: main
optional: false
- name: zstd
version: 1.5.5
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=11.2.0'
libstdcxx-ng: '>=11.2.0'
lz4-c: '>=1.9.4,<1.10.0a0'
xz: '>=5.2.10,<6.0a0'
zlib: '>=1.2.13,<1.3.0a0'
url: https://repo.anaconda.com/pkgs/main/linux-64/zstd-1.5.5-hc292b87_0.conda
hash:
md5: 0f59d57dc21f585f4c282d60dfb46505
sha256: baba3dc12b6346aa6063f686ec1828507d52fdd6b3aa40a6a6ff089bb3ea6971
category: main
optional: false
- name: brotli-bin
version: 1.0.9
manager: conda
platform: linux-64
dependencies:
libbrotlidec: 1.0.9
libbrotlienc: 1.0.9
libgcc-ng: '>=11.2.0'
url: https://repo.anaconda.com/pkgs/main/linux-64/brotli-bin-1.0.9-h5eee18b_7.conda
hash:
md5: 1cc9b5d3edf7bf3247941f4b5c083242
sha256: ea5d7916a2856e0b0f004cf7a181430df3f22f72eedb391f96c030b237d1f1a8
category: main
optional: false
- name: dbus
version: 1.13.18
manager: conda
platform: linux-64
dependencies:
expat: '>=2.2.10,<3.0a0'
glib: ''
libgcc-ng: '>=7.3.0'
url: https://repo.anaconda.com/pkgs/main/linux-64/dbus-1.13.18-hb2f20db_0.conda
hash:
md5: 6a6a6f1391f807847404344489ef6cf4
sha256: 33cffa33d77d6bfa4e157322e188d82deb904efe1bc867d1ee08fcee9275b8ab
category: main
optional: false
- name: freetype
version: 2.12.1
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=11.2.0'
libpng: '>=1.6.37,<1.7.0a0'
zlib: '>=1.2.13,<1.3.0a0'
url: https://repo.anaconda.com/pkgs/main/linux-64/freetype-2.12.1-h4a9f257_0.conda
hash:
md5: bdc7b5952e9c5dca01bc2f4ccef2f974
sha256: d40c0f2889023791b4b9115cba9549fe97768bb2fa13d1721d8d095ff4f17a6f
category: main
optional: false
- name: gstreamer
version: 1.14.1
manager: conda
platform: linux-64
dependencies:
glib: '>=2.69.1,<3.0a0'
libgcc-ng: '>=11.2.0'
url: https://repo.anaconda.com/pkgs/main/linux-64/gstreamer-1.14.1-h5eee18b_1.conda
hash:
md5: f2f26e6f869b5d87f41bd059fae47c3e
sha256: dfd5bd5d2dfdc796e42b1b79bde009eb4727da5a7aa2a027f20ba8b52daa60e0
category: main
optional: false
- name: krb5
version: 1.20.1
manager: conda
platform: linux-64
dependencies:
libedit: '>=3.1.20221030,<4.0a0'
libgcc-ng: '>=11.2.0'
openssl: '>=3.0.8,<4.0a0'
url: https://repo.anaconda.com/pkgs/main/linux-64/krb5-1.20.1-h143b758_1.conda
hash:
md5: cf1accc86321fa25d6b978cc748039ae
sha256: 1e7de3da126496acf2e84d3693fc28abe5bbf278e0cefc361d8463323afd399a
category: main
optional: false
- name: libclang13
version: 14.0.6
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=11.2.0'
libllvm14: '>=14.0.6,<14.1.0a0'
libstdcxx-ng: '>=11.2.0'
zlib: '>=1.2.13,<1.3.0a0'
url: https://repo.anaconda.com/pkgs/main/linux-64/libclang13-14.0.6-default_he11475f_1.conda
hash:
md5: 44890feda1cf51639d9c94afbacce011
sha256: 32c850027ff05d3981a5c1d28e93ee40b497bf7616268523528515fe992f97b8
category: main
optional: false
- name: libtiff
version: 4.5.1
manager: conda
platform: linux-64
dependencies:
jpeg: '>=9e,<10a'
lerc: '>=3.0,<4.0a0'
libdeflate: '>=1.17,<1.18.0a0'
libgcc-ng: '>=11.2.0'
libstdcxx-ng: '>=11.2.0'
libwebp-base: '>=1.2.4,<2.0a0'
xz: '>=5.2.4,<6.0a0'
zlib: '>=1.2.13,<1.3.0a0'
zstd: '>=1.5.2,<1.6.0a0'
url: https://repo.anaconda.com/pkgs/main/linux-64/libtiff-4.5.1-h6a678d5_0.conda
hash:
md5: 235a671f74f0c4ecad9f9b3b107e3566
sha256: 646bf67b6d544f3d7ca1f9271e8a2ad8d3de5b4602b48cdf1b4bc4ed93e36261
category: main
optional: false
- name: libxkbcommon
version: 1.0.1
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=11.2.0'
libxcb: '>=1.15,<2.0a0'
libxml2: '>=2.10.3,<2.11.0a0'
url: https://repo.anaconda.com/pkgs/main/linux-64/libxkbcommon-1.0.1-h5eee18b_1.conda
hash:
md5: 888b2e8f1bbf21017c503826e2d24b50
sha256: d0ad34ddd1a6d391ec291ae7a126646b2f5794cdca4bd00cc6e2afc4233fb27e
category: main
optional: false
- name: sqlite
version: 3.41.2
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=11.2.0'
ncurses: '>=6.4,<7.0a0'
readline: '>=8.0,<9.0a0'
zlib: '>=1.2.13,<2.0a0'
url: https://repo.anaconda.com/pkgs/main/linux-64/sqlite-3.41.2-h5eee18b_0.conda
hash:
md5: c7086c9ceb6cfe1c4c729a774a2d88a5
sha256: b74eff1c483cb5e308ac499e5f1a29cfe70aa6e4a502470c650708106da5453a
category: main
optional: false
- name: brotli
version: 1.0.9
manager: conda
platform: linux-64
dependencies:
brotli-bin: 1.0.9
libbrotlidec: 1.0.9
libbrotlienc: 1.0.9
libgcc-ng: '>=11.2.0'
url: https://repo.anaconda.com/pkgs/main/linux-64/brotli-1.0.9-h5eee18b_7.conda
hash:
md5: fb777289bceecf617ca9e35dd4484c86
sha256: cd45931a272f8ad43073af4bc2aebfdfeffc1b5ecad715706f19079f6e5eff9d
category: main
optional: false
- name: cyrus-sasl
version: 2.1.28
manager: conda
platform: linux-64
dependencies:
krb5: '>=1.20.1,<1.21.0a0'
libgcc-ng: '>=11.2.0'
libstdcxx-ng: '>=11.2.0'
openssl: '>=3.0.9,<4.0a0'
url: https://repo.anaconda.com/pkgs/main/linux-64/cyrus-sasl-2.1.28-h52b45da_1.conda
hash:
md5: d634af1577e4008f9228ae96ce671c44
sha256: 3172404f943d3a4aacdeb53bf6bdc787a735870cf38104c7b45f41b114f5a64c
category: main
optional: false
- name: fontconfig
version: 2.14.1
manager: conda
platform: linux-64
dependencies:
expat: '>=2.4.9,<3.0a0'
freetype: '>=2.10.4,<3.0a0'
libgcc-ng: '>=11.2.0'
libuuid: '>=1.41.5,<2.0a0'
libxml2: '>=2.10.3,<2.11.0a0'
zlib: '>=1.2.13,<1.3.0a0'
url: https://repo.anaconda.com/pkgs/main/linux-64/fontconfig-2.14.1-h4c34cd2_2.conda
hash:
md5: f0b472f5b544f8d57beb09ed4a2932e1
sha256: 25ebd0146f136dcbb923d45f184366bae0ffc06c3d55dd6ade2cb6ba9c3af000
category: main
optional: false
- name: gst-plugins-base
version: 1.14.1
manager: conda
platform: linux-64
dependencies:
glib: '>=2.69.1,<3.0a0'
gstreamer: '>=1.14.1,<2.0a0'
libgcc-ng: '>=11.2.0'
libstdcxx-ng: '>=11.2.0'
libxcb: '>=1.14,<2.0a0'
zlib: '>=1.2.11,<1.3.0a0'
url: https://repo.anaconda.com/pkgs/main/linux-64/gst-plugins-base-1.14.1-h6a678d5_1.conda
hash:
md5: afd9cbe949d670d24cc0a007aaec1fe1
sha256: e81dae03d17db2d5dbf9eb822fb15efe8dc0c5d768b499668a499114073369d8
category: main
optional: false
- name: lcms2
version: '2.12'
manager: conda
platform: linux-64
dependencies:
jpeg: '>=9b,<10a'
libgcc-ng: '>=7.3.0'
libtiff: '>=4.1.0,<5.0a0'
url: https://repo.anaconda.com/pkgs/main/linux-64/lcms2-2.12-h3be6417_0.conda
hash:
md5: 719db47afba9f6586eecb5eacac70bff
sha256: c7fdebc0954fe6d272c2a477a1067dc96ebc36fb43109b33378e0e9c2732a847
category: main
optional: false
- name: libclang
version: 14.0.6
manager: conda
platform: linux-64
dependencies:
libclang13: 14.0.6
libgcc-ng: '>=11.2.0'
libllvm14: '>=14.0.6,<14.1.0a0'
libstdcxx-ng: '>=11.2.0'
zlib: '>=1.2.13,<1.3.0a0'
url: https://repo.anaconda.com/pkgs/main/linux-64/libclang-14.0.6-default_hc6dbbc7_1.conda
hash:
md5: 8f12583c4027b2861cff470f6b8837c4
sha256: b0c313c723da06f405e7d053c7064f9403614a7fed6987b25ceeef976166dc03
category: main
optional: false
- name: libpq
version: '12.15'
manager: conda
platform: linux-64
dependencies:
krb5: '>=1.20.1,<1.21.0a0'
libgcc-ng: '>=11.2.0'
openssl: '>=3.0.8,<4.0a0'
url: https://repo.anaconda.com/pkgs/main/linux-64/libpq-12.15-hdbd6064_1.conda
hash:
md5: 218227d255f6056b6f49f52dd0d1731f
sha256: 974ecec64a9a5da36089612be573fae803cb029915509245d187c57488675e7d
category: main
optional: false
- name: libwebp
version: 1.3.2
manager: conda
platform: linux-64
dependencies:
giflib: '>=5.2.1,<5.3.0a0'
jpeg: '>=9e,<10a'
libgcc-ng: '>=11.2.0'
libpng: '>=1.6.39,<1.7.0a0'
libtiff: '>=4.1.0,<5.0a0'
libwebp-base: '>=1.3.2,<2.0a0'
url: https://repo.anaconda.com/pkgs/main/linux-64/libwebp-1.3.2-h11a3e52_0.conda
hash:
md5: 9e0d6c9abdd97b076c66d4cf488589ee
sha256: ab262742ce543954da139aa923b1ccec747e855642755c1650698e17753b9a18
category: main
optional: false
- name: openjpeg
version: 2.4.0
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=7.5.0'
libpng: '>=1.6.37,<1.7.0a0'
libstdcxx-ng: '>=7.5.0'
libtiff: '>=4.1.0,<5.0a0'
url: https://repo.anaconda.com/pkgs/main/linux-64/openjpeg-2.4.0-h3ad879b_0.conda
hash:
md5: 86baecb47ecaa7f7ff2657a1f03b90c9
sha256: 7db5ad4d3119105b26a023702b24eb4d190700e9393df04aec3ad1e0f07c7354
category: main
optional: false
- name: python
version: 3.11.5
manager: conda
platform: linux-64
dependencies:
bzip2: '>=1.0.8,<2.0a0'
ld_impl_linux-64: '>=2.35.1'
libffi: '>=3.4,<4.0a0'
libgcc-ng: '>=11.2.0'
libuuid: '>=1.41.5,<2.0a0'
ncurses: '>=6.4,<7.0a0'
openssl: '>=3.0.10,<4.0a0'
readline: '>=8.0,<9.0a0'
sqlite: '>=3.41.2,<4.0a0'
tk: '>=8.6.12,<8.7.0a0'
tzdata: ''
xz: '>=5.4.2,<6.0a0'
zlib: '>=1.2.13,<1.3.0a0'
url: https://repo.anaconda.com/pkgs/main/linux-64/python-3.11.5-h955ad1f_0.conda
hash:
md5: 3fd62f043c124c7aad747122e3a9edf2
sha256: 47c0168daefabdd932f41ef3ed92af467b03843864b85177e313f26c93bf1000
category: main
optional: false
- name: aiofiles
version: 22.1.0
manager: conda
platform: linux-64
dependencies:
python: '>=3.11,<3.12.0a0'
url: https://repo.anaconda.com/pkgs/main/linux-64/aiofiles-22.1.0-py311h06a4308_0.conda
hash:
md5: 6e057b1b05850f4880a7d1dbf93f465c
sha256: d4fcaa8f4c65c2c90bfd957b24feff71aca38786d8bb4a98f96783fbc81449d4
category: main
optional: false
- name: aiosqlite
version: 0.18.0
manager: conda
platform: linux-64
dependencies:
python: '>=3.11,<3.12.0a0'
url: https://repo.anaconda.com/pkgs/main/linux-64/aiosqlite-0.18.0-py311h06a4308_0.conda
hash:
md5: 8d6231c4c52e61a3ecc73abc2a5ad149
sha256: 08f437caab2f5c6639c8f700397ff8f90f6c104111893d549406bcd831713bd7
category: main
optional: false
- name: attrs
version: 23.1.0
manager: conda
platform: linux-64
dependencies:
python: '>=3.11,<3.12.0a0'
url: https://repo.anaconda.com/pkgs/main/linux-64/attrs-23.1.0-py311h06a4308_0.conda
hash:
md5: 47523ff7d4152ca3c652fcce135b34e9
sha256: d6c8d1f5328a95c8c039a7eb91724ff1e006696e4c4154481bf7b0b67bd31888
category: main
optional: false
- name: backcall
version: 0.2.0
manager: conda
platform: linux-64
dependencies:
python: ''
url: https://repo.anaconda.com/pkgs/main/noarch/backcall-0.2.0-pyhd3eb1b0_0.tar.bz2
hash:
md5: b2aa5503875aba2f1d88cae9df9a96d5
sha256: 09f2cf5b30825a39257320204b08146367f4346655197515b2cabcd363736488
category: main
optional: false
- name: brotli-python
version: 1.0.9
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=11.2.0'
libstdcxx-ng: '>=11.2.0'
python: '>=3.11,<3.12.0a0'
url: https://repo.anaconda.com/pkgs/main/linux-64/brotli-python-1.0.9-py311h6a678d5_7.conda
hash:
md5: e7ad3b066db40f54d37099e58fef130a
sha256: d317c3d6460f62c7acf40d27c4e86b6dc8d6eb91549b88d6fdda9bc1d365d8bb
category: main
optional: false
- name: certifi
version: 2023.7.22
manager: conda
platform: linux-64
dependencies:
python: '>=3.11,<3.12.0a0'
url: https://repo.anaconda.com/pkgs/main/linux-64/certifi-2023.7.22-py311h06a4308_0.conda
hash:
md5: fd2818cf57cde4669405ec8b7020ebdd
sha256: e50a468d42cc56eda10a54940ccdea4576ad7862ada55b379c131c5b3ee2d235
category: main
optional: false
- name: charset-normalizer
version: 2.0.4
manager: conda
platform: linux-64
dependencies:
python: '>=3.5'
url: https://repo.anaconda.com/pkgs/main/noarch/charset-normalizer-2.0.4-pyhd3eb1b0_0.conda
hash:
md5: e7a441d94234b2b5fafee06e25dbf076