-
Notifications
You must be signed in to change notification settings - Fork 0
/
magic.lock
1014 lines (1014 loc) · 32.3 KB
/
magic.lock
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
version: 5
environments:
default:
channels:
- url: https://conda.anaconda.org/conda-forge/
- url: https://conda.modular.com/max/
packages:
linux-64:
- conda: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.8.30-hbcca054_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.5.0-pyha770c72_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-8.5.0-hd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.6.2-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/jupyter_core-5.7.2-py312h7900ff3_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-hf3520f5_7.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-23_linux64_openblas.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.9.0-23_linux64_openblas.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20191231-he28a2e2_2.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.6.3-h5888daf_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-14.1.0-h77fa898_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-14.1.0-h69a702a_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-14.1.0-h69a702a_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-14.1.0-h69a702a_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-14.1.0-hc5f4f2c_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-14.1.0-h77fa898_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-23_linux64_openblas.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.27-pthreads_hac2b453_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libsodium-1.0.20-h4ab18f5_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.46.1-hadc24fc_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-14.1.0-hc0a3c3a_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-14.1.0-h4852527_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-h4ab18f5_1.conda
- conda: https://conda.modular.com/max/noarch/max-24.5.0-release.conda
- conda: https://conda.modular.com/max/linux-64/max-core-24.5.0-release.conda
- conda: https://conda.modular.com/max/linux-64/max-python-24.5.0-3.12release.conda
- conda: https://conda.modular.com/max/noarch/mblack-24.5.0-release.conda
- conda: https://conda.modular.com/max/noarch/mojo-jupyter-24.5.0-release.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-he02047a_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/numpy-1.26.4-py312heda63a1_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.3.2-hb9d3cd8_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pathspec-0.12.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.3.3-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.12.5-h2ad013b_0_cpython.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.12-5_cp312.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/pyzmq-26.2.0-py312hbf22597_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/tornado-6.4.1-py312h66e93f0_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h8827d51_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/linux-64/zeromq-4.3.5-ha4adb4c_5.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.20.2-pyhd8ed1ab_0.conda
packages:
- kind: conda
name: _libgcc_mutex
version: '0.1'
build: conda_forge
subdir: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2
sha256: fe51de6107f9edc7aa4f786a70f4a883943bc9d39b3bb7307c04c41410990726
md5: d7c89558ba9fa0495403155b64376d81
license: None
size: 2562
timestamp: 1578324546067
- kind: conda
name: _openmp_mutex
version: '4.5'
build: 2_gnu
build_number: 16
subdir: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2
sha256: fbe2c5e56a653bebb982eda4876a9178aedfc2b545f25d0ce9c4c0b508253d22
md5: 73aaf86a425cc6e73fcf236a5a46396d
depends:
- _libgcc_mutex 0.1 conda_forge
- libgomp >=7.5.0
constrains:
- openmp_impl 9999
license: BSD-3-Clause
license_family: BSD
size: 23621
timestamp: 1650670423406
- kind: conda
name: bzip2
version: 1.0.8
build: h4bc722e_7
build_number: 7
subdir: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda
sha256: 5ced96500d945fb286c9c838e54fa759aa04a7129c59800f0846b4335cee770d
md5: 62ee74e96c5ebb0af99386de58cf9553
depends:
- __glibc >=2.17,<3.0.a0
- libgcc-ng >=12
license: bzip2-1.0.6
license_family: BSD
size: 252783
timestamp: 1720974456583
- kind: conda
name: ca-certificates
version: 2024.8.30
build: hbcca054_0
subdir: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.8.30-hbcca054_0.conda
sha256: afee721baa6d988e27fef1832f68d6f32ac8cc99cdf6015732224c2841a09cea
md5: c27d1c142233b5bc9ca570c6e2e0c244
license: ISC
size: 159003
timestamp: 1725018903918
- kind: conda
name: click
version: 8.1.7
build: unix_pyh707e725_0
subdir: noarch
noarch: python
url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda
sha256: f0016cbab6ac4138a429e28dbcb904a90305b34b3fe41a9b89d697c90401caec
md5: f3ad426304898027fc619827ff428eca
depends:
- __unix
- python >=3.8
license: BSD-3-Clause
license_family: BSD
size: 84437
timestamp: 1692311973840
- kind: conda
name: importlib-metadata
version: 8.5.0
build: pyha770c72_0
subdir: noarch
noarch: python
url: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.5.0-pyha770c72_0.conda
sha256: 7194700ce1a5ad2621fd68e894dd8c1ceaff9a38723e6e0e5298fdef13017b1c
md5: 54198435fce4d64d8a89af22573012a8
depends:
- python >=3.8
- zipp >=0.5
license: Apache-2.0
license_family: APACHE
size: 28646
timestamp: 1726082927916
- kind: conda
name: importlib_metadata
version: 8.5.0
build: hd8ed1ab_0
subdir: noarch
noarch: generic
url: https://conda.anaconda.org/conda-forge/noarch/importlib_metadata-8.5.0-hd8ed1ab_0.conda
sha256: 313b8a05211bacd6b15ab2621cb73d7f41ea5c6cae98db53367d47833f03fef1
md5: 2a92e152208121afadf85a5e1f3a5f4d
depends:
- importlib-metadata >=8.5.0,<8.5.1.0a0
license: Apache-2.0
license_family: APACHE
size: 9385
timestamp: 1726082930346
- kind: conda
name: jupyter_client
version: 8.6.2
build: pyhd8ed1ab_0
subdir: noarch
noarch: python
url: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.6.2-pyhd8ed1ab_0.conda
sha256: 634f065cdd1d0aacd4bb6848ebf240dcebc8578135d65f4ad4aa42b2276c4e0c
md5: 3cdbb2fa84490e5fd44c9f9806c0d292
depends:
- importlib_metadata >=4.8.3
- jupyter_core >=4.12,!=5.0.*
- python >=3.8
- python-dateutil >=2.8.2
- pyzmq >=23.0
- tornado >=6.2
- traitlets >=5.3
license: BSD-3-Clause
license_family: BSD
size: 106248
timestamp: 1716472312833
- kind: conda
name: jupyter_core
version: 5.7.2
build: py312h7900ff3_0
subdir: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/jupyter_core-5.7.2-py312h7900ff3_0.conda
sha256: 22a6259c2b139191c76ed7633d1865757b3c15007989f6c74304a80f28e5a262
md5: eee5a2e3465220ed87196bbb5665f420
depends:
- platformdirs >=2.5
- python >=3.12,<3.13.0a0
- python_abi 3.12.* *_cp312
- traitlets >=5.3
license: BSD-3-Clause
license_family: BSD
size: 92843
timestamp: 1710257533875
- kind: conda
name: keyutils
version: 1.6.1
build: h166bdaf_0
subdir: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2
sha256: 150c05a6e538610ca7c43beb3a40d65c90537497a4f6a5f4d15ec0451b6f5ebb
md5: 30186d27e2c9fa62b45fb1476b7200e3
depends:
- libgcc-ng >=10.3.0
license: LGPL-2.1-or-later
size: 117831
timestamp: 1646151697040
- kind: conda
name: krb5
version: 1.21.3
build: h659f571_0
subdir: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda
sha256: 99df692f7a8a5c27cd14b5fb1374ee55e756631b9c3d659ed3ee60830249b238
md5: 3f43953b7d3fb3aaa1d0d0723d91e368
depends:
- keyutils >=1.6.1,<2.0a0
- libedit >=3.1.20191231,<3.2.0a0
- libedit >=3.1.20191231,<4.0a0
- libgcc-ng >=12
- libstdcxx-ng >=12
- openssl >=3.3.1,<4.0a0
license: MIT
license_family: MIT
size: 1370023
timestamp: 1719463201255
- kind: conda
name: ld_impl_linux-64
version: '2.40'
build: hf3520f5_7
build_number: 7
subdir: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-hf3520f5_7.conda
sha256: 764b6950aceaaad0c67ef925417594dd14cd2e22fff864aeef455ac259263d15
md5: b80f2f396ca2c28b8c14c437a4ed1e74
constrains:
- binutils_impl_linux-64 2.40
license: GPL-3.0-only
license_family: GPL
size: 707602
timestamp: 1718625640445
- kind: conda
name: libblas
version: 3.9.0
build: 23_linux64_openblas
build_number: 23
subdir: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-23_linux64_openblas.conda
sha256: edb1cee5da3ac4936940052dcab6969673ba3874564f90f5110f8c11eed789c2
md5: 96c8450a40aa2b9733073a9460de972c
depends:
- libopenblas >=0.3.27,<0.3.28.0a0
- libopenblas >=0.3.27,<1.0a0
constrains:
- liblapacke 3.9.0 23_linux64_openblas
- libcblas 3.9.0 23_linux64_openblas
- liblapack 3.9.0 23_linux64_openblas
- blas * openblas
license: BSD-3-Clause
license_family: BSD
size: 14880
timestamp: 1721688759937
- kind: conda
name: libcblas
version: 3.9.0
build: 23_linux64_openblas
build_number: 23
subdir: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.9.0-23_linux64_openblas.conda
sha256: 3e7a3236e7e03e308e1667d91d0aa70edd0cba96b4b5563ef4adde088e0881a5
md5: eede29b40efa878cbe5bdcb767e97310
depends:
- libblas 3.9.0 23_linux64_openblas
constrains:
- liblapacke 3.9.0 23_linux64_openblas
- liblapack 3.9.0 23_linux64_openblas
- blas * openblas
license: BSD-3-Clause
license_family: BSD
size: 14798
timestamp: 1721688767584
- kind: conda
name: libedit
version: 3.1.20191231
build: he28a2e2_2
build_number: 2
subdir: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20191231-he28a2e2_2.tar.bz2
sha256: a57d37c236d8f7c886e01656f4949d9dcca131d2a0728609c6f7fa338b65f1cf
md5: 4d331e44109e3f0e19b4cb8f9b82f3e1
depends:
- libgcc-ng >=7.5.0
- ncurses >=6.2,<7.0.0a0
license: BSD-2-Clause
license_family: BSD
size: 123878
timestamp: 1597616541093
- kind: conda
name: libexpat
version: 2.6.3
build: h5888daf_0
subdir: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.6.3-h5888daf_0.conda
sha256: 4bb47bb2cd09898737a5211e2992d63c555d63715a07ba56eae0aff31fb89c22
md5: 59f4c43bb1b5ef1c71946ff2cbf59524
depends:
- __glibc >=2.17,<3.0.a0
- libgcc >=13
constrains:
- expat 2.6.3.*
license: MIT
license_family: MIT
size: 73616
timestamp: 1725568742634
- kind: conda
name: libffi
version: 3.4.2
build: h7f98852_5
build_number: 5
subdir: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2
sha256: ab6e9856c21709b7b517e940ae7028ae0737546122f83c2aa5d692860c3b149e
md5: d645c6d2ac96843a2bfaccd2d62b3ac3
depends:
- libgcc-ng >=9.4.0
license: MIT
license_family: MIT
size: 58292
timestamp: 1636488182923
- kind: conda
name: libgcc
version: 14.1.0
build: h77fa898_1
build_number: 1
subdir: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-14.1.0-h77fa898_1.conda
sha256: 10fa74b69266a2be7b96db881e18fa62cfa03082b65231e8d652e897c4b335a3
md5: 002ef4463dd1e2b44a94a4ace468f5d2
depends:
- _libgcc_mutex 0.1 conda_forge
- _openmp_mutex >=4.5
constrains:
- libgomp 14.1.0 h77fa898_1
- libgcc-ng ==14.1.0=*_1
license: GPL-3.0-only WITH GCC-exception-3.1
license_family: GPL
size: 846380
timestamp: 1724801836552
- kind: conda
name: libgcc-ng
version: 14.1.0
build: h69a702a_1
build_number: 1
subdir: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-14.1.0-h69a702a_1.conda
sha256: b91f7021e14c3d5c840fbf0dc75370d6e1f7c7ff4482220940eaafb9c64613b7
md5: 1efc0ad219877a73ef977af7dbb51f17
depends:
- libgcc 14.1.0 h77fa898_1
license: GPL-3.0-only WITH GCC-exception-3.1
license_family: GPL
size: 52170
timestamp: 1724801842101
- kind: conda
name: libgfortran
version: 14.1.0
build: h69a702a_1
build_number: 1
subdir: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-14.1.0-h69a702a_1.conda
sha256: ed77f04f873e43a26e24d443dd090631eedc7d0ace3141baaefd96a123e47535
md5: 591e631bc1ae62c64f2ab4f66178c097
depends:
- libgfortran5 14.1.0 hc5f4f2c_1
constrains:
- libgfortran-ng ==14.1.0=*_1
license: GPL-3.0-only WITH GCC-exception-3.1
license_family: GPL
size: 52142
timestamp: 1724801872472
- kind: conda
name: libgfortran-ng
version: 14.1.0
build: h69a702a_1
build_number: 1
subdir: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-14.1.0-h69a702a_1.conda
sha256: a2dc35cb7f87bb5beebf102d4085574c6a740e1df58e743185d4434cc5e4e0ae
md5: 16cec94c5992d7f42ae3f9fa8b25df8d
depends:
- libgfortran 14.1.0 h69a702a_1
license: GPL-3.0-only WITH GCC-exception-3.1
license_family: GPL
size: 52212
timestamp: 1724802086021
- kind: conda
name: libgfortran5
version: 14.1.0
build: hc5f4f2c_1
build_number: 1
subdir: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-14.1.0-hc5f4f2c_1.conda
sha256: c40d7db760296bf9c776de12597d2f379f30e890b9ae70c1de962ff2aa1999f6
md5: 10a0cef64b784d6ab6da50ebca4e984d
depends:
- libgcc >=14.1.0
constrains:
- libgfortran 14.1.0
license: GPL-3.0-only WITH GCC-exception-3.1
license_family: GPL
size: 1459939
timestamp: 1724801851300
- kind: conda
name: libgomp
version: 14.1.0
build: h77fa898_1
build_number: 1
subdir: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/libgomp-14.1.0-h77fa898_1.conda
sha256: c96724c8ae4ee61af7674c5d9e5a3fbcf6cd887a40ad5a52c99aa36f1d4f9680
md5: 23c255b008c4f2ae008f81edcabaca89
depends:
- _libgcc_mutex 0.1 conda_forge
license: GPL-3.0-only WITH GCC-exception-3.1
license_family: GPL
size: 460218
timestamp: 1724801743478
- kind: conda
name: liblapack
version: 3.9.0
build: 23_linux64_openblas
build_number: 23
subdir: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-23_linux64_openblas.conda
sha256: 25c7aef86c8a1d9db0e8ee61aa7462ba3b46b482027a65d66eb83e3e6f949043
md5: 2af0879961951987e464722fd00ec1e0
depends:
- libblas 3.9.0 23_linux64_openblas
constrains:
- liblapacke 3.9.0 23_linux64_openblas
- libcblas 3.9.0 23_linux64_openblas
- blas * openblas
license: BSD-3-Clause
license_family: BSD
size: 14823
timestamp: 1721688775172
- kind: conda
name: libnsl
version: 2.0.1
build: hd590300_0
subdir: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda
sha256: 26d77a3bb4dceeedc2a41bd688564fe71bf2d149fdcf117049970bc02ff1add6
md5: 30fd6e37fe21f86f4bd26d6ee73eeec7
depends:
- libgcc-ng >=12
license: LGPL-2.1-only
license_family: GPL
size: 33408
timestamp: 1697359010159
- kind: conda
name: libopenblas
version: 0.3.27
build: pthreads_hac2b453_1
build_number: 1
subdir: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.27-pthreads_hac2b453_1.conda
sha256: 714cb82d7c4620ea2635a92d3df263ab841676c9b183d0c01992767bb2451c39
md5: ae05ece66d3924ac3d48b4aa3fa96cec
depends:
- libgcc-ng >=12
- libgfortran-ng
- libgfortran5 >=12.3.0
constrains:
- openblas >=0.3.27,<0.3.28.0a0
license: BSD-3-Clause
license_family: BSD
size: 5563053
timestamp: 1720426334043
- kind: conda
name: libsodium
version: 1.0.20
build: h4ab18f5_0
subdir: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/libsodium-1.0.20-h4ab18f5_0.conda
sha256: 0105bd108f19ea8e6a78d2d994a6d4a8db16d19a41212070d2d1d48a63c34161
md5: a587892d3c13b6621a6091be690dbca2
depends:
- libgcc-ng >=12
license: ISC
size: 205978
timestamp: 1716828628198
- kind: conda
name: libsqlite
version: 3.46.1
build: hadc24fc_0
subdir: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.46.1-hadc24fc_0.conda
sha256: 9851c049abafed3ee329d6c7c2033407e2fc269d33a75c071110ab52300002b0
md5: 36f79405ab16bf271edb55b213836dac
depends:
- __glibc >=2.17,<3.0.a0
- libgcc >=13
- libzlib >=1.3.1,<2.0a0
license: Unlicense
size: 865214
timestamp: 1725353659783
- kind: conda
name: libstdcxx
version: 14.1.0
build: hc0a3c3a_1
build_number: 1
subdir: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-14.1.0-hc0a3c3a_1.conda
sha256: 44decb3d23abacf1c6dd59f3c152a7101b7ca565b4ef8872804ceaedcc53a9cd
md5: 9dbb9699ea467983ba8a4ba89b08b066
depends:
- libgcc 14.1.0 h77fa898_1
license: GPL-3.0-only WITH GCC-exception-3.1
license_family: GPL
size: 3892781
timestamp: 1724801863728
- kind: conda
name: libstdcxx-ng
version: 14.1.0
build: h4852527_1
build_number: 1
subdir: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-14.1.0-h4852527_1.conda
sha256: a2dc44f97290740cc187bfe94ce543e6eb3c2ea8964d99f189a1d8c97b419b8c
md5: bd2598399a70bb86d8218e95548d735e
depends:
- libstdcxx 14.1.0 hc0a3c3a_1
license: GPL-3.0-only WITH GCC-exception-3.1
license_family: GPL
size: 52219
timestamp: 1724801897766
- kind: conda
name: libuuid
version: 2.38.1
build: h0b41bf4_0
subdir: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda
sha256: 787eb542f055a2b3de553614b25f09eefb0a0931b0c87dbcce6efdfd92f04f18
md5: 40b61aab5c7ba9ff276c41cfffe6b80b
depends:
- libgcc-ng >=12
license: BSD-3-Clause
license_family: BSD
size: 33601
timestamp: 1680112270483
- kind: conda
name: libxcrypt
version: 4.4.36
build: hd590300_1
build_number: 1
subdir: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda
sha256: 6ae68e0b86423ef188196fff6207ed0c8195dd84273cb5623b85aa08033a410c
md5: 5aa797f8787fe7a17d1b0821485b5adc
depends:
- libgcc-ng >=12
license: LGPL-2.1-or-later
size: 100393
timestamp: 1702724383534
- kind: conda
name: libzlib
version: 1.3.1
build: h4ab18f5_1
build_number: 1
subdir: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-h4ab18f5_1.conda
sha256: adf6096f98b537a11ae3729eaa642b0811478f0ea0402ca67b5108fe2cb0010d
md5: 57d7dc60e9325e3de37ff8dffd18e814
depends:
- libgcc-ng >=12
constrains:
- zlib 1.3.1 *_1
license: Zlib
license_family: Other
size: 61574
timestamp: 1716874187109
- kind: conda
name: max
version: 24.5.0
build: release
subdir: noarch
noarch: python
url: https://conda.modular.com/max/noarch/max-24.5.0-release.conda
sha256: 3050d7885a304944afbf93ca9786e56e6df20f0685e1705f88fab045fb5aae70
md5: 662a61803cd141e857d3b9f821c7bd66
depends:
- max-core ==24.5.0 release
- max-python >=24.5.0,<25.0a0
- mojo-jupyter ==24.5.0 release
- mblack ==24.5.0 release
size: 9642
timestamp: 1726172475909
- kind: conda
name: max-core
version: 24.5.0
build: release
subdir: linux-64
url: https://conda.modular.com/max/linux-64/max-core-24.5.0-release.conda
sha256: 4cd4ab217863a500e9df8112d5e4c335192baa4f527aaaacb925b7818dd2bbe1
md5: a9b3f9d69310032f687789c475c029f5
depends:
- mblack ==24.5.0 release
arch: x86_64
platform: linux
size: 284994357
timestamp: 1726172475907
- kind: conda
name: max-python
version: 24.5.0
build: 3.12release
subdir: linux-64
url: https://conda.modular.com/max/linux-64/max-python-24.5.0-3.12release.conda
sha256: b5b0f36bb4c91bdff229fc680d7d2e4dd183e9dc90808869408e5883d95199ba
md5: e8dbea1cf138f97c022103a4b41c77bd
depends:
- max-core ==24.5.0 release
- python 3.12.*
- numpy >=1.18,<2.0
- python_abi 3.12.* *_cp312
arch: x86_64
platform: linux
size: 138310039
timestamp: 1726172475912
- kind: conda
name: mblack
version: 24.5.0
build: release
subdir: noarch
noarch: python
url: https://conda.modular.com/max/noarch/mblack-24.5.0-release.conda
sha256: 913881fc3aa19db447ed82e898f261a413be9129dc43b9ea600e06030f76dbd5
md5: 2bc6ce9f257235686dc1b2509cc7198d
depends:
- python >=3.9,<3.13
- click >=8.0.0
- mypy_extensions >=0.4.3
- packaging >=22.0
- pathspec >=0.9.0
- platformdirs >=2
- python
license: MIT
size: 130435
timestamp: 1726172475910
- kind: conda
name: mojo-jupyter
version: 24.5.0
build: release
subdir: noarch
noarch: python
url: https://conda.modular.com/max/noarch/mojo-jupyter-24.5.0-release.conda
sha256: dff2e857eae32ce92fde12a712756d647f0aa312aeb5d79b350b2acbc71a2f96
md5: 3b7be5cbff5b8015b095e950506be4b3
depends:
- max-core ==24.5.0 release
- python >=3.9,<3.13
- jupyter_client >=8.6.2,<8.7
- python
size: 21595
timestamp: 1726172475911
- kind: conda
name: mypy_extensions
version: 1.0.0
build: pyha770c72_0
subdir: noarch
noarch: python
url: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda
sha256: f240217476e148e825420c6bc3a0c0efb08c0718b7042fae960400c02af858a3
md5: 4eccaeba205f0aed9ac3a9ea58568ca3
depends:
- python >=3.5
license: MIT
license_family: MIT
size: 10492
timestamp: 1675543414256
- kind: conda
name: ncurses
version: '6.5'
build: he02047a_1
build_number: 1
subdir: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-he02047a_1.conda
sha256: 6a1d5d8634c1a07913f1c525db6455918cbc589d745fac46d9d6e30340c8731a
md5: 70caf8bb6cf39a0b6b7efc885f51c0fe
depends:
- __glibc >=2.17,<3.0.a0
- libgcc-ng >=12
license: X11 AND BSD-3-Clause
size: 889086
timestamp: 1724658547447
- kind: conda
name: numpy
version: 1.26.4
build: py312heda63a1_0
subdir: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/numpy-1.26.4-py312heda63a1_0.conda
sha256: fe3459c75cf84dcef6ef14efcc4adb0ade66038ddd27cadb894f34f4797687d8
md5: d8285bea2a350f63fab23bf460221f3f
depends:
- libblas >=3.9.0,<4.0a0
- libcblas >=3.9.0,<4.0a0
- libgcc-ng >=12
- liblapack >=3.9.0,<4.0a0
- libstdcxx-ng >=12
- python >=3.12,<3.13.0a0
- python_abi 3.12.* *_cp312
constrains:
- numpy-base <0a0
license: BSD-3-Clause
license_family: BSD
size: 7484186
timestamp: 1707225809722
- kind: conda
name: openssl
version: 3.3.2
build: hb9d3cd8_0
subdir: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.3.2-hb9d3cd8_0.conda
sha256: cee91036686419f6dd6086902acf7142b4916e1c4ba042e9ca23e151da012b6d
md5: 4d638782050ab6faa27275bed57e9b4e
depends:
- __glibc >=2.17,<3.0.a0
- ca-certificates
- libgcc >=13
license: Apache-2.0
license_family: Apache
size: 2891789
timestamp: 1725410790053
- kind: conda
name: packaging
version: '24.1'
build: pyhd8ed1ab_0
subdir: noarch
noarch: python
url: https://conda.anaconda.org/conda-forge/noarch/packaging-24.1-pyhd8ed1ab_0.conda
sha256: 36aca948219e2c9fdd6d80728bcc657519e02f06c2703d8db3446aec67f51d81
md5: cbe1bb1f21567018ce595d9c2be0f0db
depends:
- python >=3.8
license: Apache-2.0
license_family: APACHE
size: 50290
timestamp: 1718189540074
- kind: conda
name: pathspec
version: 0.12.1
build: pyhd8ed1ab_0
subdir: noarch
noarch: python
url: https://conda.anaconda.org/conda-forge/noarch/pathspec-0.12.1-pyhd8ed1ab_0.conda
sha256: 4e534e66bfe8b1e035d2169d0e5b185450546b17e36764272863e22e0370be4d
md5: 17064acba08d3686f1135b5ec1b32b12
depends:
- python >=3.7
license: MPL-2.0
license_family: MOZILLA
size: 41173
timestamp: 1702250135032
- kind: conda
name: platformdirs
version: 4.3.3
build: pyhd8ed1ab_0
subdir: noarch
noarch: python
url: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.3.3-pyhd8ed1ab_0.conda
sha256: 30d9448d38392cc6fcf0c1d515c85c75ecf6b4eaed0895efc1cac9e10cb57c51
md5: 32ecde72bc26b834382b93d454c9a68d
depends:
- python >=3.8
license: MIT
size: 20578
timestamp: 1726315538191
- kind: conda
name: python
version: 3.12.5
build: h2ad013b_0_cpython
subdir: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/python-3.12.5-h2ad013b_0_cpython.conda
sha256: e2aad83838988725d4ffba4e9717b9328054fd18a668cff3377e0c50f109e8bd
md5: 9c56c4df45f6571b13111d8df2448692
depends:
- __glibc >=2.17,<3.0.a0
- bzip2 >=1.0.8,<2.0a0
- ld_impl_linux-64 >=2.36.1
- libexpat >=2.6.2,<3.0a0
- libffi >=3.4,<4.0a0
- libgcc-ng >=12
- libnsl >=2.0.1,<2.1.0a0
- libsqlite >=3.46.0,<4.0a0
- libuuid >=2.38.1,<3.0a0
- libxcrypt >=4.4.36
- libzlib >=1.3.1,<2.0a0
- ncurses >=6.5,<7.0a0
- openssl >=3.3.1,<4.0a0
- readline >=8.2,<9.0a0
- tk >=8.6.13,<8.7.0a0
- tzdata
- xz >=5.2.6,<6.0a0
constrains:
- python_abi 3.12.* *_cp312
license: Python-2.0
size: 31663253
timestamp: 1723143721353
- kind: conda
name: python-dateutil
version: 2.9.0
build: pyhd8ed1ab_0
subdir: noarch
noarch: python
url: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0-pyhd8ed1ab_0.conda
sha256: f3ceef02ac164a8d3a080d0d32f8e2ebe10dd29e3a685d240e38b3599e146320
md5: 2cf4264fffb9e6eff6031c5b6884d61c
depends:
- python >=3.7
- six >=1.5
license: Apache-2.0
license_family: APACHE
size: 222742
timestamp: 1709299922152
- kind: conda
name: python_abi
version: '3.12'
build: 5_cp312
build_number: 5
subdir: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.12-5_cp312.conda
sha256: d10e93d759931ffb6372b45d65ff34d95c6000c61a07e298d162a3bc2accebb0
md5: 0424ae29b104430108f5218a66db7260
constrains:
- python 3.12.* *_cpython
license: BSD-3-Clause
license_family: BSD
size: 6238
timestamp: 1723823388266
- kind: conda
name: pyzmq
version: 26.2.0
build: py312hbf22597_2
build_number: 2
subdir: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/pyzmq-26.2.0-py312hbf22597_2.conda
sha256: a2431644cdef4111f7120565090114f52897e687e83c991bd76a3baef8de77c4
md5: 44f46ddfdd01d242d2fff2d69a0d7cba
depends:
- __glibc >=2.17,<3.0.a0
- libgcc >=13
- libsodium >=1.0.20,<1.0.21.0a0
- libstdcxx >=13
- python >=3.12,<3.13.0a0
- python_abi 3.12.* *_cp312
- zeromq >=4.3.5,<4.4.0a0
license: BSD-3-Clause
license_family: BSD
size: 378667
timestamp: 1725449078945
- kind: conda
name: readline
version: '8.2'
build: h8228510_1
build_number: 1
subdir: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda
sha256: 5435cf39d039387fbdc977b0a762357ea909a7694d9528ab40f005e9208744d7
md5: 47d31b792659ce70f470b5c82fdfb7a4
depends:
- libgcc-ng >=12
- ncurses >=6.3,<7.0a0
license: GPL-3.0-only
license_family: GPL
size: 281456
timestamp: 1679532220005
- kind: conda
name: six
version: 1.16.0
build: pyh6c4a22f_0
subdir: noarch
noarch: python
url: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2
sha256: a85c38227b446f42c5b90d9b642f2c0567880c15d72492d8da074a59c8f91dd6
md5: e5f25f8dbc060e9a8d912e432202afc2
depends:
- python
license: MIT
license_family: MIT
size: 14259
timestamp: 1620240338595
- kind: conda
name: tk
version: 8.6.13
build: noxft_h4845f30_101
build_number: 101
subdir: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda
sha256: e0569c9caa68bf476bead1bed3d79650bb080b532c64a4af7d8ca286c08dea4e
md5: d453b98d9c83e71da0741bb0ff4d76bc
depends:
- libgcc-ng >=12
- libzlib >=1.2.13,<2.0.0a0
license: TCL
license_family: BSD
size: 3318875
timestamp: 1699202167581
- kind: conda
name: tornado
version: 6.4.1
build: py312h66e93f0_1
build_number: 1
subdir: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/tornado-6.4.1-py312h66e93f0_1.conda
sha256: c0c9cc7834e8f43702956afaa5af7b0639c4835c285108a43e6b91687ce53ab8
md5: af648b62462794649066366af4ecd5b0
depends:
- __glibc >=2.17,<3.0.a0
- libgcc >=13
- python >=3.12,<3.13.0a0
- python_abi 3.12.* *_cp312
license: Apache-2.0
license_family: Apache
size: 837665
timestamp: 1724956252424
- kind: conda
name: traitlets
version: 5.14.3
build: pyhd8ed1ab_0
subdir: noarch
noarch: python
url: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_0.conda
sha256: 8a64fa0f19022828513667c2c7176cfd125001f3f4b9bc00d33732e627dd2592
md5: 3df84416a021220d8b5700c613af2dc5
depends:
- python >=3.8
license: BSD-3-Clause
license_family: BSD
size: 110187
timestamp: 1713535244513
- kind: conda
name: tzdata
version: 2024a
build: h8827d51_1
build_number: 1
subdir: noarch
noarch: generic
url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h8827d51_1.conda
sha256: 7d21c95f61319dba9209ca17d1935e6128af4235a67ee4e57a00908a1450081e
md5: 8bfdead4e0fff0383ae4c9c50d0531bd
license: LicenseRef-Public-Domain
size: 124164
timestamp: 1724736371498
- kind: conda
name: xz
version: 5.2.6
build: h166bdaf_0
subdir: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2
sha256: 03a6d28ded42af8a347345f82f3eebdd6807a08526d47899a42d62d319609162
md5: 2161070d867d1b1204ea749c8eec4ef0
depends:
- libgcc-ng >=12
license: LGPL-2.1 and GPL-2.0
size: 418368
timestamp: 1660346797927
- kind: conda
name: zeromq
version: 4.3.5
build: ha4adb4c_5
build_number: 5
subdir: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/zeromq-4.3.5-ha4adb4c_5.conda
sha256: dd48adc07fcd029c86fbf82e68d0e4818c7744b768e08139379920b56b582814
md5: e8372041ebb377237db9d0d24c7b5962
depends:
- __glibc >=2.17,<3.0.a0
- krb5 >=1.21.3,<1.22.0a0
- libgcc >=13
- libsodium >=1.0.20,<1.0.21.0a0
- libstdcxx >=13
license: MPL-2.0
license_family: MOZILLA
size: 353159
timestamp: 1725429777124
- kind: conda