-
Notifications
You must be signed in to change notification settings - Fork 0
/
conda-lock.yml
1814 lines (1814 loc) · 53 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: b289af905b91e6d05d51c980b826bfbad2fb894e2c19070bcf0b2f664e64d41b
channels:
- url: conda-forge
used_env_vars: []
platforms:
- linux-64
sources:
- environment.yml
package:
- name: _libgcc_mutex
version: '0.1'
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2
hash:
md5: d7c89558ba9fa0495403155b64376d81
sha256: fe51de6107f9edc7aa4f786a70f4a883943bc9d39b3bb7307c04c41410990726
category: main
optional: false
- name: _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: backports
version: '1.0'
manager: conda
platform: linux-64
dependencies:
python: '>=3'
url: https://conda.anaconda.org/conda-forge/noarch/backports-1.0-pyhd8ed1ab_4.conda
hash:
md5: 67bdebbc334513034826e9b63f769d4c
sha256: 31b51537ce7d2ba8b5b3d0095f1813711884304ac1701bc55938ca75f6c82e19
category: main
optional: false
- name: backports.tarfile
version: 1.2.0
manager: conda
platform: linux-64
dependencies:
backports: ''
python: '>=3.8'
url: https://conda.anaconda.org/conda-forge/noarch/backports.tarfile-1.2.0-pyhd8ed1ab_0.conda
hash:
md5: 5a4c7e2a240a0092a9571d084fe8bc86
sha256: 703cc1cb72e395272ce043ae9e2bad6184eeb2371a20a75cb502a5513592d2eb
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: c-ares
version: 1.34.3
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc: '>=13'
url: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.34.3-hb9d3cd8_1.conda
hash:
md5: ee228789a85f961d14567252a03e725f
sha256: 732571ba6286dbccbf4c6450078a581b7a5620204faf876ff0ef282d77a6bfa8
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: cachecontrol
version: 0.14.1
manager: conda
platform: linux-64
dependencies:
msgpack-python: '>=0.5.2,<2.0.0'
python: '>=3.8'
requests: '>=2.16.0'
url: https://conda.anaconda.org/conda-forge/noarch/cachecontrol-0.14.1-pyhd8ed1ab_0.conda
hash:
md5: e2ab0c0094abfe6021c0b03b7a54cbec
sha256: 144327f53a9a3b1e76f378da88b0e04cb8534c31838f4a393650adb07872c333
category: main
optional: false
- name: cachecontrol-with-filecache
version: 0.14.1
manager: conda
platform: linux-64
dependencies:
cachecontrol: 0.14.1
filelock: '>=3.8.0'
python: '>=3.8'
url: https://conda.anaconda.org/conda-forge/noarch/cachecontrol-with-filecache-0.14.1-pyhd8ed1ab_0.conda
hash:
md5: 7086cfe05f71ea0d9a509b4e3509554d
sha256: 1d84e360e3e9aba097dc40ca5c081ab28712be07c118e2039eca094f563cf0b4
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.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: 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: 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: cpp-expected
version: 1.1.0
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
libstdcxx-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/cpp-expected-1.1.0-hf52228f_0.conda
hash:
md5: a7f1500bf47196443b67355d67afec6d
sha256: fc809e6894537a77c6cd1e65f593ae1bfbf60f494bce55295212d1a9bacd7fa7
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.3
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
cffi: '>=1.12'
libgcc: '>=13'
openssl: '>=3.3.2,<4.0a0'
python: '>=3.10,<3.11.0a0'
python_abi: 3.10.*
url: https://conda.anaconda.org/conda-forge/linux-64/cryptography-43.0.3-py310h6c63255_0.conda
hash:
md5: b1b7aea5ad17dd5f8f012b912af25635
sha256: 0d11e871beb721b41ffa8621ab91746cf0c82f90ccbdf0424306a685d31abb95
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.9
manager: conda
platform: linux-64
dependencies:
python: 2.7|>=3.6
url: https://conda.anaconda.org/conda-forge/noarch/distlib-0.3.9-pyhd8ed1ab_0.conda
hash:
md5: fe521c1608280cc2803ebd26dc252212
sha256: 300b2e714f59403df0560174f5ef6c19db8b4a3b74a7244862cf771f07dee8fb
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.4
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libexpat: 2.6.4
libgcc: '>=13'
url: https://conda.anaconda.org/conda-forge/linux-64/expat-2.6.4-h5888daf_0.conda
hash:
md5: 1d6afef758879ef5ee78127eb4cd2c4a
sha256: 1848c7db9e264e3b8036ee133d570dd880422983cd20dd9585a505289606d276
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: fmt
version: 11.0.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/fmt-11.0.2-h434a139_0.conda
hash:
md5: 995f7e13598497691c1dc476d889bc04
sha256: c620e2ab084948985ae9b8848d841f603e8055655513340e04b6cf129099b5ca
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: '>=3.8'
six: '>=1.9'
webencodings: ''
url: https://conda.anaconda.org/conda-forge/noarch/html5lib-1.1-pyhd8ed1ab_1.conda
hash:
md5: 51862c722035f53c5d99ae99a78ea569
sha256: 447324515aad8d93196fb72b19603a48f4380cabdd370494b549e2cfdbcf3414
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-metadata
version: 8.5.0
manager: conda
platform: linux-64
dependencies:
python: '>=3.8'
zipp: '>=0.5'
url: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.5.0-pyha770c72_0.conda
hash:
md5: 54198435fce4d64d8a89af22573012a8
sha256: 7194700ce1a5ad2621fd68e894dd8c1ceaff9a38723e6e0e5298fdef13017b1c
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: 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: jaraco.context
version: 5.3.0
manager: conda
platform: linux-64
dependencies:
backports.tarfile: ''
python: '>=3.8'
url: https://conda.anaconda.org/conda-forge/noarch/jaraco.context-5.3.0-pyhd8ed1ab_1.conda
hash:
md5: 72d7ad2dcd0f37eccb2ee35a1c8f6aaa
sha256: 9e2aeacb1aed3ab4fc5883a357e8a874e12f687af300f8708ec12de2995e17d2
category: main
optional: false
- name: jaraco.functools
version: 4.0.0
manager: conda
platform: linux-64
dependencies:
more-itertools: ''
python: '>=3.8'
url: https://conda.anaconda.org/conda-forge/noarch/jaraco.functools-4.0.0-pyhd8ed1ab_0.conda
hash:
md5: 547670a612fd335eaa5ffbf0fa75cb64
sha256: d2e866fd22a48eaa2f795b6a3b0bf16f066293322ce04dd65cca36267160ead6
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: 25.5.0
manager: conda
platform: linux-64
dependencies:
__linux: ''
importlib-metadata: '>=4.11.4'
importlib_resources: ''
jaraco.classes: ''
jaraco.context: ''
jaraco.functools: ''
jeepney: '>=0.4.2'
python: '>=3.8'
secretstorage: '>=3.2'
url: https://conda.anaconda.org/conda-forge/noarch/keyring-25.5.0-pyha804496_0.conda
hash:
md5: a36af57a05ceaed6827adc5e4ba81267
sha256: f9a0b7838db9366fba0b9917fe8d0654377ebf8959e904f963e12ff76a5cc9ba
category: main
optional: false
- name: keyutils
version: 1.6.1
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=10.3.0'
url: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2
hash:
md5: 30186d27e2c9fa62b45fb1476b7200e3
sha256: 150c05a6e538610ca7c43beb3a40d65c90537497a4f6a5f4d15ec0451b6f5ebb
category: main
optional: false
- name: krb5
version: 1.21.3
manager: conda
platform: linux-64
dependencies:
keyutils: '>=1.6.1,<2.0a0'
libedit: '>=3.1.20191231,<4.0a0'
libgcc-ng: '>=12'
libstdcxx-ng: '>=12'
openssl: '>=3.3.1,<4.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda
hash:
md5: 3f43953b7d3fb3aaa1d0d0723d91e368
sha256: 99df692f7a8a5c27cd14b5fb1374ee55e756631b9c3d659ed3ee60830249b238
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: libarchive
version: 3.7.4
manager: conda
platform: linux-64
dependencies:
bzip2: '>=1.0.8,<2.0a0'
libgcc-ng: '>=12'
libxml2: '>=2.12.7,<3.0a0'
libzlib: '>=1.2.13,<2.0.0a0'
lz4-c: '>=1.9.3,<1.10.0a0'
lzo: '>=2.10,<3.0a0'
openssl: '>=3.3.0,<4.0a0'
xz: '>=5.2.6,<6.0a0'
zstd: '>=1.5.6,<1.6.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/libarchive-3.7.4-hfca40fe_0.conda
hash:
md5: 32ddb97f897740641d8d46a829ce1704
sha256: c30970e5e6515c662d00bb74e7c1b09ebe0c8c92c772b952a41a5725e2dcc936
category: main
optional: false
- name: libblas
version: 3.9.0
manager: conda
platform: linux-64
dependencies:
libopenblas: '>=0.3.28,<1.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-25_linux64_openblas.conda
hash:
md5: 8ea26d42ca88ec5258802715fe1ee10b
sha256: d6d12dc437d060f838820e9e61bf73baab651f91935ac594cf10beb9ef1b4450
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-25_linux64_openblas.conda
hash:
md5: 5dbd1b0fc0d01ec5e0e1fbe667281a11
sha256: ab87b0477078837c91d9cda62a9faca18fba7c57cc77aa779ae24b3ac783b5dd
category: main
optional: false
- name: libcurl
version: 8.10.1
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
krb5: '>=1.21.3,<1.22.0a0'
libgcc: '>=13'
libnghttp2: '>=1.58.0,<2.0a0'
libssh2: '>=1.11.0,<2.0a0'
libzlib: '>=1.3.1,<2.0a0'
openssl: '>=3.3.2,<4.0a0'
zstd: '>=1.5.6,<1.6.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.10.1-hbbe4b11_0.conda
hash:
md5: 6e801c50a40301f6978c53976917b277
sha256: 54e6114dfce566c3a22ad3b7b309657e3600cdb668398e95f1301360d5d52c99
category: main
optional: false
- name: libedit
version: 3.1.20191231
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=7.5.0'
ncurses: '>=6.2,<7.0.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20191231-he28a2e2_2.tar.bz2
hash:
md5: 4d331e44109e3f0e19b4cb8f9b82f3e1
sha256: a57d37c236d8f7c886e01656f4949d9dcca131d2a0728609c6f7fa338b65f1cf
category: main
optional: false
- name: libev
version: '4.33'
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-hd590300_2.conda
hash:
md5: 172bf1cd1ff8629f2b1179945ed45055
sha256: 1cd6048169fa0395af74ed5d8f1716e22c19a81a8a36f934c110ca3ad4dd27b4
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: libgfortran
version: 14.2.0
manager: conda
platform: linux-64
dependencies:
libgfortran5: 14.2.0
url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-14.2.0-h69a702a_1.conda
hash:
md5: f1fd30127802683586f768875127a987
sha256: fc9e7f22a17faf74da904ebfc4d88699013d2992e55505e4aa0eb01770290977
category: main
optional: false
- name: libgfortran5
version: 14.2.0
manager: conda
platform: linux-64
dependencies:
libgcc: '>=14.2.0'
url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-14.2.0-hd5240d6_1.conda
hash:
md5: 9822b874ea29af082e5d36098d25427d
sha256: d149a37ca73611e425041f33b9d8dbed6e52ec506fe8cc1fc0ee054bddeb6d5d
category: main
optional: false
- name: libglib
version: 2.82.2
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libffi: '>=3.4,<4.0a0'
libgcc: '>=13'
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.82.2-h2ff4ddf_0.conda
hash:
md5: 13e8e54035ddd2b91875ba399f0f7c04
sha256: 49ee9401d483a76423461c50dcd37f91d070efaec7e4dc2828d8cdd2ce694231
category: main
optional: false
- name: libgomp
version: 14.2.0
manager: conda
platform: linux-64
dependencies:
_libgcc_mutex: '0.1'
url: https://conda.anaconda.org/conda-forge/linux-64/libgomp-14.2.0-h77fa898_1.conda
hash:
md5: cc3573974587f12dda90d96e3e55a702
sha256: 1911c29975ec99b6b906904040c855772ccb265a1c79d5d75c8ceec4ed89cd63
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: 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-25_linux64_openblas.conda
hash:
md5: 4dc03a53fc69371a6158d0ed37214cd3
sha256: 9d1ff017714edb2d84868f0f931a4a0e7c289a971062b2ac66cfc8145df7e20e
category: main
optional: false
- name: libmamba
version: 2.0.4
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
cpp-expected: '>=1.1.0,<1.2.0a0'
fmt: '>=11.0.2,<12.0a0'
libarchive: '>=3.7.4,<3.8.0a0'
libcurl: '>=8.10.1,<9.0a0'
libgcc: '>=13'
libsolv: '>=0.7.30,<0.8.0a0'
libstdcxx: '>=13'
nlohmann_json: '>=3.11.3,<3.12.0a0'
openssl: '>=3.4.0,<4.0a0'
reproc: '>=14.2.5.0inf.0,<14.3.0a0'
reproc-cpp: '>=14.2.5.0inf.0,<14.3.0a0'
simdjson: '>=3.10.1,<3.11.0a0'
spdlog: '>=1.14.1,<1.15.0a0'
yaml-cpp: '>=0.8.0,<0.9.0a0'
zstd: '>=1.5.6,<1.6.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/libmamba-2.0.4-hf72d635_0.conda
hash:
md5: ee936d20425961886b3ddc68e7021bb9
sha256: 6533ce4158d726f5fbf1cbb7ddad4e82d86e647bffc530b01b93a9cc484d38f8
category: main
optional: false
- name: libnghttp2
version: 1.64.0
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
c-ares: '>=1.32.3,<2.0a0'
libev: '>=4.33,<5.0a0'
libgcc: '>=13'
libstdcxx: '>=13'
libzlib: '>=1.3.1,<2.0a0'
openssl: '>=3.3.2,<4.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.64.0-h161d5f1_0.conda
hash:
md5: 19e57602824042dfd0446292ef90488b
sha256: b0f2b3695b13a989f75d8fd7f4778e1c7aabe3b36db83f0fe80b2cd812c0e975
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.28
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc: '>=14'
libgfortran: ''
libgfortran5: '>=14.2.0'
url: https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.28-pthreads_h94d23a6_1.conda
hash:
md5: 62857b389e42b36b686331bec0922050
sha256: 99ba271d8a80a1af2723f2e124ffd91d850074c0389c067e6d96d72a2dbfeabe
category: main
optional: false
- name: libsolv
version: 0.7.30
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc-ng: '>=12'
libstdcxx-ng: '>=12'
libzlib: '>=1.3.1,<2.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/libsolv-0.7.30-h3509ff9_0.conda
hash:
md5: 02539b77d25aa4f65b20246549e256c3
sha256: 1dddbde791efdfc34c8fefa74dc2f910eac9cf87bf37ee6c3c9132eb96a0e7d4
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: libssh2
version: 1.11.1
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc: '>=13'
libzlib: '>=1.3.1,<2.0a0'
openssl: '>=3.4.0,<4.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.1-hf672d98_0.conda
hash:
md5: be2de152d8073ef1c01b7728475f2fe7
sha256: 0407ac9fda2bb67e11e357066eff144c845801d00b5f664efbc48813af1e7bb9
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: 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