-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathconda-lock.yml
5232 lines (5232 loc) · 162 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: 6e18b75a4a3083078fa9212ef882fb91a16a66c906236dbddbc5c15bcb8eb31d
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: accessible-pygments
version: 0.0.5
manager: conda
platform: linux-64
dependencies:
pygments: ""
python: ">=3.9"
url: https://conda.anaconda.org/conda-forge/noarch/accessible-pygments-0.0.5-pyhd8ed1ab_0.conda
hash:
md5: 1bb1ef9806a9a20872434f58b3e7fc1a
sha256: 712c1875bcd32674e8ce2f418f0b2875ecb98e6bcbb21ec7502dae8ff4b0f73c
category: main
optional: false
- name: affine
version: 2.4.0
manager: conda
platform: linux-64
dependencies:
python: ">=3.7"
url: https://conda.anaconda.org/conda-forge/noarch/affine-2.4.0-pyhd8ed1ab_0.conda
hash:
md5: ae5f4ad87126c55ba3f690ef07f81d64
sha256: fbf0288cae7c6e5005280436ff73c95a36c5a4c978ba50175cc8e3eb22abc5f9
category: main
optional: false
- name: aiohappyeyeballs
version: 2.4.4
manager: conda
platform: linux-64
dependencies:
python: ">=3.9"
url: https://conda.anaconda.org/conda-forge/noarch/aiohappyeyeballs-2.4.4-pyhd8ed1ab_1.conda
hash:
md5: 296b403617bafa89df4971567af79013
sha256: 95d4713e49ea92ae50cf42393683ede706b7875af5f7cb14c253438180afa732
category: main
optional: false
- name: aiohttp
version: 3.11.9
manager: conda
platform: linux-64
dependencies:
__glibc: ">=2.17,<3.0.a0"
aiohappyeyeballs: ">=2.3.0"
aiosignal: ">=1.1.2"
attrs: ">=17.3.0"
frozenlist: ">=1.1.1"
libgcc: ">=13"
multidict: ">=4.5,<7.0"
propcache: ">=0.2.0"
python: ">=3.12,<3.13.0a0"
python_abi: 3.12.*
yarl: ">=1.17.0,<2.0"
url: https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.11.9-py312h178313f_0.conda
hash:
md5: eeaf9831f262132fb12ce3921de09651
sha256: 875a8ad0da035b33ba8037c40a2ffc0412b9545bc3d15455a8a75db22a3ee471
category: main
optional: false
- name: aiosignal
version: 1.3.1
manager: conda
platform: linux-64
dependencies:
frozenlist: ">=1.1.0"
python: ">=3.9"
url: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.1-pyhd8ed1ab_1.conda
hash:
md5: d736bd1b8904d7593dce4893e58a7881
sha256: 9c7b639ea0cc796ef46c57fa104ec1f2ed53cd11c063518869a5a9d7d3b0b2db
category: main
optional: false
- name: alabaster
version: 0.7.16
manager: conda
platform: linux-64
dependencies:
python: ">=3.9"
url: https://conda.anaconda.org/conda-forge/noarch/alabaster-0.7.16-pyhd8ed1ab_0.conda
hash:
md5: def531a3ac77b7fb8c21d17bb5d0badb
sha256: fd39ad2fabec1569bbb0dfdae34ab6ce7de6ec09dcec8638f83dad0373594069
category: main
optional: false
- name: anyio
version: 4.6.2.post1
manager: conda
platform: linux-64
dependencies:
exceptiongroup: ">=1.0.2"
idna: ">=2.8"
python: ">=3.9"
sniffio: ">=1.1"
typing_extensions: ">=4.1"
url: https://conda.anaconda.org/conda-forge/noarch/anyio-4.6.2.post1-pyhd8ed1ab_0.conda
hash:
md5: 688697ec5e9588bdded167d19577625b
sha256: 4b54b7ce79d818e3cce54ae4d552dba51b7afac160ceecdefd04b3917a37c502
category: main
optional: false
- name: aom
version: 3.9.1
manager: conda
platform: linux-64
dependencies:
libgcc-ng: ">=12"
libstdcxx-ng: ">=12"
url: https://conda.anaconda.org/conda-forge/linux-64/aom-3.9.1-hac33072_0.conda
hash:
md5: 346722a0be40f6edc53f12640d301338
sha256: b08ef033817b5f9f76ce62dfcac7694e7b6b4006420372de22494503decac855
category: main
optional: false
- name: argon2-cffi
version: 23.1.0
manager: conda
platform: linux-64
dependencies:
argon2-cffi-bindings: ""
python: ">=3.9"
typing-extensions: ""
url: https://conda.anaconda.org/conda-forge/noarch/argon2-cffi-23.1.0-pyhd8ed1ab_1.conda
hash:
md5: a7ee488b71c30ada51c48468337b85ba
sha256: 7af62339394986bc470a7a231c7f37ad0173ffb41f6bc0e8e31b0be9e3b9d20f
category: main
optional: false
- name: argon2-cffi-bindings
version: 21.2.0
manager: conda
platform: linux-64
dependencies:
__glibc: ">=2.17,<3.0.a0"
cffi: ">=1.0.1"
libgcc: ">=13"
python: ">=3.12,<3.13.0a0"
python_abi: 3.12.*
url: https://conda.anaconda.org/conda-forge/linux-64/argon2-cffi-bindings-21.2.0-py312h66e93f0_5.conda
hash:
md5: 1505fc57c305c0a3174ea7aae0a0db25
sha256: 3cbc3b026f5c3f26de696ead10607db8d80cbb003d87669ac3b02e884f711978
category: main
optional: false
- name: arrow
version: 1.3.0
manager: conda
platform: linux-64
dependencies:
python: ">=3.8"
python-dateutil: ">=2.7.0"
types-python-dateutil: ">=2.8.10"
url: https://conda.anaconda.org/conda-forge/noarch/arrow-1.3.0-pyhd8ed1ab_0.conda
hash:
md5: b77d8c2313158e6e461ca0efb1c2c508
sha256: ff49825c7f9e29e09afa6284300810e7a8640d621740efb47c4541f4dc4969db
category: main
optional: false
- name: asciitree
version: 0.3.3
manager: conda
platform: linux-64
dependencies:
python: ""
url: https://conda.anaconda.org/conda-forge/noarch/asciitree-0.3.3-py_2.tar.bz2
hash:
md5: c0481c9de49f040272556e2cedf42816
sha256: b3e9369529fe7d721b66f18680ff4b561e20dbf6507e209e1f60eac277c97560
category: main
optional: false
- name: asttokens
version: 3.0.0
manager: conda
platform: linux-64
dependencies:
python: ">=3.9"
url: https://conda.anaconda.org/conda-forge/noarch/asttokens-3.0.0-pyhd8ed1ab_1.conda
hash:
md5: 8f587de4bcf981e26228f268df374a9b
sha256: 93b14414b3b3ed91e286e1cbe4e7a60c4e1b1c730b0814d1e452a8ac4b9af593
category: main
optional: false
- name: async-lru
version: 2.0.4
manager: conda
platform: linux-64
dependencies:
python: ">=3.8"
typing_extensions: ">=4.0.0"
url: https://conda.anaconda.org/conda-forge/noarch/async-lru-2.0.4-pyhd8ed1ab_0.conda
hash:
md5: 3d081de3a6ea9f894bbb585e8e3a4dcb
sha256: 7ed83731979fe5b046c157730e50af0e24454468bbba1ed8fc1a3107db5d7518
category: main
optional: false
- name: attrs
version: 24.2.0
manager: conda
platform: linux-64
dependencies:
python: ">=3.7"
url: https://conda.anaconda.org/conda-forge/noarch/attrs-24.2.0-pyh71513ae_0.conda
hash:
md5: 6732fa52eb8e66e5afeb32db8701a791
sha256: 28dba85a7e0f7fb57d7315e13f603d1e41b83c5b88aa2a602596b52c833a2ff8
category: main
optional: false
- name: babel
version: 2.16.0
manager: conda
platform: linux-64
dependencies:
python: ">=3.9"
pytz: ">=2015.7"
url: https://conda.anaconda.org/conda-forge/noarch/babel-2.16.0-pyhd8ed1ab_1.conda
hash:
md5: 3e23f7db93ec14c80525257d8affac28
sha256: f6205d3a62e87447e06e98d911559be0208d824976d77ab092796c9176611fcb
category: main
optional: false
- name: beautifulsoup4
version: 4.12.3
manager: conda
platform: linux-64
dependencies:
python: ">=3.9"
soupsieve: ">=1.2"
url: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.3-pyha770c72_1.conda
hash:
md5: d48f7e9fdec44baf6d1da416fe402b04
sha256: fca842ab7be052eea1037ebee17ac25cc79c626382dd2187b5c6e007b9d9f65f
category: main
optional: false
- name: bleach
version: 6.2.0
manager: conda
platform: linux-64
dependencies:
python: ">=3.9"
webencodings: ""
url: https://conda.anaconda.org/conda-forge/noarch/bleach-6.2.0-pyhd8ed1ab_1.conda
hash:
md5: 707af59db75b066217403a8f00c1d826
sha256: ffc8e4e53cd92aec0f0ea0bc9e28f5fd1b1e67bde46b0b298170e6fb78eecce1
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: blosc
version: 1.21.6
manager: conda
platform: linux-64
dependencies:
libgcc-ng: ">=12"
libstdcxx-ng: ">=12"
libzlib: ">=1.3.1,<2.0a0"
lz4-c: ">=1.9.3,<1.10.0a0"
snappy: ">=1.2.0,<1.3.0a0"
zstd: ">=1.5.6,<1.6.0a0"
url: https://conda.anaconda.org/conda-forge/linux-64/blosc-1.21.6-hef167b5_0.conda
hash:
md5: 54fe76ab3d0189acaef95156874db7f9
sha256: 6cc260f9c6d32c5e728a2099a52fdd7ee69a782fff7b400d0606fcd32e0f5fd1
category: main
optional: false
- name: branca
version: 0.7.2
manager: conda
platform: linux-64
dependencies:
jinja2: ">=3"
python: ">=3.7"
url: https://conda.anaconda.org/conda-forge/noarch/branca-0.7.2-pyhd8ed1ab_0.conda
hash:
md5: 5f1c719f1cac0aee5e6bd6ca7d54a7fa
sha256: 9f7df349cb5a8852804d5bb1f5f49e3076a55ac7229b9c114bb5f7461f497ba7
category: main
optional: false
- name: brotli
version: 1.1.0
manager: conda
platform: linux-64
dependencies:
__glibc: ">=2.17,<3.0.a0"
brotli-bin: 1.1.0
libbrotlidec: 1.1.0
libbrotlienc: 1.1.0
libgcc: ">=13"
url: https://conda.anaconda.org/conda-forge/linux-64/brotli-1.1.0-hb9d3cd8_2.conda
hash:
md5: 98514fe74548d768907ce7a13f680e8f
sha256: fcb0b5b28ba7492093e54f3184435144e074dfceab27ac8e6a9457e736565b0b
category: main
optional: false
- name: brotli-bin
version: 1.1.0
manager: conda
platform: linux-64
dependencies:
__glibc: ">=2.17,<3.0.a0"
libbrotlidec: 1.1.0
libbrotlienc: 1.1.0
libgcc: ">=13"
url: https://conda.anaconda.org/conda-forge/linux-64/brotli-bin-1.1.0-hb9d3cd8_2.conda
hash:
md5: c63b5e52939e795ba8d26e35d767a843
sha256: 261364d7445513b9a4debc345650fad13c627029bfc800655a266bf1e375bc65
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.12,<3.13.0a0"
python_abi: 3.12.*
url: https://conda.anaconda.org/conda-forge/linux-64/brotli-python-1.1.0-py312h2ec8cdc_2.conda
hash:
md5: b0b867af6fc74b2a0aa206da29c0f3cf
sha256: f2a59ccd20b4816dea9a2a5cb917eb69728271dbf1aeab4e1b7e609330a50b6f
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: 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_1.tar.bz2
hash:
md5: 9b347a7ec10940d3f7941ff6c460b551
sha256: 561e6660f26c35d137ee150187d89767c988413c978e1b712d53f27ddf70ea17
category: main
optional: false
- name: cached_property
version: 1.5.2
manager: conda
platform: linux-64
dependencies:
python: ">=3.6"
url: https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2
hash:
md5: 576d629e47797577ab0f1b351297ef4a
sha256: 6dbf7a5070cc43d90a1e4c2ec0c541c69d8e30a0e25f50ce9f6e4a432e42c5d7
category: main
optional: false
- name: cachetools
version: 5.5.0
manager: conda
platform: linux-64
dependencies:
python: ">=3.7"
url: https://conda.anaconda.org/conda-forge/noarch/cachetools-5.5.0-pyhd8ed1ab_0.conda
hash:
md5: 5bad039db72bd8f134a5cff3ebaa190d
sha256: 0abdbbfc2e9c21079a943f42a2dcd950b1a8093ec474fc017e83da0ec4e6cbf4
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.12,<3.13.0a0"
python_abi: 3.12.*
url: https://conda.anaconda.org/conda-forge/linux-64/cffi-1.17.1-py312h06ac9bb_0.conda
hash:
md5: a861504bbea4161a9170b85d4d2be840
sha256: cba6ea83c4b0b4f5b5dc59cb19830519b28f95d7ebef7c9c5cf1c14843621457
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: cftime
version: 1.6.4
manager: conda
platform: linux-64
dependencies:
__glibc: ">=2.17,<3.0.a0"
libgcc: ">=13"
numpy: ">=1.19,<3"
python: ">=3.12,<3.13.0a0"
python_abi: 3.12.*
url: https://conda.anaconda.org/conda-forge/linux-64/cftime-1.6.4-py312hc0a28a1_1.conda
hash:
md5: 990033147b0a998e756eaaed6b28f48d
sha256: f881ead7671e89367003eaedcba8108828661d01d6fb1e160a6ad93145301328
category: main
optional: false
- name: charset-normalizer
version: 3.4.0
manager: conda
platform: linux-64
dependencies:
python: ">=3.9"
url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.0-pyhd8ed1ab_1.conda
hash:
md5: 6581a17bba6b948bb60130026404a9d6
sha256: 63022ee2c6a157a9f980250a66f54bdcdf5abee817348d0f9a74c2441a6fbf0e
category: main
optional: false
- name: click
version: 8.1.7
manager: conda
platform: linux-64
dependencies:
__unix: ""
python: ">=3.9"
url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_1.conda
hash:
md5: cb8e52f28f5e592598190c562e7b5bf1
sha256: 1cd5fc6ccdd5141378e51252a7a3810b07fd5a7e6934a5b4a7eccba66566224b
category: main
optional: false
- name: click-plugins
version: 1.1.1
manager: conda
platform: linux-64
dependencies:
click: ">=3.0"
python: ""
url: https://conda.anaconda.org/conda-forge/noarch/click-plugins-1.1.1-py_0.tar.bz2
hash:
md5: 4fd2c6b53934bd7d96d1f3fdaf99b79f
sha256: ddef6e559dde6673ee504b0e29dd814d36e22b6b9b1f519fa856ee268905bf92
category: main
optional: false
- name: cligj
version: 0.7.2
manager: conda
platform: linux-64
dependencies:
click: ">=4.0"
python: <4.0
url: https://conda.anaconda.org/conda-forge/noarch/cligj-0.7.2-pyhd8ed1ab_1.tar.bz2
hash:
md5: a29b7c141d6b2de4bb67788a5f107734
sha256: 97bd58f0cfcff56a0bcda101e26f7d936625599325beba3e3a1fa512dd7fc174
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: comm
version: 0.2.2
manager: conda
platform: linux-64
dependencies:
python: ">=3.6"
traitlets: ">=5.3"
url: https://conda.anaconda.org/conda-forge/noarch/comm-0.2.2-pyhd8ed1ab_0.conda
hash:
md5: 948d84721b578d426294e17a02e24cbb
sha256: e923acf02708a8a0b591f3bce4bdc11c8e63b73198b99b35fe6cd96bfb6a0dbe
category: main
optional: false
- name: contourpy
version: 1.3.1
manager: conda
platform: linux-64
dependencies:
__glibc: ">=2.17,<3.0.a0"
libgcc: ">=13"
libstdcxx: ">=13"
numpy: ">=1.23"
python: ">=3.12,<3.13.0a0"
python_abi: 3.12.*
url: https://conda.anaconda.org/conda-forge/linux-64/contourpy-1.3.1-py312h68727a3_0.conda
hash:
md5: f5fbba0394ee45e9a64a73c2a994126a
sha256: e977af50b844b5b8cfec358131a4e923f0aa718e8334321cf8d84f5093576259
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.12,<3.13.0a0"
python_abi: 3.12.*
url: https://conda.anaconda.org/conda-forge/linux-64/cryptography-43.0.3-py312hda17c39_0.conda
hash:
md5: 2abada8c216dd6e32514535a3fa245d4
sha256: ba9e5aced2e7dc0bbc48f60bf38f514839424a01975fb2aed30e9246c2f82c7c
category: main
optional: false
- name: curl
version: 8.10.1
manager: conda
platform: linux-64
dependencies:
__glibc: ">=2.17,<3.0.a0"
krb5: ">=1.21.3,<1.22.0a0"
libcurl: 8.10.1
libgcc: ">=13"
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/curl-8.10.1-hbbe4b11_0.conda
hash:
md5: 73c561c6b84bda71776c9fa21517e7eb
sha256: f2c6de198ae7505ab33ce7e86b7767f6492489cfb5635cad164822a9d73f3a5e
category: main
optional: false
- name: cycler
version: 0.12.1
manager: conda
platform: linux-64
dependencies:
python: ">=3.9"
url: https://conda.anaconda.org/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda
hash:
md5: 44600c4667a319d67dbe0681fc0bc833
sha256: 9827efa891e507a91a8a2acf64e210d2aff394e1cde432ad08e1f8c66b12293c
category: main
optional: false
- name: dav1d
version: 1.2.1
manager: conda
platform: linux-64
dependencies:
libgcc-ng: ">=12"
url: https://conda.anaconda.org/conda-forge/linux-64/dav1d-1.2.1-hd590300_0.conda
hash:
md5: 418c6ca5929a611cbd69204907a83995
sha256: 22053a5842ca8ee1cf8e1a817138cdb5e647eb2c46979f84153f6ad7bde73020
category: main
optional: false
- name: dcw-gmt
version: 2.2.0
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/conda-forge/linux-64/dcw-gmt-2.2.0-ha770c72_0.conda
hash:
md5: 69326c2953b6b6628db1ce5e8cb0c7b1
sha256: 3fb963122c59e3fc659848027fc5f4c9db90da868cb54b4fbddea845ddf33458
category: main
optional: false
- name: debugpy
version: 1.8.9
manager: conda
platform: linux-64
dependencies:
__glibc: ">=2.17,<3.0.a0"
libgcc: ">=13"
libstdcxx: ">=13"
python: ">=3.12,<3.13.0a0"
python_abi: 3.12.*
url: https://conda.anaconda.org/conda-forge/linux-64/debugpy-1.8.9-py312h2ec8cdc_0.conda
hash:
md5: c522fd70ca7a0c2fe1a861dd13987a57
sha256: cf79cac70773567382910fcaf7b10bb0f5242d159f8dd93296d8451cd542af9a
category: main
optional: false
- name: decorator
version: 5.1.1
manager: conda
platform: linux-64
dependencies:
python: ">=3.9"
url: https://conda.anaconda.org/conda-forge/noarch/decorator-5.1.1-pyhd8ed1ab_1.conda
hash:
md5: d622d8d7ee8868870f9cbe259f381181
sha256: 84e5120c97502a3785e8c3241c3bf51f64b4d445f13b4d2445db00d9816fe479
category: main
optional: false
- name: defusedxml
version: 0.7.1
manager: conda
platform: linux-64
dependencies:
python: ">=3.6"
url: https://conda.anaconda.org/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2
hash:
md5: 961b3a227b437d82ad7054484cfa71b2
sha256: 9717a059677553562a8f38ff07f3b9f61727bd614f505658b0a5ecbcf8df89be
category: main
optional: false
- name: distlib
version: 0.3.9
manager: conda
platform: linux-64
dependencies:
python: ">=3.9"
url: https://conda.anaconda.org/conda-forge/noarch/distlib-0.3.9-pyhd8ed1ab_1.conda
hash:
md5: 8d88f4a2242e6b96f9ecff9a6a05b2f1
sha256: 0e160c21776bd881b79ce70053e59736f51036784fa43a50da10a04f0c1b9c45
category: main
optional: false
- name: docutils
version: 0.20.1
manager: conda
platform: linux-64
dependencies:
python: ">=3.12,<3.13.0a0"
python_abi: 3.12.*
url: https://conda.anaconda.org/conda-forge/linux-64/docutils-0.20.1-py312h7900ff3_3.conda
hash:
md5: 1b90835ae26b9b8250b302649359a989
sha256: b9fb75d806afc53d9d7b98edb0c45ac38a3cc983916b8dac4ad7ddac5c18a024
category: main
optional: false
- name: entrypoints
version: "0.4"
manager: conda
platform: linux-64
dependencies:
python: ">=3.9"
url: https://conda.anaconda.org/conda-forge/noarch/entrypoints-0.4-pyhd8ed1ab_1.conda
hash:
md5: 3366592d3c219f2731721f11bc93755c
sha256: 80f579bfc71b3dab5bef74114b89e26c85cb0df8caf4c27ab5ffc16363d57ee7
category: main
optional: false
- name: exceptiongroup
version: 1.2.2
manager: conda
platform: linux-64
dependencies:
python: ">=3.9"
url: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_1.conda
hash:
md5: a16662747cdeb9abbac74d0057cc976e
sha256: cbde2c64ec317118fc06b223c5fd87c8a680255e7348dd60e7b292d2e103e701
category: main
optional: false
- name: executing
version: 2.1.0
manager: conda
platform: linux-64
dependencies:
python: ">=2.7"
url: https://conda.anaconda.org/conda-forge/noarch/executing-2.1.0-pyhd8ed1ab_0.conda
hash:
md5: d0441db20c827c11721889a241df1220
sha256: a52d7516e2e11d3eb10908e10d3eb3f8ef267fea99ed9b09d52d96c4db3441b8
category: main
optional: false
- name: fasteners
version: 0.17.3
manager: conda
platform: linux-64
dependencies:
python: ">=3.6"
url: https://conda.anaconda.org/conda-forge/noarch/fasteners-0.17.3-pyhd8ed1ab_0.tar.bz2
hash:
md5: 348e27e78a5e39090031448c72f66d5e
sha256: 42be6ac8478051b26751d778490d6a71de12e5c6443e145ff3eddbc577d9bcda
category: main
optional: false
- name: fftw
version: 3.3.10
manager: conda
platform: linux-64
dependencies:
libgcc-ng: ">=12"
libgfortran-ng: ""
libgfortran5: ">=12.3.0"
libstdcxx-ng: ">=12"
url: https://conda.anaconda.org/conda-forge/linux-64/fftw-3.3.10-nompi_hf1063bd_110.conda
hash:
md5: ee3e687b78b778db7b304e5b00a4dca6
sha256: 3cc58c9d9a8cc0089e3839ae5ff7ba4ddfc6df99d5f6a147fe90ea963bc6fe45
category: main
optional: false
- name: filelock
version: 3.16.1
manager: conda
platform: linux-64
dependencies:
python: ">=3.9"
url: https://conda.anaconda.org/conda-forge/noarch/filelock-3.16.1-pyhd8ed1ab_1.conda
hash:
md5: d692e9ba6f92dc51484bf3477e36ce7c
sha256: 18dca6e2194732df7ebf824abaefe999e4765ebe8e8a061269406ab88fc418b9
category: main
optional: false
- name: folium
version: 0.18.0
manager: conda
platform: linux-64
dependencies:
branca: ">=0.6.0"
jinja2: ">=2.9"
numpy: ""
python: ">=3.8"
requests: ""
xyzservices: ""
url: https://conda.anaconda.org/conda-forge/noarch/folium-0.18.0-pyhd8ed1ab_0.conda
hash:
md5: 26a1457f3e698dc0c9e656874cc6b623
sha256: b0692047888db2875cbdb3280aec69e9d88c229adf830c4f88357796d35ce006
category: main
optional: false
- name: fonttools
version: 4.55.1
manager: conda
platform: linux-64
dependencies:
__glibc: ">=2.17,<3.0.a0"
brotli: ""
libgcc: ">=13"
munkres: ""
python: ">=3.12,<3.13.0a0"
python_abi: 3.12.*
unicodedata2: ">=15.1.0"
url: https://conda.anaconda.org/conda-forge/linux-64/fonttools-4.55.1-py312h178313f_0.conda
hash:
md5: 174341e89aceca05a98008a20d0b4f14
sha256: c5a5c71b8fdec85c6d525b323df0ab82bb6ef1b9acc52915ab4702e212904b52
category: main
optional: false
- name: fqdn
version: 1.5.1
manager: conda
platform: linux-64
dependencies:
cached-property: ">=1.3.0"
python: ">=3.9,<4"
url: https://conda.anaconda.org/conda-forge/noarch/fqdn-1.5.1-pyhd8ed1ab_1.conda
hash:
md5: d3549fd50d450b6d9e7dddff25dd2110
sha256: 2509992ec2fd38ab27c7cdb42cf6cadc566a1cc0d1021a2673475d9fa87c6276
category: main
optional: false
- name: freetype
version: 2.12.1
manager: conda
platform: linux-64
dependencies:
libgcc-ng: ">=12"
libpng: ">=1.6.39,<1.7.0a0"
libzlib: ">=1.2.13,<2.0.0a0"
url: https://conda.anaconda.org/conda-forge/linux-64/freetype-2.12.1-h267a509_2.conda
hash:
md5: 9ae35c3d96db2c94ce0cef86efdfa2cb
sha256: b2e3c449ec9d907dd4656cb0dc93e140f447175b125a3824b31368b06c666bb6
category: main
optional: false
- name: freexl
version: 2.0.0
manager: conda
platform: linux-64
dependencies:
libexpat: ">=2.5.0,<3.0a0"
libgcc-ng: ">=12"
libiconv: ">=1.17,<2.0a0"
minizip: ">=4.0.1,<5.0a0"
url: https://conda.anaconda.org/conda-forge/linux-64/freexl-2.0.0-h743c826_0.conda
hash:
md5: 12e6988845706b2cfbc3bc35c9a61a95
sha256: 9213f60ba710ecfd3632ce47e036775c9f15ce80a6682ff63cbf12d9dddd5382
category: main
optional: false
- name: frozenlist
version: 1.5.0
manager: conda
platform: linux-64
dependencies:
__glibc: ">=2.17,<3.0.a0"
libgcc: ">=13"
python: ">=3.12,<3.13.0a0"
python_abi: 3.12.*
url: https://conda.anaconda.org/conda-forge/linux-64/frozenlist-1.5.0-py312h66e93f0_0.conda
hash:
md5: f98e36c96b2c66d9043187179ddb04f4
sha256: 7e0c12983b20f2816b3712729b5a35ecb7ee152132ca7cf805427c62395ea823
category: main
optional: false
- name: fsspec
version: 2024.10.0
manager: conda
platform: linux-64
dependencies:
python: ">=3.8"
url: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.10.0-pyhff2d567_0.conda
hash:
md5: 816dbc4679a64e4417cd1385d661bb31
sha256: 40bb76981dd49d5869b48925a8975bb7bbe4e33e1e40af4ec06f6bf4a62effd7
category: main
optional: false
- name: gcsfs
version: 2024.10.0
manager: conda
platform: linux-64
dependencies:
aiohttp: ""
decorator: ">4.1.2"
fsspec: 2024.10.0
google-auth: ">=1.2"
google-auth-oauthlib: ""
google-cloud-storage: ">1.40"
python: ">=3.7"
requests: ""
url: https://conda.anaconda.org/conda-forge/noarch/gcsfs-2024.10.0-pyhd8ed1ab_0.conda
hash:
md5: 955421eb32ce3fbeed9a83b20ecc76d3
sha256: 1a42711efffe728eb2f462a1c08dd749c86d91255fc7b993fdae420e4e2e2036
category: main
optional: false
- name: gdal
version: 3.10.0
manager: conda
platform: linux-64
dependencies:
__glibc: ">=2.17,<3.0.a0"
libgcc: ">=13"
libgdal-core: 3.10.0.*
libkml: ">=1.3.0,<1.4.0a0"
libstdcxx: ">=13"
libxml2: ">=2.13.5,<3.0a0"
numpy: ">=1.19,<3"
python: ">=3.12,<3.13.0a0"
python_abi: 3.12.*
url: https://conda.anaconda.org/conda-forge/linux-64/gdal-3.10.0-py312h22e8dc9_5.conda
hash:
md5: c7d5c5aba151b02f4340223c221fae36
sha256: da08247c64dd30efa14d690d6a73d959f7c6623900dad988c30ab1e6837e851d
category: main
optional: false
- name: geopandas
version: 1.0.1
manager: conda
platform: linux-64
dependencies:
folium: ""
geopandas-base: 1.0.1
mapclassify: ">=2.4.0"
matplotlib-base: ""
pyogrio: ">=0.7.2"
pyproj: ">=3.3.0"
python: ">=3.9"
xyzservices: ""
url: https://conda.anaconda.org/conda-forge/noarch/geopandas-1.0.1-pyhd8ed1ab_1.conda
hash:
md5: 79a9a8d2fd39ecb4081c0df0c10135dc
sha256: ea0e200967b93a1342670bee137917e93d04742f3c3c626fe435ebb29462bbd7
category: main
optional: false
- name: geopandas-base
version: 1.0.1
manager: conda
platform: linux-64
dependencies:
numpy: ">=1.22"
packaging: ""
pandas: ">=1.4.0"
python: ">=3.9"
shapely: ">=2.0.0"
url: https://conda.anaconda.org/conda-forge/noarch/geopandas-base-1.0.1-pyha770c72_1.conda
hash:
md5: cad8d8e1583463e7642adc72a76dc3c5
sha256: 1b0853491a299e95d57ccf3f3c9053a1b7e49fc9b2ad959f321b0717e567e249
category: main
optional: false
- name: geos
version: 3.13.0
manager: conda
platform: linux-64
dependencies:
__glibc: ">=2.17,<3.0.a0"