-
-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathconda-lock.yml
More file actions
5897 lines (5897 loc) · 170 KB
/
Copy pathconda-lock.yml
File metadata and controls
5897 lines (5897 loc) · 170 KB
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: a59cb45417da23ad5cd098ca72529e836372d4cfb6b918af7029966295d6c09c
channels:
- url: conda-forge
used_env_vars: []
platforms:
- linux-64
sources:
- environment.yml
package:
- name: _openmp_mutex
version: '4.5'
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgomp: '>=7.5.0'
url: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-20_gnu.conda
hash:
md5: a9f577daf3de00bca7c3c76c0ecbd1de
sha256: 1dd3fffd892081df9726d7eb7e0dea6198962ba775bd88842135a4ddb4deb3c9
category: main
optional: false
- name: _python_abi3_support
version: '1.0'
manager: conda
platform: linux-64
dependencies:
cpython: ''
python-gil: ''
url: https://conda.anaconda.org/conda-forge/noarch/_python_abi3_support-1.0-hd8ed1ab_3.conda
hash:
md5: 3845f3d75991bae0fb90884662f4327c
sha256: 2a7204314663eeda5dec482a956f0e2eaf289bd5b9953eaaaad0e81aa64638f2
category: main
optional: false
- name: adwaita-icon-theme
version: '49.0'
manager: conda
platform: linux-64
dependencies:
__unix: ''
hicolor-icon-theme: ''
librsvg: ''
url: https://conda.anaconda.org/conda-forge/noarch/adwaita-icon-theme-49.0-unix_0.conda
hash:
md5: b3f0179590f3c0637b7eb5309898f79e
sha256: a362b4f5c96a0bf4def96be1a77317e2730af38915eb9bec85e2a92836501ed7
category: main
optional: false
- name: anaconda-auth
version: 0.15.1
manager: conda
platform: linux-64
dependencies:
anaconda-cli-base: '>=0.8.1'
cryptography: '>=3.4.0'
httpx: ''
keyring: ''
pkce: ''
pydantic: ''
pyjwt: ''
python: '>=3.10'
python-dotenv: ''
requests: ''
semver: <4
url: https://conda.anaconda.org/conda-forge/noarch/anaconda-auth-0.15.1-pyhd8ed1ab_0.conda
hash:
md5: 26d0b333c79c9cb9fdb7f4cfc23a5d1f
sha256: 373cb02a71ff4a27411fbd93cb6383c0d83c663e73830669706d7e97cbfff4fc
category: main
optional: false
- name: anaconda-cli-base
version: 0.8.2
manager: conda
platform: linux-64
dependencies:
click: ''
packaging: '>=23.0'
pydantic: '>=2.12'
pydantic-settings: '>=2.3'
python: '>=3.10'
readchar: ''
rich: ''
tomli: ''
tomlkit: ''
typer: '>=0.17'
url: https://conda.anaconda.org/conda-forge/noarch/anaconda-cli-base-0.8.2-pyhc364b38_0.conda
hash:
md5: af12e48f4d16dce2d160e3067930ad93
sha256: a15e57650690f37bbe54f18e4ff429530b3bb54aa582ff9e3a9155921fec2804
category: main
optional: false
- name: anaconda-client
version: 1.14.1
manager: conda
platform: linux-64
dependencies:
anaconda-auth: '>=0.12.3'
anaconda-cli-base: '>=0.7.0'
conda-package-handling: '>=1.7.3'
conda-package-streaming: '>=0.9.0'
defusedxml: '>=0.7.1'
nbformat: '>=4.4.0'
packaging: ''
pillow: '>=8.2'
platformdirs: '>=3.10.0,<5.0'
python: '>=3.10'
python-dateutil: '>=2.6.1'
pytz: '>=2021.3'
pyyaml: '>=3.12'
requests: '>=2.20.0'
requests-toolbelt: '>=0.9.1'
setuptools: '>=58.0.4'
tqdm: '>=4.56.0'
urllib3: '>=1.26.4'
url: https://conda.anaconda.org/conda-forge/noarch/anaconda-client-1.14.1-pyhcf101f3_0.conda
hash:
md5: 69a7f22cff99ab4b87aa2c5b729b00f8
sha256: 15f36a27ba72fcce0cc19023d55c2bc23cfa78940622df8e0d8d75c6c14b671a
category: main
optional: false
- name: annotated-doc
version: 0.0.5
manager: conda
platform: linux-64
dependencies:
python: '>=3.10'
url: https://conda.anaconda.org/conda-forge/noarch/annotated-doc-0.0.5-pyhcf101f3_0.conda
hash:
md5: d68ec17cb915cab4642357417ec0a104
sha256: a0a320c709fded9b5178108dedebf81a1f5a5d9c7720e3af50c1ab058dadd296
category: main
optional: false
- name: annotated-types
version: 0.8.0
manager: conda
platform: linux-64
dependencies:
python: '>=3.10'
typing-extensions: '>=4.0.0'
url: https://conda.anaconda.org/conda-forge/noarch/annotated-types-0.8.0-pyhd8ed1ab_0.conda
hash:
md5: 108c928d2a8551832dbc762b535e90bb
sha256: b8fcb994134d3918d1c64a9d62f4168ff85d5bfb89e698102fe4ed679fe0df24
category: main
optional: false
- name: anyio
version: 4.14.2
manager: conda
platform: linux-64
dependencies:
exceptiongroup: '>=1.0.2'
idna: '>=2.8'
python: '>=3.10'
typing_extensions: '>=4.5'
url: https://conda.anaconda.org/conda-forge/noarch/anyio-4.14.2-pyhcf101f3_0.conda
hash:
md5: fb568fbae6908ba86a090a85a089d11f
sha256: e36998c5e860e26b22e5dbcd5726dd0c4eabad949c84d383cad8512757bbf6a1
category: main
optional: false
- name: appdirs
version: 1.4.4
manager: conda
platform: linux-64
dependencies:
python: '>=3.9'
url: https://conda.anaconda.org/conda-forge/noarch/appdirs-1.4.4-pyhd8ed1ab_1.conda
hash:
md5: f4e90937bbfc3a4a92539545a37bb448
sha256: 5b9ef6d338525b332e17c3ed089ca2f53a5d74b7a7b432747d29c6466e39346d
category: main
optional: false
- name: archspec
version: 0.2.5
manager: conda
platform: linux-64
dependencies:
python: '>=3.9'
url: https://conda.anaconda.org/conda-forge/noarch/archspec-0.2.5-pyhd8ed1ab_0.conda
hash:
md5: 845b38297fca2f2d18a29748e2ece7fa
sha256: eb68e1ce9e9a148168a4b1e257a8feebffdb0664b557bb526a1e4853f2d2fc00
category: main
optional: false
- name: at-spi2-atk
version: 2.38.0
manager: conda
platform: linux-64
dependencies:
at-spi2-core: '>=2.40.0,<2.41.0a0'
atk-1.0: '>=2.36.0'
dbus: '>=1.13.6,<2.0a0'
libgcc-ng: '>=9.3.0'
libglib: '>=2.68.1,<3.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/at-spi2-atk-2.38.0-h0630a04_3.tar.bz2
hash:
md5: 6b889f174df1e0f816276ae69281af4d
sha256: 26ab9386e80bf196e51ebe005da77d57decf6d989b4f34d96130560bc133479c
category: main
optional: false
- name: at-spi2-core
version: 2.40.3
manager: conda
platform: linux-64
dependencies:
dbus: '>=1.13.6,<2.0a0'
libgcc-ng: '>=9.3.0'
libglib: '>=2.68.3,<3.0a0'
xorg-libx11: ''
xorg-libxi: ''
xorg-libxtst: ''
url: https://conda.anaconda.org/conda-forge/linux-64/at-spi2-core-2.40.3-h0630a04_0.tar.bz2
hash:
md5: 8cb2fc4cd6cc63f1369cfa318f581cc3
sha256: c4f9b66bd94c40d8f1ce1fad2d8b46534bdefda0c86e3337b28f6c25779f258d
category: main
optional: false
- name: atk-1.0
version: 2.38.0
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
libglib: '>=2.80.0,<3.0a0'
libstdcxx-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/atk-1.0-2.38.0-h04ea711_2.conda
hash:
md5: f730d54ba9cd543666d7220c9f7ed563
sha256: df682395d05050cd1222740a42a551281210726a67447e5258968dd55854302e
category: main
optional: false
- name: attrs
version: 26.1.0
manager: conda
platform: linux-64
dependencies:
python: '>=3.10'
url: https://conda.anaconda.org/conda-forge/noarch/attrs-26.1.0-pyhcf101f3_0.conda
hash:
md5: c6b0543676ecb1fb2d7643941fe375f2
sha256: 1b6124230bb4e571b1b9401537ecff575b7b109cc3a21ee019f65e083b8399ab
category: main
optional: false
- name: backoff
version: 2.2.1
manager: conda
platform: linux-64
dependencies:
python: '>=3.9'
url: https://conda.anaconda.org/conda-forge/noarch/backoff-2.2.1-pyhd8ed1ab_1.conda
hash:
md5: a38b801f2bcc12af80c2e02a9e4ce7d9
sha256: f334115c6b0c6c2cd0d28595365f205ec7eaa60bcc5ff91a75d7245f728be820
category: main
optional: false
- name: backports
version: '1.0'
manager: conda
platform: linux-64
dependencies:
python: '>=3.9'
url: https://conda.anaconda.org/conda-forge/noarch/backports-1.0-pyhd8ed1ab_5.conda
hash:
md5: 767d508c1a67e02ae8f50e44cacfadb2
sha256: e1c3dc8b5aa6e12145423fed262b4754d70fec601339896b9ccf483178f690a6
category: main
optional: false
- name: backports.strenum
version: 1.3.1
manager: conda
platform: linux-64
dependencies:
python: '>=3.11'
url: https://conda.anaconda.org/conda-forge/noarch/backports.strenum-1.3.1-haf276df_3.conda
hash:
md5: 88a83285035d8f01f5630d2a3acd2a80
sha256: e5de6cb85d09f37584705a2411d4524f3208a88ac21edaff4dceef7495cb3c43
category: main
optional: false
- name: backports.tarfile
version: 1.2.0
manager: conda
platform: linux-64
dependencies:
backports: ''
python: '>=3.10'
url: https://conda.anaconda.org/conda-forge/noarch/backports.tarfile-1.2.0-pyhcf101f3_2.conda
hash:
md5: bea46844deb274b2cc2a3a941745fa73
sha256: 25abdb37e186f0d6ac3b774a63c81c5bc4bf554b5096b51343fa5e7c381193b1
category: main
optional: false
- name: backports.zstd
version: 1.6.0
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc: '>=14'
python: ''
python_abi: 3.12.*
zstd: '>=1.5.7,<1.6.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/backports.zstd-1.6.0-py312h90b7ffd_0.conda
hash:
md5: 55811da425538da800b89c0c588652fa
sha256: 95b3d6d44c17c4061db703289f39915646e455f75f0c8c9d949bf081d2e61579
category: main
optional: false
- name: bcrypt
version: 5.0.0
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc: '>=14'
python: ''
python_abi: 3.12.*
url: https://conda.anaconda.org/conda-forge/linux-64/bcrypt-5.0.0-py312h868fb18_1.conda
hash:
md5: 8fbbd949c452efde5a75b62b22a88938
sha256: 22020286e3d27eba7c9efef79c1020782885992aea0e7d28d7274c4405001521
category: main
optional: false
- name: beautifulsoup4
version: 4.15.0
manager: conda
platform: linux-64
dependencies:
python: '>=3.10'
soupsieve: '>=1.2'
typing-extensions: ''
url: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.15.0-pyha770c72_0.conda
hash:
md5: 3b261da3fe9b4168738712832410b022
sha256: aed4b9dcf68ec2a75e5645fed14d77fd884d38d2e52bfa6ef4b278d90cd88781
category: main
optional: false
- name: blinker
version: 1.9.0
manager: conda
platform: linux-64
dependencies:
python: '>=3.9'
url: https://conda.anaconda.org/conda-forge/noarch/blinker-1.9.0-pyhff2d567_0.conda
hash:
md5: 42834439227a4551b939beeeb8a4b085
sha256: f7efd22b5c15b400ed84a996d777b6327e5c402e79e3c534a7e086236f1eb2dc
category: main
optional: false
- name: boltons
version: 26.1.0
manager: conda
platform: linux-64
dependencies:
python: '>=3.10'
url: https://conda.anaconda.org/conda-forge/noarch/boltons-26.1.0-pyhd8ed1ab_0.conda
hash:
md5: 92c88d22e52af7b672605b12a31bf0bb
sha256: ca44f906756aaa908645c9bcef31a132fc82e7934777aa6bb45c12edada6a58c
category: main
optional: false
- name: boolean.py
version: '5.0'
manager: conda
platform: linux-64
dependencies:
python: '>=3.9'
url: https://conda.anaconda.org/conda-forge/noarch/boolean.py-5.0-pyhd8ed1ab_0.conda
hash:
md5: 26c3480f80364e9498a48bb5c3e35f85
sha256: 6195e09f7d8a3a5e2fc0dddd6d1e87198e9c3d2a1982ff04624957a6c6466e54
category: main
optional: false
- name: botocore
version: 1.43.64
manager: conda
platform: linux-64
dependencies:
jmespath: '>=0.7.1,<2.0.0'
python: '>=3.10'
python-dateutil: '>=2.1,<3.0.0'
urllib3: '>=1.25.4,!=2.2.0,<3'
url: https://conda.anaconda.org/conda-forge/noarch/botocore-1.43.64-pyhd8ed1ab_0.conda
hash:
md5: 3c83fe55e6585e80589d82607fcb7ce5
sha256: 772b0f1b939eb98a68b64d9e023b8c918b500d5e1d82145f764e39369aa3be7d
category: main
optional: false
- name: brotli-python
version: 1.2.0
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc: '>=14'
libstdcxx: '>=14'
python: '>=3.12,<3.13.0a0'
python_abi: 3.12.*
url: https://conda.anaconda.org/conda-forge/linux-64/brotli-python-1.2.0-py312hdb49522_1.conda
hash:
md5: 64088dffd7413a2dd557ce837b4cbbdb
sha256: 49df13a1bb5e388ca0e4e87022260f9501ed4192656d23dc9d9a1b4bf3787918
category: main
optional: false
- name: bzip2
version: 1.0.8
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc: '>=14'
url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-hda65f42_10.conda
hash:
md5: e675fabcf81499adc7edf58124fb1e01
sha256: 1a0d382c515ebf55f8ee1f38c8b81bc95af5c2acc42ad53b66bc5df932032f96
category: main
optional: false
- name: c-ares
version: 1.34.8
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc: '>=14'
url: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.34.8-hb03c661_0.conda
hash:
md5: 6130ad6705adc993b5d8482b7f66e01f
sha256: dee93a82d045f9aa8277829aa465224afa3c7a6ac18388de66099b2be7f705e7
category: main
optional: false
- name: ca-certificates
version: 2026.7.22
manager: conda
platform: linux-64
dependencies:
__unix: ''
url: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2026.7.22-hbd8a1cb_0.conda
hash:
md5: 0f51e2391ade309db462a55611263e9c
sha256: 0a0544cf95f64394fe4959286f5c71f5444ad58feb0602e53becb27448d24da6
category: main
optional: false
- name: cachecontrol
version: 0.14.4
manager: conda
platform: linux-64
dependencies:
msgpack-python: '>=0.5.2,<2.0.0'
python: '>=3.10'
requests: '>=2.16.0'
url: https://conda.anaconda.org/conda-forge/noarch/cachecontrol-0.14.4-pyha770c72_0.conda
hash:
md5: 13bdbb9b693b29134c56a9a00c23de41
sha256: cca3a26282a5bc37a10afb1aa2006a21c45033cbc4ff012f9501f56f2a115c12
category: main
optional: false
- name: cachecontrol-with-filecache
version: 0.14.4
manager: conda
platform: linux-64
dependencies:
cachecontrol: 0.14.4
filelock: '>=3.8.0'
python: '>=3.10'
url: https://conda.anaconda.org/conda-forge/noarch/cachecontrol-with-filecache-0.14.4-pyhd8ed1ab_0.conda
hash:
md5: 41a7966424a8733b11410216d9a47227
sha256: becb375d64ebda9f9ed030d529b22da21030401d0dbaee62a208e60fca9c4587
category: main
optional: false
- name: cached-property
version: 1.5.2
manager: conda
platform: linux-64
dependencies:
cached_property: '>=1.5.2,<1.5.3.0a0'
url: https://conda.anaconda.org/conda-forge/noarch/cached-property-1.5.2-hd8ed1ab_2.conda
hash:
md5: 1990eb3f49022846fbc7fc9624a0ee43
sha256: 0d00dd61cb91b1bd1536600c64c9db4f94f3c699fec42864d0a2f4bc2ad8c3e8
category: main
optional: false
- name: cached_property
version: 1.5.2
manager: conda
platform: linux-64
dependencies:
python: '>=3.9'
url: https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_2.conda
hash:
md5: f71e6840332854fd2eac6c3229768a9c
sha256: b1808a7811b5688d045b204425bb7ee824b340b40025b4ad0a39b4db1f4f1c98
category: main
optional: false
- name: cachetools
version: 7.1.7
manager: conda
platform: linux-64
dependencies:
python: '>=3.10'
url: https://conda.anaconda.org/conda-forge/noarch/cachetools-7.1.7-pyhd8ed1ab_0.conda
hash:
md5: 2989a79976be82aca908b23523bef9bb
sha256: 7beb7215ebbea0a6ad16643a32844733301d1d86546d417ba45220768c1ce561
category: main
optional: false
- name: cairo
version: 1.18.4
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
fontconfig: '>=2.15.0,<3.0a0'
fonts-conda-ecosystem: ''
icu: '>=78.1,<79.0a0'
libexpat: '>=2.7.3,<3.0a0'
libfreetype: '>=2.14.1'
libfreetype6: '>=2.14.1'
libgcc: '>=14'
libglib: '>=2.86.3,<3.0a0'
libpng: '>=1.6.53,<1.7.0a0'
libstdcxx: '>=14'
libxcb: '>=1.17.0,<2.0a0'
libzlib: '>=1.3.1,<2.0a0'
pixman: '>=0.46.4,<1.0a0'
xorg-libice: '>=1.1.2,<2.0a0'
xorg-libsm: '>=1.2.6,<2.0a0'
xorg-libx11: '>=1.8.12,<2.0a0'
xorg-libxext: '>=1.3.6,<2.0a0'
xorg-libxrender: '>=0.9.12,<0.10.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/cairo-1.18.4-he90730b_1.conda
hash:
md5: bb6c4808bfa69d6f7f6b07e5846ced37
sha256: 06525fa0c4e4f56e771a3b986d0fdf0f0fc5a3270830ee47e127a5105bde1b9a
category: main
optional: false
- name: certifi
version: 2026.7.22
manager: conda
platform: linux-64
dependencies:
python: '>=3.10'
url: https://conda.anaconda.org/conda-forge/noarch/certifi-2026.7.22-pyhd8ed1ab_0.conda
hash:
md5: 37e13edbe3b48f1095a9d085ef9cd83b
sha256: fb167de4388e64e52aa3907ed099afab944c1fa6e5f74b281a312dae1bcf7f3b
category: main
optional: false
- name: cffi
version: 2.1.1
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libffi: '>=3.5.2,<3.6.0a0'
libgcc: '>=14'
pycparser: ''
python: '>=3.12,<3.13.0a0'
python_abi: 3.12.*
url: https://conda.anaconda.org/conda-forge/linux-64/cffi-2.1.1-py312h460c074_0.conda
hash:
md5: a9d08f233128bc42fae8fe17c13df103
sha256: e4e3f48195393953bfacdfd4670e1c2cf5231b7bb11f29ccc724f1697c1c4449
category: main
optional: false
- name: chardet
version: 7.4.3
manager: conda
platform: linux-64
dependencies:
python: '>=3.10'
url: https://conda.anaconda.org/conda-forge/noarch/chardet-7.4.3-pyhcf101f3_0.conda
hash:
md5: 7dd72a4c857cd652a1e23c13099a15d2
sha256: d307dcdba7498fadeeeed616ad0fc9e1cfd6061f5d83f64fbd20be4968f1bfb9
category: main
optional: false
- name: charset-normalizer
version: 3.4.9
manager: conda
platform: linux-64
dependencies:
python: '>=3.10'
url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.9-pyhd8ed1ab_0.conda
hash:
md5: d154b40b109e503430979e8a8d099eaf
sha256: 8d8813ef655b4e75e4fb897abd83ad548882efad7b4e836b021b797f42780799
category: main
optional: false
- name: cirun
version: '0.30'
manager: conda
platform: linux-64
dependencies:
hatch: ''
hatchling: ''
python: '>=3.9'
requests: ''
rich: ''
typer: ''
url: https://conda.anaconda.org/conda-forge/noarch/cirun-0.30-pyhd8ed1ab_1.conda
hash:
md5: 6ac974d26885bd69d4e725e37d5e5d59
sha256: abcb755e3d9be73fc5c512d257d3254502bf2264ab14d512a6b3373685244515
category: main
optional: false
- name: click
version: 8.2.1
manager: conda
platform: linux-64
dependencies:
__unix: ''
python: '>=3.10'
url: https://conda.anaconda.org/conda-forge/noarch/click-8.2.1-pyh707e725_0.conda
hash:
md5: 94b550b8d3a614dbd326af798c7dfb40
sha256: 8aee789c82d8fdd997840c952a586db63c6890b00e88c4fb6e80a38edd5f51c0
category: main
optional: false
- name: click-default-group
version: 1.2.4
manager: conda
platform: linux-64
dependencies:
click: ''
python: '>=3.9'
url: https://conda.anaconda.org/conda-forge/noarch/click-default-group-1.2.4-pyhd8ed1ab_1.conda
hash:
md5: 7cd83dd6831b61ad9624a694e4afd7dc
sha256: cb7279eecddbd35ea78fd0e189a9a7db8b84c2c0e3b1271cf26251615f75dc4d
category: main
optional: false
- name: cloudpickle
version: 3.1.2
manager: conda
platform: linux-64
dependencies:
python: '>=3.10'
url: https://conda.anaconda.org/conda-forge/noarch/cloudpickle-3.1.2-pyhcf101f3_1.conda
hash:
md5: 61b8078a0905b12529abc622406cb62c
sha256: 4c287c2721d8a34c94928be8fe0e9a85754e90189dd4384a31b1806856b50a67
category: main
optional: false
- name: colorama
version: 0.4.6
manager: conda
platform: linux-64
dependencies:
python: '>=3.9'
url: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda
hash:
md5: 962b9857ee8e7018c22f2776ffa0b2d7
sha256: ab29d57dc70786c1269633ba3dff20288b81664d3ff8d21af995742e2bb03287
category: main
optional: false
- name: conda
version: 26.5.0
manager: conda
platform: linux-64
dependencies:
archspec: '>=0.2.3'
boltons: '>=23.0.0'
charset-normalizer: ''
conda-libmamba-solver: '>=26.4.1'
conda-lockfiles: '>=0.2.0'
conda-package-handling: '>=2.2.0'
conda-pypi: '>=0.9.0'
conda-self: '>=0.2.0'
distro: '>=1.5.0'
frozendict: '>=2.4.2'
jsonpatch: '>=1.32'
menuinst: '>=2'
packaging: '>=23.0'
platformdirs: '>=3.10.0'
pluggy: '>=1.6.0'
pycosat: '>=0.6.3'
python: '>=3.12,<3.13.0a0'
python_abi: 3.12.*
requests: '>=2.28.0,<3'
ruamel.yaml: '>=0.11.14,<0.19'
setuptools: '>=60.0.0'
tqdm: '>=4'
truststore: '>=0.8.0'
zstandard: '>=0.19.0'
url: https://conda.anaconda.org/conda-forge/linux-64/conda-26.5.0-py312h7900ff3_0.conda
hash:
md5: 32235f7b43b3e55630e53a586fe30b10
sha256: 01d5f9e72db64679cfd9312a46ac265003edc9c35f0bee58271cf478cc5bea88
category: main
optional: false
- name: conda-build
version: 26.7.0
manager: conda
platform: linux-64
dependencies:
__linux: ''
beautifulsoup4: ''
chardet: ''
conda: '>=25.11.0'
conda-index: '>=0.4.0'
conda-package-handling: '>=2.2.0'
evalidate: '>=2,<3.0a'
filelock: ''
frozendict: '>=2.4.2'
jinja2: ''
jsonschema: '>=4.19'
menuinst: '>=2'
packaging: ''
patch: '>=2.6'
patchelf: <0.18
pkginfo: ''
psutil: ''
py-lief: ''
py-rattler-build: '>=0.65.1'
python: '>=3.11'
python-libarchive-c: ''
pyyaml: ''
requests: ''
ripgrep: ''
tqdm: ''
url: https://conda.anaconda.org/conda-forge/noarch/conda-build-26.7.0-pyh31ec981_0.conda
hash:
md5: c72f3dcb256b52cfd79e30dbf5f118de
sha256: 05552dc437e01197eab02443622f75e6049f93ff9361100bcae43fb13b20dfe9
category: main
optional: false
- name: conda-forge-feedstock-ops
version: 0.16.0
manager: conda
platform: linux-64
dependencies:
boltons: '>=23.0.0'
click: ''
conda: ''
conda-build: '>=3.27'
conda-forge-metadata: '>=0.11.0'
conda-package-handling: ''
conda-smithy: '>=3.40.1'
orjson: ''
pixi: ''
py-rattler: '>=0.22.0,<0.23a0'
pydantic-settings: '>=2.8.1,<3.0.0'
python: '>=3.11'
rattler-build-conda-compat: '>=0.0.2,<2.0.0a0'
requests: ''
ruamel.yaml: ''
ruamel.yaml.jinja2: ''
wurlitzer: ''
zstandard: ''
url: https://conda.anaconda.org/conda-forge/noarch/conda-forge-feedstock-ops-0.16.0-pyhd8ed1ab_0.conda
hash:
md5: a00fe176b552a9fe0589cd4bec28a0be
sha256: 04f66f3c5e174e1b926bcf3c1ac2e2f5d8d749e8a63e1af95d6aabd2fac85ca1
category: main
optional: false
- name: conda-forge-metadata
version: 0.16.1
manager: conda
platform: linux-64
dependencies:
conda-oci-mirror: ''
conda-package-streaming: '>=0.12.0'
deprecated: ''
python: '>=3.10'
requests: ''
ruamel.yaml: ''
typing-extensions: ''
url: https://conda.anaconda.org/conda-forge/noarch/conda-forge-metadata-0.16.1-pyhcf101f3_0.conda
hash:
md5: 5210d1ee4602e2d30a999d9a78fc9bb0
sha256: 9b1fe9c74227877f62d1164ad1df4a48aed8ca4736cec1f0afdd34f8289c24f0
category: main
optional: false
- name: conda-forge-pinning
version: 2026.08.05.10.37.37
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/conda-forge/noarch/conda-forge-pinning-2026.08.05.10.37.37-hd8ed1ab_0.conda
hash:
md5: dffd02d32040ad341ddb1eae4a611434
sha256: acc4639d3f798f5cda9eba4f63ccc899df09b63b25f46b1d746f0ecaffbf85f2
category: main
optional: false
- name: conda-forge-tick
version: 2026.8.8
manager: conda
platform: linux-64
dependencies:
attrs: ''
backoff: ''
bcrypt: ''
cachecontrol: ''
cachetools: ''
click: ''
conda: '>=25'
conda-build: '>=25'
conda-forge-feedstock-ops: '>=0.16.0'
conda-forge-metadata: '>=0.12.0'
conda-forge-pinning: ''
conda-libmamba-solver: ''
conda-lock: ''
conda-package-handling: ''
conda-recipe-manager: '>=0.6.1'
conda-smithy: '>=3.61.2'
curl: ''
dateparser: ''
depfinder: ''
distributed: ''
feedparser: ''
frozendict: ''
git: ''
github3.py: ''
grayskull: '>=3.1.0'
jinja2: ''
lockfile: ''
mamba: '>=0.23'
msgpack-python: ''
networkx: '!=2.8.1'
numpy: ''
orjson: ''
packaging: ''
psutil: ''
pydantic: ''
pydantic-extra-types: ''
pydantic-settings: ''
pygithub: ''
pymongo: ''
pynamodb: ''
python: '>=3.12'
python-dateutil: ''
python-graphviz: ''
rattler-build: '>=0.35.4'
rattler-build-conda-compat: '>=1.4.6,<2,!=1.4.7,!=1.4.8'
requests: ''
ruamel.yaml: ''
ruamel.yaml.jinja2: ''
scipy: ''
stopit: ''
streamz: ''
tar: ''
tqdm: ''
wget: ''
wurlitzer: ''
yaml: ''
url: https://conda.anaconda.org/conda-forge/noarch/conda-forge-tick-2026.8.8-pyhd8ed1ab_0.conda
hash:
md5: 5181d2ac17dd37df4fcf93cdd6a6451c
sha256: 889c2985f4d42feeedc7f80316ef715cd06c4707c6f4adcb5962ba78fb08ecbc
category: main
optional: false
- name: conda-index
version: 0.12.1
manager: conda
platform: linux-64
dependencies:
conda: '>=25'
conda-package-streaming: '>=0.12.0'
filelock: ''
jinja2: ''
msgpack-python: '>=1.0.2'
python: '>=3.10'
ruamel.yaml: ''
zstandard: ''
url: https://conda.anaconda.org/conda-forge/noarch/conda-index-0.12.1-pyhd8ed1ab_0.conda
hash:
md5: 1b8035639db6b74dcdc6b5412ae89011
sha256: 39f8f4b24e6c6b701679949950af3220bcf42bd634a68d63f7d39f64752b79a6
category: main
optional: false
- name: conda-libmamba-solver
version: 26.7.0
manager: conda
platform: linux-64
dependencies:
boltons: '>=23.0.0'
libmambapy: '>=2.0.0,!=2.6.2'
python: '>=3.10'
url: https://conda.anaconda.org/conda-forge/noarch/conda-libmamba-solver-26.7.0-pyhcf101f3_0.conda
hash:
md5: 49592004caf4336815fd5282bbb72172
sha256: b7cc67470a361330edd8d9e331cafd4807dd77bc766ca197a3783ed3db66dfeb
category: main
optional: false
- name: conda-lock
version: 4.0.2
manager: conda
platform: linux-64
dependencies:
__linux: ''
boltons: '>=23.0.0'
cachecontrol: '>=0.14.0,<0.15.0'
cachecontrol-with-filecache: ''
charset-normalizer: ''
click: '>=8.0'
click-default-group: ''
crashtest: '>=0.4.1,<0.5.0'
dulwich: '>=0.22.6,<0.25.0'
ensureconda: '>=1.4.7'
filelock: ''
gitpython: '>=3.1.30'
jinja2: ''
keyring: '>=25.1.0,<26.0.0'
packaging: '>=24.0'
pkginfo: '>=1.12,<2.0'
platformdirs: '>=3.10.0,<5.0.0'
pydantic: '>=2'
pyproject_hooks: '>=1.0.0,<2.0.0'
python: '>=3.10'
python-build: '>=1.2.1,<2.0.0'
python-fastjsonschema: '>=2.18.0,<3.0.0'
python-installer: '>=1.0.1,<2.0.0'
pyyaml: '>=5.1'
requests: '>=2.26,<3.0'
requests-toolbelt: '>=1.0.0,<2.0.0'
ruamel.yaml: ''
semver: '>=3,<4'
setuptools: ''
shellingham: '>=1.5,<2.0'
tomli: '>=2.0.1,<3.0.0'
tomlkit: '>=0.11.4,<1.0.0'
trove-classifiers: '>=2022.5.19'
typing_extensions: '>=4.6.1'
virtualenv: '>=20.26.6,<21.0.0'
zstandard: '>=0.15'
url: https://conda.anaconda.org/conda-forge/noarch/conda-lock-4.0.2-pyha191276_0.conda
hash:
md5: f0968c69a409ba1144232b8c8f83b8fc
sha256: cf7844edd9b70b4bd24bebb892d1f81f792245c8fa8039e7d0725127215c515c
category: main
optional: false
- name: conda-lockfiles
version: 0.2.1
manager: conda
platform: linux-64
dependencies:
conda: '>=26.3.0'
pydantic: '>=2.12.5,<3'
python: '>=3.10'
ruamel.yaml: ''
url: https://conda.anaconda.org/conda-forge/noarch/conda-lockfiles-0.2.1-pyhd8ed1ab_0.conda
hash:
md5: 7f1b127b170f9f0d01eca4b54a046ee5
sha256: eb20fc63ce6438e10d7c64890bd23d0c68f62a479f2bae8b3c892e13949daf03
category: main
optional: false
- name: conda-oci-mirror
version: 0.2.3
manager: conda
platform: linux-64
dependencies:
click: ''
conda-package-handling: ''
oras-py: 0.1.14.*
packaging: ''
python: '>=3.9'
requests: ''
zstandard: ''
url: https://conda.anaconda.org/conda-forge/noarch/conda-oci-mirror-0.2.3-pyhd8ed1ab_1.conda
hash:
md5: cbb288cc5b97ac2e4a2a6b51c13d153e
sha256: e8b52f911efce98ab0397786b82bda58a2e1bd1653e9786e1ffadf3bc433ea8b
category: main
optional: false
- name: conda-package-handling
version: 2.5.0
manager: conda
platform: linux-64
dependencies:
conda-package-streaming: '>=0.12.0'
python: '>=3.10'
requests: ''
zstandard: '>=0.15'
url: https://conda.anaconda.org/conda-forge/noarch/conda-package-handling-2.5.0-pyhcf101f3_0.conda
hash:
md5: 3f1854f1ec2090538fb49b7078dbb9de
sha256: 63d5b510644a01b4c93738304cb0dc8a336542fc335b0b77f3b355ba7d119260
category: main
optional: false
- name: conda-package-streaming
version: 0.13.0
manager: conda
platform: linux-64