-
Notifications
You must be signed in to change notification settings - Fork 7
/
conda-lock.yml
3280 lines (3280 loc) · 96.2 KB
/
conda-lock.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This lock file was generated by conda-lock (https://github.com/conda/conda-lock). DO NOT EDIT!
#
# A "lock file" contains a concrete list of package versions (with checksums) to be installed. Unlike
# e.g. `conda env create`, the resulting environment will not change as new package versions become
# available, unless you explicitly update the lock file.
#
# Install this environment as "YOURENV" with:
# conda-lock install -n YOURENV --file conda-lock.yml
# To update a single package to the latest version compatible with the version constraints in the source:
# conda-lock lock --lockfile conda-lock.yml --update PACKAGE
# To re-solve the entire environment, e.g. after changing a version constraint in the source file:
# conda-lock -f conda.yaml --lockfile conda-lock.yml
version: 1
metadata:
content_hash:
linux-64: ded990d051d7301a1ef231d9d5bf063524748c12b2a371e0d195b97e6c34d88c
channels:
- url: conda-forge
used_env_vars: []
platforms:
- linux-64
sources:
- conda.yaml
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'
llvm-openmp: '>=9.0.1'
url: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_kmp_llvm.tar.bz2
hash:
md5: 562b26ba2e19059551a811e72ab7f793
sha256: 84a66275da3a66e3f3e70e9d8f10496d807d01a9e4ec16cd2274cc5e28c478fc
category: main
optional: false
- name: anyio
version: 4.3.0
manager: conda
platform: linux-64
dependencies:
exceptiongroup: '>=1.0.2'
idna: '>=2.8'
python: '>=3.8'
sniffio: '>=1.1'
typing_extensions: '>=4.1'
url: https://conda.anaconda.org/conda-forge/noarch/anyio-4.3.0-pyhd8ed1ab_0.conda
hash:
md5: ac95aa8ed65adfdde51132595c79aade
sha256: 86aca4a31c09f9b4dbdb332cd9a6a7dbab62ca734d3f832651c0ab59c6a7f52e
category: main
optional: false
- name: argon2-cffi
version: 23.1.0
manager: conda
platform: linux-64
dependencies:
argon2-cffi-bindings: ''
python: '>=3.7'
typing-extensions: ''
url: https://conda.anaconda.org/conda-forge/noarch/argon2-cffi-23.1.0-pyhd8ed1ab_0.conda
hash:
md5: 3afef1f55a1366b4d3b6a0d92e2235e4
sha256: 130766446f5507bd44df957b6b5c898a8bd98f024bb426ed6cb9ff1ad67fc677
category: main
optional: false
- name: argon2-cffi-bindings
version: 21.2.0
manager: conda
platform: linux-64
dependencies:
cffi: '>=1.0.1'
libgcc-ng: '>=12'
python: '>=3.11,<3.12.0a0'
python_abi: 3.11.*
url: https://conda.anaconda.org/conda-forge/linux-64/argon2-cffi-bindings-21.2.0-py311h459d7ec_4.conda
hash:
md5: de5b16869a430949b02161b04b844a30
sha256: 104194af519b4e667aa5341068b94b521a791aaaa05ec0091f8f0bdba43a60ac
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: asttokens
version: 2.4.1
manager: conda
platform: linux-64
dependencies:
python: '>=3.5'
six: '>=1.12.0'
url: https://conda.anaconda.org/conda-forge/noarch/asttokens-2.4.1-pyhd8ed1ab_0.conda
hash:
md5: 5f25798dcefd8252ce5f9dc494d5f571
sha256: 708168f026df19a0344983754d27d1f7b28bb21afc7b97a82f02c4798a3d2111
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: 23.2.0
manager: conda
platform: linux-64
dependencies:
python: '>=3.7'
url: https://conda.anaconda.org/conda-forge/noarch/attrs-23.2.0-pyh71513ae_0.conda
hash:
md5: 5e4c0743c70186509d1412e03c2d8dfa
sha256: 77c7d03bdb243a048fff398cedc74327b7dc79169ebe3b4c8448b0331ea55fea
category: main
optional: false
- name: babel
version: 2.14.0
manager: conda
platform: linux-64
dependencies:
python: '>=3.7'
pytz: ''
setuptools: ''
url: https://conda.anaconda.org/conda-forge/noarch/babel-2.14.0-pyhd8ed1ab_0.conda
hash:
md5: 9669586875baeced8fc30c0826c3270e
sha256: 8584e3da58e92b72641c89ff9b98c51f0d5dbe76e527867804cbdf03ac91d8e6
category: main
optional: false
- name: beautifulsoup4
version: 4.12.3
manager: conda
platform: linux-64
dependencies:
python: '>=3.6'
soupsieve: '>=1.2'
url: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.3-pyha770c72_0.conda
hash:
md5: 332493000404d8411859539a5a630865
sha256: 7b05b2d0669029326c623b9df7a29fa49d1982a9e7e31b2fea34b4c9a4a72317
category: main
optional: false
- name: bleach
version: 6.1.0
manager: conda
platform: linux-64
dependencies:
packaging: ''
python: '>=3.6'
setuptools: ''
six: '>=1.9.0'
webencodings: ''
url: https://conda.anaconda.org/conda-forge/noarch/bleach-6.1.0-pyhd8ed1ab_0.conda
hash:
md5: 0ed9d7c0e9afa7c025807a9a8136ea3e
sha256: 845e77ef495376c5c3c328ccfd746ca0ef1978150cae8eae61a300fe7755fb08
category: main
optional: false
- name: boost
version: 1.84.0
manager: conda
platform: linux-64
dependencies:
libboost-python-devel: 1.84.0
numpy: '>=1.23.5,<2.0a0'
python_abi: 3.11.*
url: https://conda.anaconda.org/conda-forge/linux-64/boost-1.84.0-h781c19f_2.conda
hash:
md5: 8eaff167a1fc47f45253f52858aadebe
sha256: 2d6dad5a128d9452ffeaaac0ca6b1a53292450db9e74ca8fa4dd2b87631a3928
category: main
optional: false
- name: brotli-python
version: 1.1.0
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
libstdcxx-ng: '>=12'
python: '>=3.11,<3.12.0a0'
python_abi: 3.11.*
url: https://conda.anaconda.org/conda-forge/linux-64/brotli-python-1.1.0-py311hb755f60_1.conda
hash:
md5: cce9e7c3f1c307f2a5fb08a2922d6164
sha256: 559093679e9fdb6061b7b80ca0f9a31fe6ffc213f1dae65bc5c82e2cd1a94107
category: main
optional: false
- name: bzip2
version: 1.0.8
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-hd590300_5.conda
hash:
md5: 69b8b6202a07720f448be700e300ccf4
sha256: 242c0c324507ee172c0e0dd2045814e746bb303d1eb78870d182ceb0abc726a8
category: main
optional: false
- name: c-ares
version: 1.28.1
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.28.1-hd590300_0.conda
hash:
md5: dcde58ff9a1f30b0037a2315d1846d1f
sha256: cb25063f3342149c7924b21544109696197a9d774f1407567477d4f3026bf38a
category: main
optional: false
- name: ca-certificates
version: 2024.2.2
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.2.2-hbcca054_0.conda
hash:
md5: 2f4327a1cbe7f022401b236e915a5fef
sha256: 91d81bfecdbb142c15066df70cc952590ae8991670198f92c66b62019b251aeb
category: main
optional: false
- name: cachecontrol
version: 0.14.0
manager: conda
platform: linux-64
dependencies:
msgpack-python: '>=0.5.2'
python: '>=3.7'
requests: '>=2.16.0'
url: https://conda.anaconda.org/conda-forge/noarch/cachecontrol-0.14.0-pyhd8ed1ab_0.conda
hash:
md5: a661c39e223bf3038b38126b0bbf43d9
sha256: 3318732d60456c5ecc0db14a7343a320ea88e05ae168aea4164d7f9ec7907142
category: main
optional: false
- name: cachecontrol-with-filecache
version: 0.14.0
manager: conda
platform: linux-64
dependencies:
cachecontrol: 0.14.0
filelock: '>=3.8.0'
python: '>=3.7'
url: https://conda.anaconda.org/conda-forge/noarch/cachecontrol-with-filecache-0.14.0-pyhd8ed1ab_0.conda
hash:
md5: 4c08fa6e7d1d3f124ad815e21b2210e9
sha256: 89a9061aafc28c0e0e2db49a5b99e99797ed3a7127c31deda0cceb4696ae627f
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: certifi
version: 2024.2.2
manager: conda
platform: linux-64
dependencies:
python: '>=3.7'
url: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.2.2-pyhd8ed1ab_0.conda
hash:
md5: 0876280e409658fc6f9e75d035960333
sha256: f1faca020f988696e6b6ee47c82524c7806380b37cfdd1def32f92c326caca54
category: main
optional: false
- name: cffi
version: 1.16.0
manager: conda
platform: linux-64
dependencies:
libffi: '>=3.4,<4.0a0'
libgcc-ng: '>=12'
pycparser: ''
python: '>=3.11,<3.12.0a0'
python_abi: 3.11.*
url: https://conda.anaconda.org/conda-forge/linux-64/cffi-1.16.0-py311hb3a22ac_0.conda
hash:
md5: b3469563ac5e808b0cd92810d0697043
sha256: b71c94528ca0c35133da4b7ef69b51a0b55eeee570376057f3d2ad60c3ab1444
category: main
optional: false
- name: charset-normalizer
version: 3.3.2
manager: conda
platform: linux-64
dependencies:
python: '>=3.7'
url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.3.2-pyhd8ed1ab_0.conda
hash:
md5: 7f4a9e3fcff3f6356ae99244a014da6a
sha256: 20cae47d31fdd58d99c4d2e65fbdcefa0b0de0c84e455ba9d6356a4bdbc4b5b9
category: main
optional: false
- name: cleo
version: 2.1.0
manager: conda
platform: linux-64
dependencies:
crashtest: '>=0.4.1,<0.5.0'
python: '>=3.7,<4.0'
rapidfuzz: '>=3.0.0,<4.0.0'
url: https://conda.anaconda.org/conda-forge/noarch/cleo-2.1.0-pyhd8ed1ab_0.conda
hash:
md5: 69569ea8a6d1465193345a40421d138b
sha256: eed2d2cb8792b3ae6434ce49bf5fe1ae5d885253f6bd2e56da933c427705fcbc
category: main
optional: false
- name: cmake
version: 3.29.2
manager: conda
platform: linux-64
dependencies:
bzip2: '>=1.0.8,<2.0a0'
libcurl: '>=8.7.1,<9.0a0'
libexpat: '>=2.6.2,<3.0a0'
libgcc-ng: '>=12'
libstdcxx-ng: '>=12'
libuv: '>=1.48.0,<2.0a0'
libzlib: '>=1.2.13,<1.3.0a0'
ncurses: '>=6.4.20240210,<7.0a0'
rhash: '>=1.4.4,<2.0a0'
xz: '>=5.2.6,<6.0a0'
zstd: '>=1.5.5,<1.6.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/cmake-3.29.2-hcfe8598_0.conda
hash:
md5: 7b7ea31d312b491b814f4e7f67de7886
sha256: a5de599a96b090fdad9041aa0fdc8ef546b2e36200edb72324e349d4ae01365e
category: main
optional: false
- name: colorama
version: 0.4.6
manager: conda
platform: linux-64
dependencies:
python: '>=3.7'
url: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2
hash:
md5: 3faab06a954c2a04039983f2c4a50d99
sha256: 2c1b2e9755ce3102bca8d69e8f26e4f087ece73f50418186aee7c74bef8e1698
category: main
optional: false
- name: 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: 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: 42.0.5
manager: conda
platform: linux-64
dependencies:
cffi: '>=1.12'
libgcc-ng: '>=12'
openssl: '>=3.2.1,<4.0a0'
python: '>=3.11,<3.12.0a0'
python_abi: 3.11.*
url: https://conda.anaconda.org/conda-forge/linux-64/cryptography-42.0.5-py311h63ff55d_0.conda
hash:
md5: 76909c8c7b915f0af4f35e80da5f9a87
sha256: d3531a63f2bf9e234a8ebbbcef3dffc0721c8320166e3b86c05e05aef8c02480
category: main
optional: false
- name: cuda-cudart
version: 12.4.127
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
cuda-cudart_linux-64: 12.4.127
cuda-version: '>=12.4,<12.5.0a0'
libgcc-ng: '>=12'
libstdcxx-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/cuda-cudart-12.4.127-hd3aeb46_0.conda
hash:
md5: fb2b98fe862228c47f67ab7d8bcdc259
sha256: a80c060ae8c2eed29dd1db0d01404547f6f1537c98ccdbf218a0e7d1ee8e2498
category: main
optional: false
- name: cuda-cudart_linux-64
version: 12.4.127
manager: conda
platform: linux-64
dependencies:
cuda-version: '>=12.4,<12.5.0a0'
url: https://conda.anaconda.org/conda-forge/noarch/cuda-cudart_linux-64-12.4.127-h59595ed_0.conda
hash:
md5: 8abaa644e2567a0413c8a391c546ea8c
sha256: a4ef8e2f9017bd0f2759fd4790c0ffc451564c17693bc114de9540c4453de00a
category: main
optional: false
- name: cuda-nvrtc
version: 12.4.127
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
cuda-version: '>=12.4,<12.5.0a0'
libgcc-ng: '>=12'
libstdcxx-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/cuda-nvrtc-12.4.127-hd3aeb46_1.conda
hash:
md5: f2247a84365f4067a4c877056f41dcab
sha256: 28d6ba387acd5c23f5b4827054a3e878c9a17e8c44171d74c9ba960a1435fdc5
category: main
optional: false
- name: cuda-nvtx
version: 12.4.127
manager: conda
platform: linux-64
dependencies:
cuda-version: '>=12.4,<12.5.0a0'
libgcc-ng: '>=12'
libstdcxx-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/cuda-nvtx-12.4.127-h59595ed_1.conda
hash:
md5: c72626eea976bebebb07e1ad6180f10a
sha256: 16c49931dfb89847572b9d0092d360f54ad4169b9fbc2541b69124d479d7b680
category: main
optional: false
- name: cuda-version
version: '12.4'
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/conda-forge/noarch/cuda-version-12.4-h3060b56_3.conda
hash:
md5: c9a3fe8b957176e1a8452c6f3431b0d8
sha256: 571d32fbd0dc8df6e85c14d1757549927e272af9c70b935d7e3a553ab0b0b4da
category: main
optional: false
- name: cudnn
version: 8.9.7.29
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
cuda-nvrtc: ''
cuda-version: '>=12.0,<13.0a0'
libcublas: ''
libgcc-ng: '>=12'
libstdcxx-ng: '>=12'
libzlib: '>=1.2.13,<1.3.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/cudnn-8.9.7.29-h092f7fd_3.conda
hash:
md5: 2242eab289d88f2f819f8aee5aa49823
sha256: 27156736f5a0a30e6fb426f35216b903968b58bdf209d0a04b6eeb6530838456
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: debugpy
version: 1.8.1
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
libstdcxx-ng: '>=12'
python: '>=3.11,<3.12.0a0'
python_abi: 3.11.*
url: https://conda.anaconda.org/conda-forge/linux-64/debugpy-1.8.1-py311hb755f60_0.conda
hash:
md5: 17b98238cbbfbebacd46b79b7fc629a9
sha256: e69fe7d453389d54fa68fb6fb75ac85f882b2ab4bc745b02c7ff8cd83aee2a5b
category: main
optional: false
- name: decorator
version: 5.1.1
manager: conda
platform: linux-64
dependencies:
python: '>=3.5'
url: https://conda.anaconda.org/conda-forge/noarch/decorator-5.1.1-pyhd8ed1ab_0.tar.bz2
hash:
md5: 43afe5ab04e35e17ba28649471dd7364
sha256: 328a6a379f9bdfd0230e51de291ce858e6479411ea4b0545fb377c71662ef3e2
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.8
manager: conda
platform: linux-64
dependencies:
python: 2.7|>=3.6
url: https://conda.anaconda.org/conda-forge/noarch/distlib-0.3.8-pyhd8ed1ab_0.conda
hash:
md5: db16c66b759a64dc5183d69cc3745a52
sha256: 3ff11acdd5cc2f80227682966916e878e45ced94f59c402efb94911a5774e84e
category: main
optional: false
- name: dulwich
version: 0.21.7
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
python: '>=3.11,<3.12.0a0'
python_abi: 3.11.*
urllib3: '>=1.25'
url: https://conda.anaconda.org/conda-forge/linux-64/dulwich-0.21.7-py311h459d7ec_0.conda
hash:
md5: a50b0c00b7498cfde328e63a3e18d9d3
sha256: 190dbafc9e699f74cf8d287e91246acac1e14afda8ce6aedafac87e392e1bc96
category: main
optional: false
- name: entrypoints
version: '0.4'
manager: conda
platform: linux-64
dependencies:
python: '>=3.6'
url: https://conda.anaconda.org/conda-forge/noarch/entrypoints-0.4-pyhd8ed1ab_0.tar.bz2
hash:
md5: 3cf04868fee0a029769bd41f4b2fbf2d
sha256: 2ec4a0900a4a9f42615fc04d0fb3286b796abe56590e8e042f6ec25e102dd5af
category: main
optional: false
- name: exceptiongroup
version: 1.2.0
manager: conda
platform: linux-64
dependencies:
python: '>=3.7'
url: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.0-pyhd8ed1ab_2.conda
hash:
md5: 8d652ea2ee8eaee02ed8dc820bc794aa
sha256: a6ae416383bda0e3ed14eaa187c653e22bec94ff2aa3b56970cdf0032761e80d
category: main
optional: false
- name: executing
version: 2.0.1
manager: conda
platform: linux-64
dependencies:
python: '>=2.7'
url: https://conda.anaconda.org/conda-forge/noarch/executing-2.0.1-pyhd8ed1ab_0.conda
hash:
md5: e16be50e378d8a4533b989035b196ab8
sha256: c738804ab1e6376f8ea63372229a04c8d658dc90fd5a218c6273a2eaf02f4057
category: main
optional: false
- name: expat
version: 2.6.2
manager: conda
platform: linux-64
dependencies:
libexpat: 2.6.2
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/expat-2.6.2-h59595ed_0.conda
hash:
md5: 53fb86322bdb89496d7579fe3f02fd61
sha256: 89916c536ae5b85bb8bf0cfa27d751e274ea0911f04e4a928744735c14ef5155
category: main
optional: false
- name: filelock
version: 3.13.4
manager: conda
platform: linux-64
dependencies:
python: '>=3.7'
url: https://conda.anaconda.org/conda-forge/noarch/filelock-3.13.4-pyhd8ed1ab_0.conda
hash:
md5: 6baa2e7fc09bd2c7c82cb6662d5f1d36
sha256: 2eef860d5ad6ef1fac5002a3b75661f765d448e9f997f64482b0e51a097e037f
category: main
optional: false
- name: fqdn
version: 1.5.1
manager: conda
platform: linux-64
dependencies:
cached-property: '>=1.3.0'
python: '>=2.7,<4'
url: https://conda.anaconda.org/conda-forge/noarch/fqdn-1.5.1-pyhd8ed1ab_0.tar.bz2
hash:
md5: 642d35437078749ef23a5dca2c9bb1f3
sha256: 6cfd1f9bcd2358a69fb571f4b3af049b630d52647d906822dbedac03e84e4f63
category: main
optional: false
- name: fsspec
version: 2024.3.1
manager: conda
platform: linux-64
dependencies:
python: '>=3.8'
url: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.3.1-pyhca7485f_0.conda
hash:
md5: b7f0662ef2c9d4404f0af9eef5ed2fde
sha256: b8621151939bb5ea4ea4aa84f010e6130a47b1453cd9178283f335816b72a895
category: main
optional: false
- name: gmp
version: 6.3.0
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
libstdcxx-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/gmp-6.3.0-h59595ed_1.conda
hash:
md5: e358c7c5f6824c272b5034b3816438a7
sha256: cfc4202c23d6895d9c84042d08d5cda47d597772df870d4d2a10fc86dded5576
category: main
optional: false
- name: gmpy2
version: 2.1.5
manager: conda
platform: linux-64
dependencies:
gmp: '>=6.3.0,<7.0a0'
libgcc-ng: '>=12'
mpc: '>=1.3.1,<2.0a0'
mpfr: '>=4.2.1,<5.0a0'
python: '>=3.11,<3.12.0a0'
python_abi: 3.11.*
url: https://conda.anaconda.org/conda-forge/linux-64/gmpy2-2.1.5-py311he48d604_0.conda
hash:
md5: 653ff815c53880a870ec03fb1cae0f94
sha256: d3f8988811d2b0d7904603f07687f3f79747db5271e56b788eab5f36d56346bd
category: main
optional: false
- name: h11
version: 0.14.0
manager: conda
platform: linux-64
dependencies:
python: '>=3'
typing_extensions: ''
url: https://conda.anaconda.org/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_0.tar.bz2
hash:
md5: b21ed0883505ba1910994f1df031a428
sha256: 817d2c77d53afe3f3d9cf7f6eb8745cdd8ea76c7adaa9d7ced75c455a2c2c085
category: main
optional: false
- name: h2
version: 4.1.0
manager: conda
platform: linux-64
dependencies:
hpack: '>=4.0,<5'
hyperframe: '>=6.0,<7'
python: '>=3.6.1'
url: https://conda.anaconda.org/conda-forge/noarch/h2-4.1.0-pyhd8ed1ab_0.tar.bz2
hash:
md5: b748fbf7060927a6e82df7cb5ee8f097
sha256: bfc6a23849953647f4e255c782e74a0e18fe16f7e25c7bb0bc57b83bb6762c7a
category: main
optional: false
- name: hpack
version: 4.0.0
manager: conda
platform: linux-64
dependencies:
python: ''
url: https://conda.anaconda.org/conda-forge/noarch/hpack-4.0.0-pyh9f0ad1d_0.tar.bz2
hash:
md5: 914d6646c4dbb1fd3ff539830a12fd71
sha256: 5dec948932c4f740674b1afb551223ada0c55103f4c7bf86a110454da3d27cb8
category: main
optional: false
- name: httpcore
version: 1.0.5
manager: conda
platform: linux-64
dependencies:
anyio: '>=3.0,<5.0'
certifi: ''
h11: '>=0.13,<0.15'
h2: '>=3,<5'
python: '>=3.8'
sniffio: 1.*
url: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.5-pyhd8ed1ab_0.conda
hash:
md5: a6b9a0158301e697e4d0a36a3d60e133
sha256: 4025644200eefa0598e4600a66fd4804a57d9fd7054a5c8c45e508fd875e0b84
category: main
optional: false
- name: httpx
version: 0.27.0
manager: conda
platform: linux-64
dependencies:
anyio: ''
certifi: ''
httpcore: 1.*
idna: ''
python: '>=3.8'
sniffio: ''
url: https://conda.anaconda.org/conda-forge/noarch/httpx-0.27.0-pyhd8ed1ab_0.conda
hash:
md5: 9f359af5a886fd6ca6b2b6ea02e58332
sha256: fdaf341fb2630b7afe8238315448fc93947f77ebfa4da68bb349e1bcf820af58
category: main
optional: false
- name: hyperframe
version: 6.0.1
manager: conda
platform: linux-64
dependencies:
python: '>=3.6'
url: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.0.1-pyhd8ed1ab_0.tar.bz2
hash:
md5: 9f765cbfab6870c8435b9eefecd7a1f4
sha256: e374a9d0f53149328134a8d86f5d72bca4c6dcebed3c0ecfa968c02996289330
category: main
optional: false
- name: icu
version: '73.2'
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
libstdcxx-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/icu-73.2-h59595ed_0.conda
hash:
md5: cc47e1facc155f91abd89b11e48e72ff
sha256: e12fd90ef6601da2875ebc432452590bc82a893041473bc1c13ef29001a73ea8
category: main
optional: false
- name: idna
version: '3.7'
manager: conda
platform: linux-64
dependencies:
python: '>=3.6'
url: https://conda.anaconda.org/conda-forge/noarch/idna-3.7-pyhd8ed1ab_0.conda
hash:
md5: c0cc1420498b17414d8617d0b9f506ca
sha256: 9687ee909ed46169395d4f99a0ee94b80a52f87bed69cd454bb6d37ffeb0ec7b
category: main
optional: false
- name: importlib-metadata
version: 7.1.0
manager: conda
platform: linux-64
dependencies:
python: '>=3.8'
zipp: '>=0.5'
url: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-7.1.0-pyha770c72_0.conda
hash:
md5: 0896606848b2dc5cebdf111b6543aa04
sha256: cc2e7d1f7f01cede30feafc1118b7aefa244d0a12224513734e24165ae12ba49
category: main
optional: false
- name: importlib_metadata
version: 7.1.0
manager: conda
platform: linux-64
dependencies:
importlib-metadata: '>=7.1.0,<7.1.1.0a0'
url: https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-7.1.0-hd8ed1ab_0.conda
hash:
md5: 6ef2b72d291b39e479d7694efa2b2b98
sha256: 01dc057a45dedcc742a71599f67c7383ae2bf873be6018ebcbd06ac8d994dedb
category: main
optional: false
- name: importlib_resources
version: 6.4.0
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.0-pyhd8ed1ab_0.conda
hash:
md5: c5d3907ad8bd7bf557521a1833cf7e6d
sha256: c6ae80c0beaeabb342c5b041f19669992ae6e937dbec56ced766cb035900f9de
category: main
optional: false
- name: ipykernel
version: 6.29.3
manager: conda
platform: linux-64
dependencies:
__linux: ''
comm: '>=0.1.1'
debugpy: '>=1.6.5'
ipython: '>=7.23.1'
jupyter_client: '>=6.1.12'
jupyter_core: '>=4.12,!=5.0.*'
matplotlib-inline: '>=0.1'
nest-asyncio: ''
packaging: ''
psutil: ''
python: '>=3.8'
pyzmq: '>=24'
tornado: '>=6.1'
traitlets: '>=5.4.0'
url: https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.29.3-pyhd33586a_0.conda
hash:
md5: e0deff12c601ce5cb7476f93718f3168
sha256: 0314f15e666fd9a4fb653aae37d2cf4dc6bc3a18c0d9c2671a6a0783146adcfa
category: main
optional: false
- name: ipython
version: 8.22.2
manager: conda
platform: linux-64
dependencies:
__unix: ''
decorator: ''
exceptiongroup: ''
jedi: '>=0.16'
matplotlib-inline: ''
pexpect: '>4.3'
pickleshare: ''
prompt-toolkit: '>=3.0.41,<3.1.0'
pygments: '>=2.4.0'
python: '>=3.10'
stack_data: ''
traitlets: '>=5.13.0'
typing_extensions: ''
url: https://conda.anaconda.org/conda-forge/noarch/ipython-8.22.2-pyh707e725_0.conda
hash:
md5: f0abe827c8a7c6d91bccdf90cb1fbee3
sha256: 7740505317669f094c881537a643ed26977e209510965164d84942799c997d42
category: main
optional: false
- name: isoduration
version: 20.11.0
manager: conda
platform: linux-64
dependencies:
arrow: '>=0.15.0'
python: '>=3.7'
url: https://conda.anaconda.org/conda-forge/noarch/isoduration-20.11.0-pyhd8ed1ab_0.tar.bz2
hash:
md5: 4cb68948e0b8429534380243d063a27a
sha256: 7bb5c4d994361022f47a807b5e7d101b3dce16f7dd8a0af6ffad9f479d346493
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: jedi
version: 0.19.1
manager: conda
platform: linux-64
dependencies:
parso: '>=0.8.3,<0.9.0'
python: '>=3.6'
url: https://conda.anaconda.org/conda-forge/noarch/jedi-0.19.1-pyhd8ed1ab_0.conda
hash:
md5: 81a3be0b2023e1ea8555781f0ad904a2
sha256: 362f0936ef37dfd1eaa860190e42a6ebf8faa094eaa3be6aa4d9ace95f40047a
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.3
manager: conda
platform: linux-64
dependencies:
markupsafe: '>=2.0'
python: '>=3.7'
url: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.3-pyhd8ed1ab_0.conda
hash:
md5: e7d8df6509ba635247ff9aea31134262
sha256: fd517b7dd3a61eca34f8a6f9f92f306397149cae1204fce72ac3d227107dafdc
category: main
optional: false
- name: json5
version: 0.9.25
manager: conda
platform: linux-64
dependencies:
python: '>=3.7,<4.0'
url: https://conda.anaconda.org/conda-forge/noarch/json5-0.9.25-pyhd8ed1ab_0.conda
hash:
md5: 5d8c241a9261e720a34a07a3e1ac4109
sha256: 0c75e428970e8bb72ba1dd3a6dc32b8d68f6534b4fe16b38e53364963fdc8e38
category: main
optional: false
- name: jsonpointer
version: '2.4'
manager: conda
platform: linux-64
dependencies:
python: '>=3.11,<3.12.0a0'
python_abi: 3.11.*
url: https://conda.anaconda.org/conda-forge/linux-64/jsonpointer-2.4-py311h38be061_3.conda
hash:
md5: 41d52d822edf991bf0e6b08c1921a8ec
sha256: 976f7bf3c3a49c3066f36b67c12ae06b31542e53b843bb4362f31c9e449c6c46
category: main