This repository has been archived by the owner on Aug 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconda-lock.yml
1914 lines (1914 loc) · 56 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 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: 125b8470f7e26ebd2aa7547942086016fb6f7c60a951580addc6d0cf28989bcb
channels:
- url: conda-forge
used_env_vars: []
- url: nvidia
used_env_vars: []
- url: pytorch
used_env_vars: []
- url: bioconda
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: _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: annotated-types
version: 0.7.0
manager: conda
platform: linux-64
dependencies:
python: '>=3.7'
typing-extensions: '>=4.0.0'
url: https://conda.anaconda.org/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_0.conda
hash:
md5: 7e9f4612544c8edbfd6afad17f1bd045
sha256: 668f0825b6c18e4012ca24a0070562b6ec801ebc7008228a428eb52b4038873f
category: main
optional: false
- name: appdirs
version: 1.4.4
manager: conda
platform: linux-64
dependencies:
python: ''
url: https://conda.anaconda.org/conda-forge/noarch/appdirs-1.4.4-pyh9f0ad1d_0.tar.bz2
hash:
md5: 5f095bc6454094e96f146491fd03633b
sha256: ae9fb8f68281f84482f2c234379aa12405a9e365151d43af20b3ae1f17312111
category: main
optional: false
- name: boost-cpp
version: 1.85.0
manager: conda
platform: linux-64
dependencies:
bzip2: '>=1.0.8,<2.0a0'
icu: '>=73.2,<74.0a0'
libboost-devel: 1.85.0
libzlib: '>=1.2.13,<2.0a0'
xz: '>=5.2.6,<6.0a0'
zstd: '>=1.5.6,<1.6.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/boost-cpp-1.85.0-h44aadfe_2.conda
hash:
md5: 9727833b500c4224710a8ca10b78d607
sha256: e9ecc22ef7507a07db2a1c59d218806502377fdc18d473fc6f75b0ef17b05721
category: main
optional: false
- name: brotli-python
version: 1.1.0
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
libstdcxx-ng: '>=12'
python: '>=3.11,<3.12.0a0'
python_abi: 3.11.*
url: https://conda.anaconda.org/conda-forge/linux-64/brotli-python-1.1.0-py311hb755f60_1.conda
hash:
md5: cce9e7c3f1c307f2a5fb08a2922d6164
sha256: 559093679e9fdb6061b7b80ca0f9a31fe6ffc213f1dae65bc5c82e2cd1a94107
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.7.4
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.7.4-hbcca054_0.conda
hash:
md5: 23ab7665c5f63cfb9f1f6195256daac6
sha256: c1548a3235376f464f9931850b64b02492f379b2f2bb98bc786055329b080446
category: main
optional: false
- name: cachecontrol
version: 0.14.0
manager: conda
platform: linux-64
dependencies:
msgpack-python: '>=0.5.2,<2.0.0'
python: '>=3.7'
requests: '>=2.16.0'
url: https://conda.anaconda.org/conda-forge/noarch/cachecontrol-0.14.0-pyhd8ed1ab_1.conda
hash:
md5: a54e449940b3e4bb2129b8daae0c1f65
sha256: 8d8dadbea881c690037e432075357ad6629f7b050e129a5944a0402d674fd754
category: main
optional: false
- name: cachecontrol-with-filecache
version: 0.14.0
manager: conda
platform: linux-64
dependencies:
cachecontrol: 0.14.0
filelock: '>=3.8.0'
python: '>=3.7'
url: https://conda.anaconda.org/conda-forge/noarch/cachecontrol-with-filecache-0.14.0-pyhd8ed1ab_1.conda
hash:
md5: 42a12b0b21d64b36a9ab9a24a04eb910
sha256: 482d0f3ce8dad6b881f76620ee18152755c61bb968039dcbc0ad45689c70b0d5
category: main
optional: false
- name: cachy
version: 0.3.0
manager: conda
platform: linux-64
dependencies:
python: '>=3.6'
url: https://conda.anaconda.org/conda-forge/noarch/cachy-0.3.0-pyhd8ed1ab_1.tar.bz2
hash:
md5: 5dfee17f24e2dfd18d7392b48c9351e2
sha256: 9b193a4e483c4d0004bc5b88fac7a02516b6311137ab61b8db85aa9741422e35
category: main
optional: false
- name: certifi
version: 2024.7.4
manager: conda
platform: linux-64
dependencies:
python: '>=3.7'
url: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.7.4-pyhd8ed1ab_0.conda
hash:
md5: 24e7fd6ca65997938fff9e5ab6f653e4
sha256: dd3577bb5275062c388c46b075dcb795f47f8dac561da7dd35fe504b936934e5
category: main
optional: false
- name: cffi
version: 1.16.0
manager: conda
platform: linux-64
dependencies:
libffi: '>=3.4,<4.0a0'
libgcc-ng: '>=12'
pycparser: ''
python: '>=3.11,<3.12.0a0'
python_abi: 3.11.*
url: https://conda.anaconda.org/conda-forge/linux-64/cffi-1.16.0-py311hb3a22ac_0.conda
hash:
md5: b3469563ac5e808b0cd92810d0697043
sha256: b71c94528ca0c35133da4b7ef69b51a0b55eeee570376057f3d2ad60c3ab1444
category: main
optional: false
- name: cfgv
version: 3.3.1
manager: conda
platform: linux-64
dependencies:
python: '>=3.6.1'
url: https://conda.anaconda.org/conda-forge/noarch/cfgv-3.3.1-pyhd8ed1ab_0.tar.bz2
hash:
md5: ebb5f5f7dc4f1a3780ef7ea7738db08c
sha256: fbc03537a27ef756162c49b1d0608bf7ab12fa5e38ceb8563d6f4859e835ac5c
category: main
optional: false
- name: charset-normalizer
version: 3.3.2
manager: conda
platform: linux-64
dependencies:
python: '>=3.7'
url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.3.2-pyhd8ed1ab_0.conda
hash:
md5: 7f4a9e3fcff3f6356ae99244a014da6a
sha256: 20cae47d31fdd58d99c4d2e65fbdcefa0b0de0c84e455ba9d6356a4bdbc4b5b9
category: main
optional: false
- name: cleo
version: 2.1.0
manager: conda
platform: linux-64
dependencies:
crashtest: '>=0.4.1,<0.5.0'
python: '>=3.7,<4.0'
rapidfuzz: '>=3.0.0,<4.0.0'
url: https://conda.anaconda.org/conda-forge/noarch/cleo-2.1.0-pyhd8ed1ab_0.conda
hash:
md5: 69569ea8a6d1465193345a40421d138b
sha256: eed2d2cb8792b3ae6434ce49bf5fe1ae5d885253f6bd2e56da933c427705fcbc
category: main
optional: false
- name: click
version: 8.1.7
manager: conda
platform: linux-64
dependencies:
__unix: ''
python: '>=3.8'
url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda
hash:
md5: f3ad426304898027fc619827ff428eca
sha256: f0016cbab6ac4138a429e28dbcb904a90305b34b3fe41a9b89d697c90401caec
category: main
optional: false
- name: click-default-group
version: 1.2.4
manager: conda
platform: linux-64
dependencies:
click: ''
python: '>=2.7'
url: https://conda.anaconda.org/conda-forge/noarch/click-default-group-1.2.4-pyhd8ed1ab_0.conda
hash:
md5: 7c2b6931f9b3548ed78478332095c3e9
sha256: b36e35d735ddd29d7c592eb3de4b3979e13a9f76f1b4bc939f2cb4402758d6d0
category: main
optional: false
- name: clikit
version: 0.6.2
manager: conda
platform: linux-64
dependencies:
pastel: '>=0.2.0,<0.3.0'
pylev: '>=1.3,<2.0'
python: '>=3.7'
url: https://conda.anaconda.org/conda-forge/noarch/clikit-0.6.2-pyhd8ed1ab_2.conda
hash:
md5: 02abb7b66b02e8b9f5a9b05454400087
sha256: 2d582bc15d9116ec5467b565fb87d9034c8b56f60943e8eb69407f55f1ab5a78
category: main
optional: false
- name: clustalw
version: '2.1'
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
libstdcxx-ng: '>=12'
url: https://conda.anaconda.org/bioconda/linux-64/clustalw-2.1-h4ac6f70_10.tar.bz2
hash:
md5: e7756d46d67ea32f90b684f6770f290d
sha256: dd7502471d3f4ec89ec0cf6b36b675c3ff031e9acf9ed0386df8971784a71a80
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: conda-lock
version: 2.5.7
manager: conda
platform: linux-64
dependencies:
cachecontrol-with-filecache: '>=0.12.9'
cachy: '>=0.3.0'
click: '>=8.0'
click-default-group: ''
clikit: '>=0.6.2'
crashtest: '>=0.3.0'
ensureconda: '>=1.3'
gitpython: '>=3.1.30'
html5lib: '>=1.0'
jinja2: ''
keyring: '>=21.2.0'
packaging: '>=20.4'
pkginfo: '>=1.4'
pydantic: '>=1.10'
python: '>=3.8'
pyyaml: '>=5.1'
requests: '>=2.18'
ruamel.yaml: ''
setuptools: ''
tomli: ''
tomlkit: '>=0.7.0'
toolz: '>=0.12.0,<1.0.0'
typing_extensions: ''
urllib3: '>=1.26.5,<2.0'
virtualenv: '>=20.0.26'
url: https://conda.anaconda.org/conda-forge/noarch/conda-lock-2.5.7-pyhd8ed1ab_0.conda
hash:
md5: 154d0c643be6a9ce6fbe655d007d8e4e
sha256: bdce4c0d6491d12db676633dcf1cae031a5105073996a4a0ae8dba9ecafda2b2
category: main
optional: false
- name: conda-poetry-liaison
version: 0.1.2
manager: conda
platform: linux-64
dependencies:
python: '>=3.9.0,<4.0.0'
tomli: '>=2.0.1,<3.0.0'
tomli-w: '>=1.0.0,<2.0.0'
url: https://conda.anaconda.org/conda-forge/noarch/conda-poetry-liaison-0.1.2-pyhd8ed1ab_0.conda
hash:
md5: a7e7aaf023212f470e5e477458b5eedc
sha256: 1771dcab93cde5deef59d9b52a67db46a6b6faeb43e32ca2f726064a68e11770
category: main
optional: false
- name: crashtest
version: 0.4.1
manager: conda
platform: linux-64
dependencies:
python: '>=3.6,<4.0'
url: https://conda.anaconda.org/conda-forge/noarch/crashtest-0.4.1-pyhd8ed1ab_0.tar.bz2
hash:
md5: 709a2295dd907bb34afb57d54320642f
sha256: 2f05954a3faf0700c14c1deddc085385160ee32abe111699c78d9cb277e915cc
category: main
optional: false
- name: cryptography
version: 43.0.0
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
cffi: '>=1.12'
libgcc-ng: '>=12'
openssl: '>=3.3.1,<4.0a0'
python: '>=3.11,<3.12.0a0'
python_abi: 3.11.*
url: https://conda.anaconda.org/conda-forge/linux-64/cryptography-43.0.0-py311hc6616f6_0.conda
hash:
md5: f392b3f7a26db16f37cf82996dcfc84d
sha256: 7d5d5c21ba14290ef5ec9238158f5470561be37e03d33d83692ea92325b61fdb
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_13.conda
hash:
md5: eb43f5f1f16e2fad2eba22219c3e499b
sha256: 1797bacaf5350f272413c7f50787c01aef0e8eb955df0f0db144b10be2819752
category: main
optional: false
- name: dbus
version: 1.13.6
manager: conda
platform: linux-64
dependencies:
expat: '>=2.4.2,<3.0a0'
libgcc-ng: '>=9.4.0'
libglib: '>=2.70.2,<3.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/dbus-1.13.6-h5008d03_3.tar.bz2
hash:
md5: ecfff944ba3960ecb334b9a2663d708d
sha256: 8f5f995699a2d9dbdd62c61385bfeeb57c82a681a7c8c5313c395aa0ccab68a5
category: main
optional: false
- name: distlib
version: 0.3.8
manager: conda
platform: linux-64
dependencies:
python: 2.7|>=3.6
url: https://conda.anaconda.org/conda-forge/noarch/distlib-0.3.8-pyhd8ed1ab_0.conda
hash:
md5: db16c66b759a64dc5183d69cc3745a52
sha256: 3ff11acdd5cc2f80227682966916e878e45ced94f59c402efb94911a5774e84e
category: main
optional: false
- name: dulwich
version: 0.21.7
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
python: '>=3.11,<3.12.0a0'
python_abi: 3.11.*
urllib3: '>=1.25'
url: https://conda.anaconda.org/conda-forge/linux-64/dulwich-0.21.7-py311h459d7ec_0.conda
hash:
md5: a50b0c00b7498cfde328e63a3e18d9d3
sha256: 190dbafc9e699f74cf8d287e91246acac1e14afda8ce6aedafac87e392e1bc96
category: main
optional: false
- name: ensureconda
version: 1.4.4
manager: conda
platform: linux-64
dependencies:
appdirs: ''
click: '>=5.1'
filelock: ''
packaging: ''
python: '>=3.7'
requests: '>=2'
url: https://conda.anaconda.org/conda-forge/noarch/ensureconda-1.4.4-pyhd8ed1ab_0.conda
hash:
md5: e54a91c3a65491b13c68f7696425bac8
sha256: a115afdc676c95a17ab63bbda84b7b724bc8817ae54fa34f8991339252424959
category: main
optional: false
- name: expat
version: 2.6.2
manager: conda
platform: linux-64
dependencies:
libexpat: 2.6.2
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/expat-2.6.2-h59595ed_0.conda
hash:
md5: 53fb86322bdb89496d7579fe3f02fd61
sha256: 89916c536ae5b85bb8bf0cfa27d751e274ea0911f04e4a928744735c14ef5155
category: main
optional: false
- name: filelock
version: 3.15.4
manager: conda
platform: linux-64
dependencies:
python: '>=3.7'
url: https://conda.anaconda.org/conda-forge/noarch/filelock-3.15.4-pyhd8ed1ab_0.conda
hash:
md5: 0e7e4388e9d5283e22b35a9443bdbcc9
sha256: f78d9c0be189a77cb0c67d02f33005f71b89037a85531996583fb79ff3fe1a0a
category: main
optional: false
- name: gitdb
version: 4.0.11
manager: conda
platform: linux-64
dependencies:
python: '>=3.7'
smmap: '>=3.0.1,<6'
url: https://conda.anaconda.org/conda-forge/noarch/gitdb-4.0.11-pyhd8ed1ab_0.conda
hash:
md5: 623b19f616f2ca0c261441067e18ae40
sha256: 52ab2798be31b8f509eeec458712f447ced4f96ecb672c6c9a42778f47e07b1b
category: main
optional: false
- name: gitpython
version: 3.1.43
manager: conda
platform: linux-64
dependencies:
gitdb: '>=4.0.1,<5'
python: '>=3.7'
typing_extensions: '>=3.7.4.3'
url: https://conda.anaconda.org/conda-forge/noarch/gitpython-3.1.43-pyhd8ed1ab_0.conda
hash:
md5: 0b2154c1818111e17381b1df5b4b0176
sha256: cbb2802641a009ce9bcc2a047e817fd8816f9c842036a42f4730398d8e4cda2a
category: main
optional: false
- name: html5lib
version: '1.1'
manager: conda
platform: linux-64
dependencies:
python: ''
six: '>=1.9'
webencodings: ''
url: https://conda.anaconda.org/conda-forge/noarch/html5lib-1.1-pyh9f0ad1d_0.tar.bz2
hash:
md5: b2355343d6315c892543200231d7154a
sha256: 9ad06446fe9847e86cb20d220bf11614afcd2cbe9f58096f08d5d4018877bee4
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: identify
version: 2.6.0
manager: conda
platform: linux-64
dependencies:
python: '>=3.6'
ukkonen: ''
url: https://conda.anaconda.org/conda-forge/noarch/identify-2.6.0-pyhd8ed1ab_0.conda
hash:
md5: f80cc5989f445f23b1622d6c455896d9
sha256: 4a2889027df94d51be283536ac235feba77eaa42a0d051f65cd07ba824b324a6
category: main
optional: false
- name: idna
version: '3.7'
manager: conda
platform: linux-64
dependencies:
python: '>=3.6'
url: https://conda.anaconda.org/conda-forge/noarch/idna-3.7-pyhd8ed1ab_0.conda
hash:
md5: c0cc1420498b17414d8617d0b9f506ca
sha256: 9687ee909ed46169395d4f99a0ee94b80a52f87bed69cd454bb6d37ffeb0ec7b
category: main
optional: false
- name: importlib-metadata
version: 8.2.0
manager: conda
platform: linux-64
dependencies:
python: '>=3.8'
zipp: '>=0.5'
url: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.2.0-pyha770c72_0.conda
hash:
md5: c261d14fc7f49cdd403868998a18c318
sha256: 15dd2beba1c6f780fec6c5351bbce815d27a29561f422fe830133c995ef90b8a
category: main
optional: false
- name: importlib_metadata
version: 8.2.0
manager: conda
platform: linux-64
dependencies:
importlib-metadata: '>=8.2.0,<8.2.1.0a0'
url: https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-8.2.0-hd8ed1ab_0.conda
hash:
md5: 0fd030dce707a6654472cf7619b0b01b
sha256: 4a0eacc41786d97176fb53c19d25c4f9b8ab4c9a0ee1fd6f09bc13ca197c21d9
category: main
optional: false
- name: jaraco.classes
version: 3.4.0
manager: conda
platform: linux-64
dependencies:
more-itertools: ''
python: '>=3.8'
url: https://conda.anaconda.org/conda-forge/noarch/jaraco.classes-3.4.0-pyhd8ed1ab_1.conda
hash:
md5: 7b756504d362cbad9b73a50a5455cafd
sha256: 538b1c6df537a36c63fd0ed83cb1c1c25b07d8d3b5e401991fdaff261a4b5b4d
category: main
optional: false
- name: jeepney
version: 0.8.0
manager: conda
platform: linux-64
dependencies:
python: '>=3.7'
url: https://conda.anaconda.org/conda-forge/noarch/jeepney-0.8.0-pyhd8ed1ab_0.tar.bz2
hash:
md5: 9800ad1699b42612478755a2d26c722d
sha256: 16639759b811866d63315fe1391f6fb45f5478b823972f4d3d9f0392b7dd80b8
category: main
optional: false
- name: jinja2
version: 3.1.4
manager: conda
platform: linux-64
dependencies:
markupsafe: '>=2.0'
python: '>=3.7'
url: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_0.conda
hash:
md5: 7b86ecb7d3557821c649b3c31e3eb9f2
sha256: 27380d870d42d00350d2d52598cddaf02f9505fb24be09488da0c9b8d1428f2d
category: main
optional: false
- name: keyring
version: 24.3.1
manager: conda
platform: linux-64
dependencies:
importlib_metadata: '>=4.11.4'
jaraco.classes: ''
jeepney: '>=0.4.2'
python: '>=3.11,<3.12.0a0'
python_abi: 3.11.*
secretstorage: '>=3.2'
url: https://conda.anaconda.org/conda-forge/linux-64/keyring-24.3.1-py311h38be061_0.conda
hash:
md5: 0cd643c771fd81eec082cca79e52e08f
sha256: 9a818c8e26df6e5a6efce101c1836baa4141cd6e09c8913157727cc8e5c073a9
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-hf3520f5_7.conda
hash:
md5: b80f2f396ca2c28b8c14c437a4ed1e74
sha256: 764b6950aceaaad0c67ef925417594dd14cd2e22fff864aeef455ac259263d15
category: main
optional: false
- name: libblas
version: 3.9.0
manager: conda
platform: linux-64
dependencies:
libopenblas: '>=0.3.27,<1.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-23_linux64_openblas.conda
hash:
md5: 96c8450a40aa2b9733073a9460de972c
sha256: edb1cee5da3ac4936940052dcab6969673ba3874564f90f5110f8c11eed789c2
category: main
optional: false
- name: libboost
version: 1.85.0
manager: conda
platform: linux-64
dependencies:
bzip2: '>=1.0.8,<2.0a0'
icu: '>=73.2,<74.0a0'
libgcc-ng: '>=12'
libstdcxx-ng: '>=12'
libzlib: '>=1.2.13,<2.0a0'
xz: '>=5.2.6,<6.0a0'
zstd: '>=1.5.6,<1.6.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/libboost-1.85.0-hba137d9_2.conda
hash:
md5: 8f960555f785a42b3853b944ccb9ded7
sha256: b87721465cf1c7fd6d3ecb27dceea896768b7139dabf445b6fe4a09cff71a8a8
category: main
optional: false
- name: libboost-devel
version: 1.85.0
manager: conda
platform: linux-64
dependencies:
libboost: 1.85.0
libboost-headers: 1.85.0
url: https://conda.anaconda.org/conda-forge/linux-64/libboost-devel-1.85.0-h00ab1b0_2.conda
hash:
md5: 916333f9596385ad7b55b13a6f18c140
sha256: b0ffa5af43d1f93bd8faff32d53ab2d1557e4b32b69007fa368d309cccd8a2e9
category: main
optional: false
- name: libboost-headers
version: 1.85.0
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/conda-forge/linux-64/libboost-headers-1.85.0-ha770c72_2.conda
hash:
md5: a685407e4876ad2327fcfc0024b5e204
sha256: 77dd38f4d45a219839833371b610b6a12d0f85b1be73cc5e2e31b223795f6d75
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-23_linux64_openblas.conda
hash:
md5: eede29b40efa878cbe5bdcb767e97310
sha256: 3e7a3236e7e03e308e1667d91d0aa70edd0cba96b4b5563ef4adde088e0881a5
category: main
optional: false
- name: libexpat
version: 2.6.2
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.6.2-h59595ed_0.conda
hash:
md5: e7ba12deb7020dd080c6c70e7b6f6a3d
sha256: 331bb7c7c05025343ebd79f86ae612b9e1e74d2687b8f3179faec234f986ce19
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-ng
version: 14.1.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-14.1.0-h77fa898_0.conda
hash:
md5: ca0fad6a41ddaef54a153b78eccb5037
sha256: b8e869ac96591cda2704bf7e77a301025e405227791a0bddf14a3dac65125538
category: main
optional: false
- name: libgfortran-ng
version: 14.1.0
manager: conda
platform: linux-64
dependencies:
libgfortran5: 14.1.0
url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-14.1.0-h69a702a_0.conda
hash:
md5: f4ca84fbd6d06b0a052fb2d5b96dde41
sha256: ef624dacacf97b2b0af39110b36e2fd3e39e358a1a6b7b21b85c9ac22d8ffed9
category: main
optional: false
- name: libgfortran5
version: 14.1.0
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=14.1.0'
url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-14.1.0-hc5f4f2c_0.conda
hash:
md5: 6456c2620c990cd8dde2428a27ba0bc5
sha256: a67d66b1e60a8a9a9e4440cee627c959acb4810cb182e089a4b0729bfdfbdf90
category: main
optional: false
- name: libglib
version: 2.80.3
manager: conda
platform: linux-64
dependencies:
libffi: '>=3.4,<4.0a0'
libgcc-ng: '>=12'
libiconv: '>=1.17,<2.0a0'
libzlib: '>=1.3.1,<2.0a0'
pcre2: '>=10.44,<10.45.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/libglib-2.80.3-h8a4344b_1.conda
hash:
md5: 6ea440297aacee4893f02ad759e6ffbc
sha256: 5f5854a7cee117d115009d8f22a70d5f9e28f09cb6e453e8f1dd712e354ecec9
category: main
optional: false
- name: libgomp
version: 14.1.0
manager: conda
platform: linux-64
dependencies:
_libgcc_mutex: '0.1'
url: https://conda.anaconda.org/conda-forge/linux-64/libgomp-14.1.0-h77fa898_0.conda
hash:
md5: ae061a5ed5f05818acdf9adab72c146d
sha256: 7699df61a1f6c644b3576a40f54791561f2845983120477a16116b951c9cdb05
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: libjemalloc
version: 5.3.0
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
libstdcxx-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/libjemalloc-5.3.0-hcb278e6_0.conda
hash:
md5: 9b46c6ff895b50a4c45d38b4e66e5752
sha256: 51321c453eadddd3133df41ccb723ee1612f4eb34e1c79becc9ce4a4ee6b7a75
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-23_linux64_openblas.conda
hash:
md5: 2af0879961951987e464722fd00ec1e0
sha256: 25c7aef86c8a1d9db0e8ee61aa7462ba3b46b482027a65d66eb83e3e6f949043
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: libopenblas
version: 0.3.27
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
libgfortran-ng: ''
libgfortran5: '>=12.3.0'
url: https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.27-pthreads_hac2b453_1.conda
hash:
md5: ae05ece66d3924ac3d48b4aa3fa96cec
sha256: 714cb82d7c4620ea2635a92d3df263ab841676c9b183d0c01992767bb2451c39
category: main
optional: false
- name: libsqlite
version: 3.46.0
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
libzlib: '>=1.2.13,<2.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.46.0-hde9e2c9_0.conda
hash:
md5: 18aa975d2094c34aef978060ae7da7d8
sha256: daee3f68786231dad457d0dfde3f7f1f9a7f2018adabdbb864226775101341a8
category: main
optional: false
- name: libstdcxx-ng
version: 14.1.0
manager: conda
platform: linux-64
dependencies:
libgcc-ng: 14.1.0
url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-14.1.0-hc0a3c3a_0.conda
hash:
md5: 1cb187a157136398ddbaae90713e2498
sha256: 88c42b388202ffe16adaa337e36cf5022c63cf09b0405cf06fc6aeacccbe6146
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.48.0
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/libuv-1.48.0-hd590300_0.conda
hash:
md5: 7e8b914b1062dd4386e3de4d82a3ead6
sha256: b7c0e8a0c93c2621be7645b37123d4e8d27e8a974da26a3fba47a9c37711aa7f
category: main
optional: false
- name: libxcrypt
version: 4.4.36
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda
hash:
md5: 5aa797f8787fe7a17d1b0821485b5adc
sha256: 6ae68e0b86423ef188196fff6207ed0c8195dd84273cb5623b85aa08033a410c
category: main
optional: false
- name: libxml2
version: 2.12.7
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
icu: '>=73.2,<74.0a0'
libgcc-ng: '>=12'
libiconv: '>=1.17,<2.0a0'
libzlib: '>=1.3.1,<2.0a0'
xz: '>=5.2.6,<6.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.12.7-h4c95cb1_3.conda
hash:
md5: 0ac9aff6010a7751961c8e4b863a40e7
sha256: 11a346aed187405a7d3710a79b815fd66ff80fec3b9b7f840a24531324742acf
category: main
optional: false
- name: libzlib
version: 1.3.1
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-h4ab18f5_1.conda
hash:
md5: 57d7dc60e9325e3de37ff8dffd18e814
sha256: adf6096f98b537a11ae3729eaa642b0811478f0ea0402ca67b5108fe2cb0010d
category: main
optional: false
- name: markupsafe
version: 2.1.5
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
python: '>=3.11,<3.12.0a0'
python_abi: 3.11.*
url: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-2.1.5-py311h459d7ec_0.conda
hash:
md5: a322b4185121935c871d201ae00ac143
sha256: 14912e557a6576e03f65991be89e9d289c6e301921b6ecfb4e7186ba974f453d
category: main
optional: false
- name: more-itertools
version: 10.3.0
manager: conda
platform: linux-64
dependencies:
python: '>=3.8'
url: https://conda.anaconda.org/conda-forge/noarch/more-itertools-10.3.0-pyhd8ed1ab_0.conda
hash:
md5: a57fb23d0260a962a67c7d990ec1c812
sha256: 9c485cc52dfd646ea584e9055c1bbaac8f27687d806c1ef00f299ec2e642ce04
category: main