-
Notifications
You must be signed in to change notification settings - Fork 4
/
conda-lock.yml
12749 lines (12749 loc) · 373 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: fa80b428d8dfaa2386e05d629fc8054507a6a9854c11ca1803523c91b6451e91
win-64: d760bc389051edb9f3091f8db0b19686161ca4948812beb9de73afc2b2d04940
osx-arm64: cff47ff517052906c28313824d53cb5372493508f0a829497beba488b16f6183
channels:
- url: conda-forge
used_env_vars: []
- url: nvidia
used_env_vars: []
platforms:
- linux-64
- osx-arm64
- win-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'
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: accelerate
version: 0.31.0
manager: conda
platform: linux-64
dependencies:
huggingface_hub: ''
numpy: '>=1.17'
packaging: '>=20.0'
psutil: ''
python: '>=3.8.0'
pytorch: '>=1.10.0'
pyyaml: ''
safetensors: '>=0.3.1'
url: https://conda.anaconda.org/conda-forge/noarch/accelerate-0.31.0-pyhd8ed1ab_0.conda
hash:
md5: aecc08b0a3a227fc95266b215307de8d
sha256: 716ad18eef7934217251bb94c2fcf201b934f76e5cb68520176ae8ae53c818cf
category: main
optional: false
- name: accelerate
version: 0.31.0
manager: conda
platform: osx-arm64
dependencies:
pyyaml: ''
psutil: ''
huggingface_hub: ''
packaging: '>=20.0'
numpy: '>=1.17'
python: '>=3.8.0'
pytorch: '>=1.10.0'
safetensors: '>=0.3.1'
url: https://conda.anaconda.org/conda-forge/noarch/accelerate-0.31.0-pyhd8ed1ab_0.conda
hash:
md5: aecc08b0a3a227fc95266b215307de8d
sha256: 716ad18eef7934217251bb94c2fcf201b934f76e5cb68520176ae8ae53c818cf
category: main
optional: false
- name: accelerate
version: 0.31.0
manager: conda
platform: win-64
dependencies:
pyyaml: ''
psutil: ''
huggingface_hub: ''
packaging: '>=20.0'
numpy: '>=1.17'
python: '>=3.8.0'
pytorch: '>=1.10.0'
safetensors: '>=0.3.1'
url: https://conda.anaconda.org/conda-forge/noarch/accelerate-0.31.0-pyhd8ed1ab_0.conda
hash:
md5: aecc08b0a3a227fc95266b215307de8d
sha256: 716ad18eef7934217251bb94c2fcf201b934f76e5cb68520176ae8ae53c818cf
category: main
optional: false
- name: aiohttp
version: 3.9.5
manager: conda
platform: linux-64
dependencies:
aiosignal: '>=1.1.2'
async-timeout: '>=4.0,<5.0'
attrs: '>=17.3.0'
frozenlist: '>=1.1.1'
libgcc-ng: '>=12'
multidict: '>=4.5,<7.0'
python: '>=3.10,<3.11.0a0'
python_abi: 3.10.*
yarl: '>=1.0,<2.0'
url: https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.9.5-py310h2372a71_0.conda
hash:
md5: 00b6dda5bb36ac4226a051db2d406d22
sha256: be88033cfaf80d1ea9a2e16af2ca9eb760aa034af5a4a49a348f654ebd73756c
category: main
optional: false
- name: aiohttp
version: 3.9.5
manager: conda
platform: osx-arm64
dependencies:
aiosignal: '>=1.1.2'
async-timeout: '>=4.0,<5.0'
attrs: '>=17.3.0'
frozenlist: '>=1.1.1'
multidict: '>=4.5,<7.0'
python: '>=3.10,<3.11.0a0'
python_abi: 3.10.*
yarl: '>=1.0,<2.0'
url: https://conda.anaconda.org/conda-forge/osx-arm64/aiohttp-3.9.5-py310hd125d64_0.conda
hash:
md5: 9b6eec701f3287f96398b93aab9d5a06
sha256: 0693a9168f6ab2af079f0e60b4c47845c98cd3932fe9728a611922d744e2b3e5
category: main
optional: false
- name: aiohttp
version: 3.9.5
manager: conda
platform: win-64
dependencies:
aiosignal: '>=1.1.2'
async-timeout: '>=4.0,<5.0'
attrs: '>=17.3.0'
frozenlist: '>=1.1.1'
multidict: '>=4.5,<7.0'
python: '>=3.10,<3.11.0a0'
python_abi: 3.10.*
ucrt: '>=10.0.20348.0'
vc: '>=14.2,<15'
vc14_runtime: '>=14.29.30139'
yarl: '>=1.0,<2.0'
url: https://conda.anaconda.org/conda-forge/win-64/aiohttp-3.9.5-py310h8d17308_0.conda
hash:
md5: d3fa0a6a40fda2e72dd56b33bbb73d2e
sha256: dad9a4a890f10ced3afe70c478647d4f1aad3a301235ce92cd208e63c36d660f
category: main
optional: false
- name: aiosignal
version: 1.3.1
manager: conda
platform: linux-64
dependencies:
frozenlist: '>=1.1.0'
python: '>=3.7'
url: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.1-pyhd8ed1ab_0.tar.bz2
hash:
md5: d1e1eb7e21a9e2c74279d87dafb68156
sha256: 575c742e14c86575986dc867463582a970463da50b77264cdf54df74f5563783
category: main
optional: false
- name: aiosignal
version: 1.3.1
manager: conda
platform: osx-arm64
dependencies:
python: '>=3.7'
frozenlist: '>=1.1.0'
url: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.1-pyhd8ed1ab_0.tar.bz2
hash:
md5: d1e1eb7e21a9e2c74279d87dafb68156
sha256: 575c742e14c86575986dc867463582a970463da50b77264cdf54df74f5563783
category: main
optional: false
- name: aiosignal
version: 1.3.1
manager: conda
platform: win-64
dependencies:
python: '>=3.7'
frozenlist: '>=1.1.0'
url: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.1-pyhd8ed1ab_0.tar.bz2
hash:
md5: d1e1eb7e21a9e2c74279d87dafb68156
sha256: 575c742e14c86575986dc867463582a970463da50b77264cdf54df74f5563783
category: main
optional: false
- name: anyio
version: 4.4.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.4.0-pyhd8ed1ab_0.conda
hash:
md5: 1fa97c6e8db1f82c64ff17a5efc4ae8e
sha256: 84ac9429812495f12939ab4994f2634f7cacd254f6234a0c2c0243daed15a7ee
category: main
optional: false
- name: anyio
version: 4.4.0
manager: conda
platform: osx-arm64
dependencies:
python: '>=3.8'
sniffio: '>=1.1'
typing_extensions: '>=4.1'
idna: '>=2.8'
exceptiongroup: '>=1.0.2'
url: https://conda.anaconda.org/conda-forge/noarch/anyio-4.4.0-pyhd8ed1ab_0.conda
hash:
md5: 1fa97c6e8db1f82c64ff17a5efc4ae8e
sha256: 84ac9429812495f12939ab4994f2634f7cacd254f6234a0c2c0243daed15a7ee
category: main
optional: false
- name: anyio
version: 4.4.0
manager: conda
platform: win-64
dependencies:
python: '>=3.8'
sniffio: '>=1.1'
typing_extensions: '>=4.1'
idna: '>=2.8'
exceptiongroup: '>=1.0.2'
url: https://conda.anaconda.org/conda-forge/noarch/anyio-4.4.0-pyhd8ed1ab_0.conda
hash:
md5: 1fa97c6e8db1f82c64ff17a5efc4ae8e
sha256: 84ac9429812495f12939ab4994f2634f7cacd254f6234a0c2c0243daed15a7ee
category: main
optional: false
- name: appdirs
version: 1.4.4
manager: conda
platform: linux-64
dependencies:
python: ''
url: https://conda.anaconda.org/conda-forge/noarch/appdirs-1.4.4-pyh9f0ad1d_0.tar.bz2
hash:
md5: 5f095bc6454094e96f146491fd03633b
sha256: ae9fb8f68281f84482f2c234379aa12405a9e365151d43af20b3ae1f17312111
category: main
optional: false
- name: appdirs
version: 1.4.4
manager: conda
platform: osx-arm64
dependencies:
python: ''
url: https://conda.anaconda.org/conda-forge/noarch/appdirs-1.4.4-pyh9f0ad1d_0.tar.bz2
hash:
md5: 5f095bc6454094e96f146491fd03633b
sha256: ae9fb8f68281f84482f2c234379aa12405a9e365151d43af20b3ae1f17312111
category: main
optional: false
- name: appdirs
version: 1.4.4
manager: conda
platform: win-64
dependencies:
python: ''
url: https://conda.anaconda.org/conda-forge/noarch/appdirs-1.4.4-pyh9f0ad1d_0.tar.bz2
hash:
md5: 5f095bc6454094e96f146491fd03633b
sha256: ae9fb8f68281f84482f2c234379aa12405a9e365151d43af20b3ae1f17312111
category: main
optional: false
- name: appnope
version: 0.1.4
manager: conda
platform: osx-arm64
dependencies:
python: '>=3.7'
url: https://conda.anaconda.org/conda-forge/noarch/appnope-0.1.4-pyhd8ed1ab_0.conda
hash:
md5: cc4834a9ee7cc49ce8d25177c47b10d8
sha256: 45ae2d41f4a4dcf8707633d3d7ae376fc62f0c09b1d063c3049c3f6f8c911670
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
version: 23.1.0
manager: conda
platform: osx-arm64
dependencies:
typing-extensions: ''
argon2-cffi-bindings: ''
python: '>=3.7'
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
version: 23.1.0
manager: conda
platform: win-64
dependencies:
typing-extensions: ''
argon2-cffi-bindings: ''
python: '>=3.7'
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.10,<3.11.0a0'
python_abi: 3.10.*
url: https://conda.anaconda.org/conda-forge/linux-64/argon2-cffi-bindings-21.2.0-py310h2372a71_4.conda
hash:
md5: 68ee85860502d53c8cbfa0e4cef0f6cb
sha256: af94cc9b4dcaa164e1cc7e7fa0b9eb56b87ea3dc6e093c8ef6c31cfa02d9ffdf
category: main
optional: false
- name: argon2-cffi-bindings
version: 21.2.0
manager: conda
platform: osx-arm64
dependencies:
cffi: '>=1.0.1'
python: '>=3.10,<3.11.0a0'
python_abi: 3.10.*
url: https://conda.anaconda.org/conda-forge/osx-arm64/argon2-cffi-bindings-21.2.0-py310h2aa6e3c_4.conda
hash:
md5: f3fb802f86dfd594219f0ebef6dbf2b2
sha256: 975ecb0ff5fe8b4d1b804ad5bd956c6f2baa2b8b346c1874444ab91e748207ba
category: main
optional: false
- name: argon2-cffi-bindings
version: 21.2.0
manager: conda
platform: win-64
dependencies:
cffi: '>=1.0.1'
python: '>=3.10,<3.11.0a0'
python_abi: 3.10.*
ucrt: '>=10.0.20348.0'
vc: '>=14.2,<15'
vc14_runtime: '>=14.29.30139'
url: https://conda.anaconda.org/conda-forge/win-64/argon2-cffi-bindings-21.2.0-py310h8d17308_4.conda
hash:
md5: ece29c9dd68f962fd416a3ddcce24080
sha256: ae143aec777823b2291caabc3fd89078a3ff12f41945e0f9abd168997ad35d39
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: arrow
version: 1.3.0
manager: conda
platform: osx-arm64
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: arrow
version: 1.3.0
manager: conda
platform: win-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: asttokens
version: 2.4.1
manager: conda
platform: osx-arm64
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: asttokens
version: 2.4.1
manager: conda
platform: win-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: async-lru
version: 2.0.4
manager: conda
platform: osx-arm64
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: async-lru
version: 2.0.4
manager: conda
platform: win-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: async-timeout
version: 4.0.3
manager: conda
platform: linux-64
dependencies:
python: '>=3.7'
typing-extensions: '>=3.6.5'
url: https://conda.anaconda.org/conda-forge/noarch/async-timeout-4.0.3-pyhd8ed1ab_0.conda
hash:
md5: 3ce482ec3066e6d809dbbb1d1679f215
sha256: bd8b698e7f037a9c6107216646f1191f4f7a7fc6da6c34d1a6d4c211bcca8979
category: main
optional: false
- name: async-timeout
version: 4.0.3
manager: conda
platform: osx-arm64
dependencies:
python: '>=3.7'
typing-extensions: '>=3.6.5'
url: https://conda.anaconda.org/conda-forge/noarch/async-timeout-4.0.3-pyhd8ed1ab_0.conda
hash:
md5: 3ce482ec3066e6d809dbbb1d1679f215
sha256: bd8b698e7f037a9c6107216646f1191f4f7a7fc6da6c34d1a6d4c211bcca8979
category: main
optional: false
- name: async-timeout
version: 4.0.3
manager: conda
platform: win-64
dependencies:
python: '>=3.7'
typing-extensions: '>=3.6.5'
url: https://conda.anaconda.org/conda-forge/noarch/async-timeout-4.0.3-pyhd8ed1ab_0.conda
hash:
md5: 3ce482ec3066e6d809dbbb1d1679f215
sha256: bd8b698e7f037a9c6107216646f1191f4f7a7fc6da6c34d1a6d4c211bcca8979
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: attrs
version: 23.2.0
manager: conda
platform: osx-arm64
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: attrs
version: 23.2.0
manager: conda
platform: win-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: aws-c-auth
version: 0.7.22
manager: conda
platform: linux-64
dependencies:
aws-c-cal: '>=0.6.15,<0.6.16.0a0'
aws-c-common: '>=0.9.19,<0.9.20.0a0'
aws-c-http: '>=0.8.2,<0.8.3.0a0'
aws-c-io: '>=0.14.9,<0.14.10.0a0'
aws-c-sdkutils: '>=0.1.16,<0.1.17.0a0'
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-auth-0.7.22-h9137712_5.conda
hash:
md5: ea86de440f848596543ff58030e5272d
sha256: 73dad41addd1f020865e031d701910cc3141a7cc8ac9675a4c0e1832c92a91e5
category: main
optional: false
- name: aws-c-auth
version: 0.7.22
manager: conda
platform: osx-arm64
dependencies:
__osx: '>=11.0'
aws-c-cal: '>=0.6.15,<0.6.16.0a0'
aws-c-common: '>=0.9.19,<0.9.20.0a0'
aws-c-http: '>=0.8.2,<0.8.3.0a0'
aws-c-io: '>=0.14.9,<0.14.10.0a0'
aws-c-sdkutils: '>=0.1.16,<0.1.17.0a0'
url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-auth-0.7.22-h27bc0eb_5.conda
hash:
md5: 07f604d1845cdc3a0c01a73d911e5370
sha256: aff3f2d384cbc6877ba89cf1e87b2678ed4632d260816d6bb60a945aec71c0ef
category: main
optional: false
- name: aws-c-auth
version: 0.7.22
manager: conda
platform: win-64
dependencies:
aws-c-cal: '>=0.6.15,<0.6.16.0a0'
aws-c-common: '>=0.9.19,<0.9.20.0a0'
aws-c-http: '>=0.8.2,<0.8.3.0a0'
aws-c-io: '>=0.14.9,<0.14.10.0a0'
aws-c-sdkutils: '>=0.1.16,<0.1.17.0a0'
ucrt: '>=10.0.20348.0'
vc: '>=14.2,<15'
vc14_runtime: '>=14.29.30139'
url: https://conda.anaconda.org/conda-forge/win-64/aws-c-auth-0.7.22-h67aab5a_5.conda
hash:
md5: 44f00307ae5621ed069cd91fdd97e734
sha256: 63af95a37e1fd90c1087fdc97bef117fc7de5abea6c1ceb59a966c0fe281d2e2
category: main
optional: false
- name: aws-c-cal
version: 0.6.15
manager: conda
platform: linux-64
dependencies:
aws-c-common: '>=0.9.19,<0.9.20.0a0'
libgcc-ng: '>=12'
openssl: '>=3.3.0,<4.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.6.15-h88a6e22_0.conda
hash:
md5: 50eabf107100f8f929bc3246ea63fa08
sha256: 7b7734efa1c3cadb5917967ef84a9b643579d148958b225a78cda3ff893891e0
category: main
optional: false
- name: aws-c-cal
version: 0.6.15
manager: conda
platform: osx-arm64
dependencies:
__osx: '>=11.0'
aws-c-common: '>=0.9.19,<0.9.20.0a0'
url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-cal-0.6.15-h5db4892_0.conda
hash:
md5: 1d0bbf4869dcb5d15bedc25e83cd214e
sha256: 4f0673c37b97647585012c32dae5cf0c50a7d584a8daf4c3c07b775493343cd8
category: main
optional: false
- name: aws-c-cal
version: 0.6.15
manager: conda
platform: win-64
dependencies:
aws-c-common: '>=0.9.19,<0.9.20.0a0'
ucrt: '>=10.0.20348.0'
vc: '>=14.2,<15'
vc14_runtime: '>=14.29.30139'
url: https://conda.anaconda.org/conda-forge/win-64/aws-c-cal-0.6.15-h750c3ff_0.conda
hash:
md5: 804a024695d15e514041052c9f47d315
sha256: 390259699808ee452069526aa273776757ae9101b3e6d1994b80a2be472285f3
category: main
optional: false
- name: aws-c-common
version: 0.9.19
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.9.19-h4ab18f5_0.conda
hash:
md5: c6dedd5eab2236f4abb59ade9fb7fd44
sha256: 96aa405ae28b8b55ec4731c135f38ce9b856d0596f32cedfbe5c62513b0f2dad
category: main
optional: false
- name: aws-c-common
version: 0.9.19
manager: conda
platform: osx-arm64
dependencies:
__osx: '>=11.0'
url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-common-0.9.19-h99b78c6_0.conda
hash:
md5: 7f42602d986d771c990361ea2dd49ce8
sha256: c1e4f28581bee31ce0abde35e24d8b2a3e893330ffe433af02d66a5166101088
category: main
optional: false
- name: aws-c-common
version: 0.9.19
manager: conda
platform: win-64
dependencies:
ucrt: '>=10.0.20348.0'
vc: '>=14.2,<15'
vc14_runtime: '>=14.29.30139'
url: https://conda.anaconda.org/conda-forge/win-64/aws-c-common-0.9.19-h2466b09_0.conda
hash:
md5: a5a3f70ffac4fa65b0783c7f292857ad
sha256: f39261584b471cf9f0f35e79e0b53bbd2d40d4d44fef17c13f024b2f24a23371
category: main
optional: false
- name: aws-c-compression
version: 0.2.18
manager: conda
platform: linux-64
dependencies:
aws-c-common: '>=0.9.19,<0.9.20.0a0'
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-compression-0.2.18-h83b837d_6.conda
hash:
md5: 3e572eacd0ce99a59e1bb9c260ad5b20
sha256: 468b9a95e6a2dda5e7a567228e0cf70d015a2300e3d73a88244be47f7d4f48e1
category: main
optional: false
- name: aws-c-compression
version: 0.2.18
manager: conda
platform: osx-arm64
dependencies:
__osx: '>=11.0'
aws-c-common: '>=0.9.19,<0.9.20.0a0'
url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-compression-0.2.18-h5db4892_6.conda
hash:
md5: 20d53ad7e00c702dc798c95ab66be402
sha256: c95b05ee3cb01f7a628a1cfa8f5b81a08f2091ba04ef6c0d09360c11ceb6fef3
category: main
optional: false
- name: aws-c-compression
version: 0.2.18
manager: conda
platform: win-64
dependencies:
aws-c-common: '>=0.9.19,<0.9.20.0a0'
ucrt: '>=10.0.20348.0'
vc: '>=14.2,<15'
vc14_runtime: '>=14.29.30139'
url: https://conda.anaconda.org/conda-forge/win-64/aws-c-compression-0.2.18-h750c3ff_6.conda
hash:
md5: 47dee11801c5444c7e5ad47db9e31d0d
sha256: 2cf140fd0fcd31adb16c78f2ce1d4dc90da9fbe14930c010e4571664295aecdb
category: main
optional: false
- name: aws-c-event-stream
version: 0.4.2
manager: conda
platform: linux-64
dependencies:
aws-c-common: '>=0.9.19,<0.9.20.0a0'
aws-c-io: '>=0.14.9,<0.14.10.0a0'
aws-checksums: '>=0.1.18,<0.1.19.0a0'
libgcc-ng: '>=12'
libstdcxx-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-event-stream-0.4.2-h0cbf018_13.conda
hash:
md5: 15351eccac4eda2b5fd38bbbdae78bdf
sha256: e31e900a565ea64237bf96f89b663fab87e2d2d48443068cc10a8464109db18a
category: main
optional: false
- name: aws-c-event-stream
version: 0.4.2
manager: conda
platform: osx-arm64
dependencies:
__osx: '>=11.0'
aws-c-common: '>=0.9.19,<0.9.20.0a0'
aws-c-io: '>=0.14.9,<0.14.10.0a0'
aws-checksums: '>=0.1.18,<0.1.19.0a0'
libcxx: '>=16'
url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-event-stream-0.4.2-h4de9e5c_13.conda
hash:
md5: 94a5226d03d2ea57f2c0bb0b18195cc0
sha256: 33a99456789f1f30923f89877c2a427d078502821dc569dfb3f60c2188679369
category: main
optional: false
- name: aws-c-event-stream
version: 0.4.2
manager: conda
platform: win-64
dependencies:
aws-c-common: '>=0.9.19,<0.9.20.0a0'
aws-c-io: '>=0.14.9,<0.14.10.0a0'
aws-checksums: '>=0.1.18,<0.1.19.0a0'
ucrt: '>=10.0.20348.0'
vc: '>=14.2,<15'
vc14_runtime: '>=14.29.30139'
url: https://conda.anaconda.org/conda-forge/win-64/aws-c-event-stream-0.4.2-hd0fc785_13.conda
hash:
md5: b19c0088da32ae8bd78c380c0d47c0b0
sha256: 0b9cf70470e2ec37812afad604de4a698de93232106bf815614c0758837ec754
category: main
optional: false
- name: aws-c-http
version: 0.8.2
manager: conda
platform: linux-64
dependencies:
aws-c-cal: '>=0.6.15,<0.6.16.0a0'
aws-c-common: '>=0.9.19,<0.9.20.0a0'
aws-c-compression: '>=0.2.18,<0.2.19.0a0'
aws-c-io: '>=0.14.9,<0.14.10.0a0'
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-http-0.8.2-h360477d_2.conda
hash:
md5: a820cb648906f7f30076c66dd46b1790
sha256: edf0bbf4df11567d9cacb9e3ff71e6e3127a323844df54379bd727e1ded69bc7
category: main
optional: false
- name: aws-c-http
version: 0.8.2
manager: conda
platform: osx-arm64
dependencies:
__osx: '>=11.0'
aws-c-cal: '>=0.6.15,<0.6.16.0a0'
aws-c-common: '>=0.9.19,<0.9.20.0a0'
aws-c-compression: '>=0.2.18,<0.2.19.0a0'
aws-c-io: '>=0.14.9,<0.14.10.0a0'
url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-http-0.8.2-h2c662d3_2.conda
hash:
md5: dd353709ee0890147fb51f12344268e3
sha256: 46d79fd45e44cf775f929beb2460e0ea7451e080bcdff8ca4839516c8a4e9747
category: main
optional: false
- name: aws-c-http
version: 0.8.2
manager: conda
platform: win-64
dependencies:
aws-c-cal: '>=0.6.15,<0.6.16.0a0'
aws-c-common: '>=0.9.19,<0.9.20.0a0'
aws-c-compression: '>=0.2.18,<0.2.19.0a0'
aws-c-io: '>=0.14.9,<0.14.10.0a0'
ucrt: '>=10.0.20348.0'
vc: '>=14.2,<15'
vc14_runtime: '>=14.29.30139'
url: https://conda.anaconda.org/conda-forge/win-64/aws-c-http-0.8.2-he5605a3_2.conda
hash:
md5: 2743a4fdd09d7d8b8cf9877be5bf0c48
sha256: 07aa3c3f5d27d3e6b3f221262d30a1e822c3c416f921e0f3ba00704c117cca13
category: main
optional: false
- name: aws-c-io
version: 0.14.9
manager: conda
platform: linux-64
dependencies:
aws-c-cal: '>=0.6.15,<0.6.16.0a0'
aws-c-common: '>=0.9.19,<0.9.20.0a0'
libgcc-ng: '>=12'
s2n: '>=1.4.16,<1.4.17.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-io-0.14.9-h2d549f9_2.conda
hash:
md5: 5a828631479163d88e419fd6841139c4
sha256: 2a6720be3183ca8256b64ffa36bbb07d197316821f016b0eaf76e5f2104356b8
category: main
optional: false
- name: aws-c-io
version: 0.14.9
manager: conda
platform: osx-arm64
dependencies:
__osx: '>=11.0'
aws-c-cal: '>=0.6.15,<0.6.16.0a0'
aws-c-common: '>=0.9.19,<0.9.20.0a0'
url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-io-0.14.9-h8709d7d_2.conda
hash:
md5: 11422e9072f3480470a1a1d33d9d71a4
sha256: 3984cf7ab71e6f3cb43837cef49639fd704f62f0d0e4d80c222654d754930d20
category: main
optional: false
- name: aws-c-io
version: 0.14.9
manager: conda
platform: win-64
dependencies:
aws-c-cal: '>=0.6.15,<0.6.16.0a0'
aws-c-common: '>=0.9.19,<0.9.20.0a0'
ucrt: '>=10.0.20348.0'
vc: '>=14.2,<15'
vc14_runtime: '>=14.29.30139'
url: https://conda.anaconda.org/conda-forge/win-64/aws-c-io-0.14.9-h22d870b_2.conda
hash:
md5: 88344ea37de7b05127585a7d23fe96ff
sha256: 627ca3913496c366c5fd8d45a8acc58199fd9a265baae49a9b08014df30c5d70
category: main
optional: false
- name: aws-c-mqtt
version: 0.10.4
manager: conda
platform: linux-64
dependencies:
aws-c-common: '>=0.9.19,<0.9.20.0a0'
aws-c-http: '>=0.8.2,<0.8.3.0a0'
aws-c-io: '>=0.14.9,<0.14.10.0a0'
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-mqtt-0.10.4-hf85b563_6.conda
hash:
md5: 845ddce9934691f5c34ad13d7313ba29
sha256: 9ac7eb966e58e9c0c2f8cf74523de827a8ff74cba0d0c6cbe0416d24d8d32598
category: main
optional: false
- name: aws-c-mqtt
version: 0.10.4
manager: conda
platform: osx-arm64
dependencies:
__osx: '>=11.0'
aws-c-common: '>=0.9.19,<0.9.20.0a0'
aws-c-http: '>=0.8.2,<0.8.3.0a0'
aws-c-io: '>=0.14.9,<0.14.10.0a0'
url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-mqtt-0.10.4-h5fc5ab5_6.conda
hash:
md5: 7a9d660f9c89fbd7cf4825141b9520a4
sha256: 374840766c799b737564fa1e5d7e37bbec7a551edbe16a7ea503396bc7e7e9fe
category: main
optional: false
- name: aws-c-mqtt
version: 0.10.4
manager: conda
platform: win-64
dependencies:
aws-c-common: '>=0.9.19,<0.9.20.0a0'
aws-c-http: '>=0.8.2,<0.8.3.0a0'
aws-c-io: '>=0.14.9,<0.14.10.0a0'
ucrt: '>=10.0.20348.0'
vc: '>=14.2,<15'
vc14_runtime: '>=14.29.30139'
url: https://conda.anaconda.org/conda-forge/win-64/aws-c-mqtt-0.10.4-h9c13125_6.conda
hash:
md5: e3658bd1d44f2bfc21574e86305b69a0
sha256: dea81a1573fa581ef05a3041b4ca9b03b0b0a4a3a302eab0ede6c6c717d9b243
category: main
optional: false
- name: aws-c-s3
version: 0.5.10
manager: conda
platform: linux-64
dependencies:
aws-c-auth: '>=0.7.22,<0.7.23.0a0'
aws-c-cal: '>=0.6.15,<0.6.16.0a0'
aws-c-common: '>=0.9.19,<0.9.20.0a0'
aws-c-http: '>=0.8.2,<0.8.3.0a0'
aws-c-io: '>=0.14.9,<0.14.10.0a0'
aws-checksums: '>=0.1.18,<0.1.19.0a0'
libgcc-ng: '>=12'
openssl: '>=3.3.1,<4.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-s3-0.5.10-h679ed35_3.conda
hash:
md5: 8cb40f80d08389f6aaf68cf86581ed02
sha256: b11b0e9ef68bb42a8b50e6ee165bb30659694faaf123641a8e01d9fa09c4a1b2
category: main
optional: false
- name: aws-c-s3
version: 0.5.10
manager: conda
platform: osx-arm64
dependencies:
__osx: '>=11.0'
aws-c-auth: '>=0.7.22,<0.7.23.0a0'
aws-c-cal: '>=0.6.15,<0.6.16.0a0'
aws-c-common: '>=0.9.19,<0.9.20.0a0'
aws-c-http: '>=0.8.2,<0.8.3.0a0'
aws-c-io: '>=0.14.9,<0.14.10.0a0'
aws-checksums: '>=0.1.18,<0.1.19.0a0'
url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-s3-0.5.10-h48f01f6_3.conda
hash:
md5: 4052b5b38a2b8d84a0f7c9f9c7d78098
sha256: b7c79fa60ee2a6163c1160297c2726c140232bae342e94e38d542477922fca5f
category: main
optional: false
- name: aws-c-s3
version: 0.5.10
manager: conda
platform: win-64
dependencies:
aws-c-auth: '>=0.7.22,<0.7.23.0a0'
aws-c-cal: '>=0.6.15,<0.6.16.0a0'
aws-c-common: '>=0.9.19,<0.9.20.0a0'