-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpy-3.12.conda-lock.yml
2590 lines (2590 loc) · 76 KB
/
py-3.12.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 py-3.12.conda-lock.yml
# This lock contains optional development dependencies. Include them in the installed environment with:
# conda-lock install --dev-dependencies -n YOURENV py-3.12.conda-lock.yml
# To update a single package to the latest version compatible with the version constraints in the source:
# conda-lock lock --lockfile py-3.12.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 pyproject.toml -f environments/env-python-3.12.yml --lockfile py-3.12.conda-lock.yml
version: 1
metadata:
content_hash:
win-64: ff7aa7d013c74928d881d437a383efc85312298b91ee396d2cc20caf1bb68d54
linux-64: c8995cf67ed80e479cd4928bef4aa4c184ae2533e7bebfde932398185e0f8369
channels:
- url: conda-forge
used_env_vars: []
- url: nodefaults
used_env_vars: []
platforms:
- win-64
- linux-64
sources:
- pyproject.toml
- environments/env-python-3.12.yml
package:
- name: _libgcc_mutex
version: '0.1'
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2
hash:
md5: d7c89558ba9fa0495403155b64376d81
sha256: fe51de6107f9edc7aa4f786a70f4a883943bc9d39b3bb7307c04c41410990726
category: main
optional: false
- name: _openmp_mutex
version: '4.5'
manager: conda
platform: linux-64
dependencies:
_libgcc_mutex: '0.1'
libgomp: '>=7.5.0'
url: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2
hash:
md5: 73aaf86a425cc6e73fcf236a5a46396d
sha256: fbe2c5e56a653bebb982eda4876a9178aedfc2b545f25d0ce9c4c0b508253d22
category: main
optional: false
- name: _openmp_mutex
version: '4.5'
manager: conda
platform: win-64
dependencies:
libgomp: '>=7.5.0'
libwinpthread: '>=12.0.0.r2.ggc561118da'
url: https://conda.anaconda.org/conda-forge/win-64/_openmp_mutex-4.5-2_gnu.conda
hash:
md5: 37e16618af5c4851a3f3d66dd0e11141
sha256: 1a62cd1f215fe0902e7004089693a78347a30ad687781dfda2289cab000e652d
category: main
optional: false
- name: annotated-types
version: 0.7.0
manager: conda
platform: linux-64
dependencies:
python: '>=3.9'
typing-extensions: '>=4.0.0'
url: https://conda.anaconda.org/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_1.conda
hash:
md5: 2934f256a8acfe48f6ebb4fce6cde29c
sha256: e0ea1ba78fbb64f17062601edda82097fcf815012cf52bb704150a2668110d48
category: main
optional: false
- name: annotated-types
version: 0.7.0
manager: conda
platform: win-64
dependencies:
python: '>=3.9'
typing-extensions: '>=4.0.0'
url: https://conda.anaconda.org/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_1.conda
hash:
md5: 2934f256a8acfe48f6ebb4fce6cde29c
sha256: e0ea1ba78fbb64f17062601edda82097fcf815012cf52bb704150a2668110d48
category: main
optional: false
- name: astroid
version: 3.3.8
manager: conda
platform: linux-64
dependencies:
python: '>=3.12,<3.13.0a0'
python_abi: 3.12.*
url: https://conda.anaconda.org/conda-forge/linux-64/astroid-3.3.8-py312h7900ff3_0.conda
hash:
md5: 9b0b26c5846fdbe76a146e1f8715a1ac
sha256: b8793249426039fdc61301cd63021633e3fbe5fc84b66b6aa0f87c3e648e0f13
category: dev
optional: true
- name: astroid
version: 3.3.8
manager: conda
platform: win-64
dependencies:
python: '>=3.12,<3.13.0a0'
python_abi: 3.12.*
url: https://conda.anaconda.org/conda-forge/win-64/astroid-3.3.8-py312h2e8e312_0.conda
hash:
md5: 8bd03339fe9f43fffb3c49b96a0eb518
sha256: 49841b1dfd559f557a9290ad4ecbb36719712fd34aff177357e0cc904aa5e600
category: dev
optional: true
- name: bzip2
version: 1.0.8
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda
hash:
md5: 62ee74e96c5ebb0af99386de58cf9553
sha256: 5ced96500d945fb286c9c838e54fa759aa04a7129c59800f0846b4335cee770d
category: main
optional: false
- name: bzip2
version: 1.0.8
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/bzip2-1.0.8-h2466b09_7.conda
hash:
md5: 276e7ffe9ffe39688abc665ef0f45596
sha256: 35a5dad92e88fdd7fc405e864ec239486f4f31eec229e31686e61a140a8e573b
category: main
optional: false
- name: c-ares
version: 1.34.4
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc: '>=13'
url: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.34.4-hb9d3cd8_0.conda
hash:
md5: e2775acf57efd5af15b8e3d1d74d72d3
sha256: d4f28d87b6339b94f74762c0076e29c8ef8ddfff51a564a92da2843573c18320
category: main
optional: false
- name: ca-certificates
version: 2024.12.14
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.12.14-hbcca054_0.conda
hash:
md5: 720523eb0d6a9b0f6120c16b2aa4e7de
sha256: 1afd7274cbc9a334d6d0bc62fa760acc7afdaceb0b91a8df370ec01fd75dc7dd
category: main
optional: false
- name: ca-certificates
version: 2024.12.14
manager: conda
platform: win-64
dependencies: {}
url: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2024.12.14-h56e8100_0.conda
hash:
md5: cb2eaeb88549ddb27af533eccf9a45c1
sha256: 424d82db36cd26234bc4772426170efd60e888c2aed0099a257a95e131683a5e
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: win-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: cached_property
version: 1.5.2
manager: conda
platform: win-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: colorama
version: 0.4.6
manager: conda
platform: linux-64
dependencies:
python: '>=3.9'
url: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda
hash:
md5: 962b9857ee8e7018c22f2776ffa0b2d7
sha256: ab29d57dc70786c1269633ba3dff20288b81664d3ff8d21af995742e2bb03287
category: dev
optional: true
- name: colorama
version: 0.4.6
manager: conda
platform: win-64
dependencies:
python: '>=3.9'
url: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda
hash:
md5: 962b9857ee8e7018c22f2776ffa0b2d7
sha256: ab29d57dc70786c1269633ba3dff20288b81664d3ff8d21af995742e2bb03287
category: dev
optional: true
- name: coverage
version: 7.6.10
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc: '>=13'
python: '>=3.12,<3.13.0a0'
python_abi: 3.12.*
tomli: ''
url: https://conda.anaconda.org/conda-forge/linux-64/coverage-7.6.10-py312h178313f_0.conda
hash:
md5: df113f58bdfc79c98f5e07b6bd3eb4c2
sha256: d808ad7fdf4d04f20832c7c10f58e22e89bc636158b325fbdfbf86074e273b77
category: dev
optional: true
- name: coverage
version: 7.6.10
manager: conda
platform: win-64
dependencies:
python: '>=3.12,<3.13.0a0'
python_abi: 3.12.*
tomli: ''
ucrt: '>=10.0.20348.0'
vc: '>=14.2,<15'
vc14_runtime: '>=14.29.30139'
url: https://conda.anaconda.org/conda-forge/win-64/coverage-7.6.10-py312h31fea79_0.conda
hash:
md5: 2785bdb2edbc65a9b01ff56488988517
sha256: 365154d8f321d785248c27bd33b3c48f098f80dd68841abc0ab88c675dfdd117
category: dev
optional: true
- name: dill
version: 0.3.9
manager: conda
platform: linux-64
dependencies:
python: '>=3.9'
url: https://conda.anaconda.org/conda-forge/noarch/dill-0.3.9-pyhd8ed1ab_1.conda
hash:
md5: 5e11310fca410e9f31381157079dee55
sha256: 499be2f8e4397a46249e8e500535795704af27e56360ae0c964904140b41454a
category: dev
optional: true
- name: dill
version: 0.3.9
manager: conda
platform: win-64
dependencies:
python: '>=3.9'
url: https://conda.anaconda.org/conda-forge/noarch/dill-0.3.9-pyhd8ed1ab_1.conda
hash:
md5: 5e11310fca410e9f31381157079dee55
sha256: 499be2f8e4397a46249e8e500535795704af27e56360ae0c964904140b41454a
category: dev
optional: true
- name: discretize
version: 0.10.0
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
libstdcxx-ng: '>=12'
numpy: '>=1.26.0,<2.0a0'
python: '>=3.12,<3.13.0a0'
python_abi: 3.12.*
scipy: '>=1.8'
url: https://conda.anaconda.org/conda-forge/linux-64/discretize-0.10.0-py312hfb10629_1.conda
hash:
md5: 9fa37f4af3b9028d2262a07d6d19bb18
sha256: cb29ab0387c3d81ece73336de14c7c16f55dd8f747af828fc51be3097120b696
category: main
optional: false
- name: discretize
version: 0.10.0
manager: conda
platform: win-64
dependencies:
numpy: '>=1.26.0,<2.0a0'
python: '>=3.12,<3.13.0a0'
python_abi: 3.12.*
scipy: '>=1.8'
ucrt: '>=10.0.20348.0'
vc: '>=14.2,<15'
vc14_runtime: '>=14.29.30139'
url: https://conda.anaconda.org/conda-forge/win-64/discretize-0.10.0-py312h4f1204c_1.conda
hash:
md5: c91a7f51e21990168226bb849e517605
sha256: 38a3d4a60ecd5578220d439eb860274d616ba04ea233cd4a840f80d2f740abdc
category: main
optional: false
- name: exceptiongroup
version: 1.2.2
manager: conda
platform: linux-64
dependencies:
python: '>=3.9'
url: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_1.conda
hash:
md5: a16662747cdeb9abbac74d0057cc976e
sha256: cbde2c64ec317118fc06b223c5fd87c8a680255e7348dd60e7b292d2e103e701
category: dev
optional: true
- name: exceptiongroup
version: 1.2.2
manager: conda
platform: win-64
dependencies:
python: '>=3.9'
url: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.2-pyhd8ed1ab_1.conda
hash:
md5: a16662747cdeb9abbac74d0057cc976e
sha256: cbde2c64ec317118fc06b223c5fd87c8a680255e7348dd60e7b292d2e103e701
category: dev
optional: true
- name: freetype
version: 2.12.1
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
libpng: '>=1.6.39,<1.7.0a0'
libzlib: '>=1.2.13,<2.0.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/freetype-2.12.1-h267a509_2.conda
hash:
md5: 9ae35c3d96db2c94ce0cef86efdfa2cb
sha256: b2e3c449ec9d907dd4656cb0dc93e140f447175b125a3824b31368b06c666bb6
category: main
optional: false
- name: freetype
version: 2.12.1
manager: conda
platform: win-64
dependencies:
libpng: '>=1.6.39,<1.7.0a0'
libzlib: '>=1.2.13,<2.0.0a0'
ucrt: '>=10.0.20348.0'
vc: '>=14.2,<15'
vc14_runtime: '>=14.29.30139'
url: https://conda.anaconda.org/conda-forge/win-64/freetype-2.12.1-hdaf720e_2.conda
hash:
md5: 3761b23693f768dc75a8fd0a73ca053f
sha256: 2c53ee8879e05e149a9e525481d36adfd660a6abda26fd731376fa64ff03e728
category: main
optional: false
- name: h5py
version: 3.12.1
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
cached-property: ''
hdf5: '>=1.14.4,<1.14.5.0a0'
libgcc: '>=13'
numpy: '>=1.19,<3'
python: '>=3.12,<3.13.0a0'
python_abi: 3.12.*
url: https://conda.anaconda.org/conda-forge/linux-64/h5py-3.12.1-nompi_py312hd203070_103.conda
hash:
md5: 9bd82d55b98c65f49c44201339245cde
sha256: bc385c98d6d2f233ea472b0fb50e9ca796d926f1c15d12bb07fed2cb40905dd4
category: main
optional: false
- name: h5py
version: 3.12.1
manager: conda
platform: win-64
dependencies:
cached-property: ''
hdf5: '>=1.14.4,<1.14.5.0a0'
numpy: '>=1.19,<3'
python: '>=3.12,<3.13.0a0'
python_abi: 3.12.*
ucrt: '>=10.0.20348.0'
vc: '>=14.2,<15'
vc14_runtime: '>=14.29.30139'
url: https://conda.anaconda.org/conda-forge/win-64/h5py-3.12.1-nompi_py312h0db4ba1_103.conda
hash:
md5: 2b2b69668e15d4dec167f504e96706c5
sha256: 3968c4f7abff11264398d06c17d79549d5d9c6f5ca82c5c28f04f6eb36155d58
category: main
optional: false
- name: hdf5
version: 1.14.4
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libaec: '>=1.1.3,<2.0a0'
libcurl: '>=8.10.1,<9.0a0'
libgcc: '>=13'
libgfortran: ''
libgfortran5: '>=13.3.0'
libstdcxx: '>=13'
libzlib: '>=1.3.1,<2.0a0'
openssl: '>=3.4.0,<4.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.4-nompi_h2d575fe_105.conda
hash:
md5: d76fff0092b6389a12134ddebc0929bd
sha256: 93d2bfc672f3ee0988d277ce463330a467f3686d3f7ee37812a3d8ca11776d77
category: main
optional: false
- name: hdf5
version: 1.14.4
manager: conda
platform: win-64
dependencies:
libaec: '>=1.1.3,<2.0a0'
libcurl: '>=8.10.1,<9.0a0'
libzlib: '>=1.3.1,<2.0a0'
openssl: '>=3.4.0,<4.0a0'
ucrt: '>=10.0.20348.0'
vc: '>=14.2,<15'
vc14_runtime: '>=14.29.30139'
url: https://conda.anaconda.org/conda-forge/win-64/hdf5-1.14.4-nompi_hd5d9e70_105.conda
hash:
md5: 4381be33460283890c34341ecfa42d97
sha256: e8ced65c604a3b9e4803758a25149d71d8096f186fe876817a0d1d97190550c0
category: main
optional: false
- name: iniconfig
version: 2.0.0
manager: conda
platform: linux-64
dependencies:
python: '>=3.9'
url: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_1.conda
hash:
md5: 6837f3eff7dcea42ecd714ce1ac2b108
sha256: 0ec8f4d02053cd03b0f3e63168316530949484f80e16f5e2fb199a1d117a89ca
category: dev
optional: true
- name: iniconfig
version: 2.0.0
manager: conda
platform: win-64
dependencies:
python: '>=3.9'
url: https://conda.anaconda.org/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_1.conda
hash:
md5: 6837f3eff7dcea42ecd714ce1ac2b108
sha256: 0ec8f4d02053cd03b0f3e63168316530949484f80e16f5e2fb199a1d117a89ca
category: dev
optional: true
- name: intel-openmp
version: 2024.2.1
manager: conda
platform: win-64
dependencies: {}
url: https://conda.anaconda.org/conda-forge/win-64/intel-openmp-2024.2.1-h57928b3_1083.conda
hash:
md5: 2d89243bfb53652c182a7c73182cce4f
sha256: 0fd2b0b84c854029041b0ede8f4c2369242ee92acc0092f8407b1fe9238a8209
category: main
optional: false
- name: isort
version: 5.13.2
manager: conda
platform: linux-64
dependencies:
python: '>=3.9,<4.0'
setuptools: ''
url: https://conda.anaconda.org/conda-forge/noarch/isort-5.13.2-pyhd8ed1ab_1.conda
hash:
md5: ef7dc847f19fe4859d5aaa33385bf509
sha256: 6ebf6e83c2d449760ad5c5cc344711d6404f9e3cf6952811b8678aca5a4ab01f
category: dev
optional: true
- name: isort
version: 5.13.2
manager: conda
platform: win-64
dependencies:
python: '>=3.9,<4.0'
setuptools: ''
url: https://conda.anaconda.org/conda-forge/noarch/isort-5.13.2-pyhd8ed1ab_1.conda
hash:
md5: ef7dc847f19fe4859d5aaa33385bf509
sha256: 6ebf6e83c2d449760ad5c5cc344711d6404f9e3cf6952811b8678aca5a4ab01f
category: dev
optional: true
- name: jinja2
version: 3.1.5
manager: conda
platform: linux-64
dependencies:
markupsafe: '>=2.0'
python: '>=3.9'
url: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.5-pyhd8ed1ab_0.conda
hash:
md5: 2752a6ed44105bfb18c9bef1177d9dcd
sha256: 98977694b9ecaa3218662f843425f39501f81973c450f995eec68f1803ed71c3
category: dev
optional: true
- name: jinja2
version: 3.1.5
manager: conda
platform: win-64
dependencies:
markupsafe: '>=2.0'
python: '>=3.9'
url: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.5-pyhd8ed1ab_0.conda
hash:
md5: 2752a6ed44105bfb18c9bef1177d9dcd
sha256: 98977694b9ecaa3218662f843425f39501f81973c450f995eec68f1803ed71c3
category: dev
optional: true
- name: keyutils
version: 1.6.1
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=10.3.0'
url: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2
hash:
md5: 30186d27e2c9fa62b45fb1476b7200e3
sha256: 150c05a6e538610ca7c43beb3a40d65c90537497a4f6a5f4d15ec0451b6f5ebb
category: main
optional: false
- name: krb5
version: 1.21.3
manager: conda
platform: linux-64
dependencies:
keyutils: '>=1.6.1,<2.0a0'
libedit: '>=3.1.20191231,<4.0a0'
libgcc-ng: '>=12'
libstdcxx-ng: '>=12'
openssl: '>=3.3.1,<4.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda
hash:
md5: 3f43953b7d3fb3aaa1d0d0723d91e368
sha256: 99df692f7a8a5c27cd14b5fb1374ee55e756631b9c3d659ed3ee60830249b238
category: main
optional: false
- name: krb5
version: 1.21.3
manager: conda
platform: win-64
dependencies:
openssl: '>=3.3.1,<4.0a0'
ucrt: '>=10.0.20348.0'
vc: '>=14.2,<15'
vc14_runtime: '>=14.29.30139'
url: https://conda.anaconda.org/conda-forge/win-64/krb5-1.21.3-hdf4eb48_0.conda
hash:
md5: 31aec030344e962fbd7dbbbbd68e60a9
sha256: 18e8b3430d7d232dad132f574268f56b3eb1a19431d6d5de8c53c29e6c18fa81
category: main
optional: false
- name: lcms2
version: '2.16'
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
libjpeg-turbo: '>=3.0.0,<4.0a0'
libtiff: '>=4.6.0,<4.8.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/lcms2-2.16-hb7c19ff_0.conda
hash:
md5: 51bb7010fc86f70eee639b4bb7a894f5
sha256: 5c878d104b461b7ef922abe6320711c0d01772f4cd55de18b674f88547870041
category: main
optional: false
- name: lcms2
version: '2.16'
manager: conda
platform: win-64
dependencies:
libjpeg-turbo: '>=3.0.0,<4.0a0'
libtiff: '>=4.6.0,<4.8.0a0'
ucrt: '>=10.0.20348.0'
vc: '>=14.2,<15'
vc14_runtime: '>=14.29.30139'
url: https://conda.anaconda.org/conda-forge/win-64/lcms2-2.16-h67d730c_0.conda
hash:
md5: d3592435917b62a8becff3a60db674f6
sha256: f9fd9e80e46358a57d9bb97b1e37a03da4022143b019aa3c4476d8a7795de290
category: main
optional: false
- name: ld_impl_linux-64
version: '2.43'
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
url: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.43-h712a8e2_2.conda
hash:
md5: 048b02e3962f066da18efe3a21b77672
sha256: 7c91cea91b13f4314d125d1bedb9d03a29ebbd5080ccdea70260363424646dbe
category: main
optional: false
- name: lerc
version: 4.0.0
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
libstdcxx-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/lerc-4.0.0-h27087fc_0.tar.bz2
hash:
md5: 76bbff344f0134279f225174e9064c8f
sha256: cb55f36dcd898203927133280ae1dc643368af041a48bcf7c026acb7c47b0c12
category: main
optional: false
- name: lerc
version: 4.0.0
manager: conda
platform: win-64
dependencies:
vc: '>=14.2,<15'
vs2015_runtime: '>=14.29.30037'
url: https://conda.anaconda.org/conda-forge/win-64/lerc-4.0.0-h63175ca_0.tar.bz2
hash:
md5: 1900cb3cab5055833cfddb0ba233b074
sha256: f4f39d7f6a2f9b407f8fb567a6c25755270421731d70f0ff331f5de4fa367488
category: main
optional: false
- name: libaec
version: 1.1.3
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
libstdcxx-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/libaec-1.1.3-h59595ed_0.conda
hash:
md5: 5e97e271911b8b2001a8b71860c32faa
sha256: 2ef420a655528bca9d269086cf33b7e90d2f54ad941b437fb1ed5eca87cee017
category: main
optional: false
- name: libaec
version: 1.1.3
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/libaec-1.1.3-h63175ca_0.conda
hash:
md5: 8723000f6ffdbdaef16025f0a01b64c5
sha256: f5c293d3cfc00f71dfdb64bd65ab53625565f8778fc2d5790575bef238976ebf
category: main
optional: false
- name: libblas
version: 3.9.0
manager: conda
platform: linux-64
dependencies:
libopenblas: '>=0.3.28,<1.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-26_linux64_openblas.conda
hash:
md5: ac52800af2e0c0e7dac770b435ce768a
sha256: 30bd658682b124243f8e52d8edf8a19e7be1bc31e4fe4baec30a64002dc8cd0c
category: main
optional: false
- name: libblas
version: 3.9.0
manager: conda
platform: win-64
dependencies:
mkl: 2024.2.2
url: https://conda.anaconda.org/conda-forge/win-64/libblas-3.9.0-26_win64_mkl.conda
hash:
md5: ecfe732dbad1be001826fdb7e5e891b5
sha256: d631993a5cf5b8d3201f881084fce7ff6a26cd49883e189bf582cd0b7975c80a
category: main
optional: false
- name: libcblas
version: 3.9.0
manager: conda
platform: linux-64
dependencies:
libblas: 3.9.0
url: https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.9.0-26_linux64_openblas.conda
hash:
md5: ebcc5f37a435aa3c19640533c82f8d76
sha256: 9c74e536c9bc868e356ffd43f81c2cb398aec84b40fcadc312315b164a5500ee
category: main
optional: false
- name: libcblas
version: 3.9.0
manager: conda
platform: win-64
dependencies:
libblas: 3.9.0
url: https://conda.anaconda.org/conda-forge/win-64/libcblas-3.9.0-26_win64_mkl.conda
hash:
md5: 652f3adcb9d329050a325416edb14246
sha256: 66699c4f84fd36b67a34a7ac59fb86e73ee0c5b3c3502441041c8dd51f0a7d49
category: main
optional: false
- name: libcurl
version: 8.11.1
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
krb5: '>=1.21.3,<1.22.0a0'
libgcc: '>=13'
libnghttp2: '>=1.64.0,<2.0a0'
libssh2: '>=1.11.1,<2.0a0'
libzlib: '>=1.3.1,<2.0a0'
openssl: '>=3.4.0,<4.0a0'
zstd: '>=1.5.6,<1.6.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.11.1-h332b0f4_0.conda
hash:
md5: 2b3e0081006dc21e8bf53a91c83a055c
sha256: 3cd4075b2a7b5562e46c8ec626f6f9ca57aeecaa94ff7df57eca26daa94c9906
category: main
optional: false
- name: libcurl
version: 8.11.1
manager: conda
platform: win-64
dependencies:
krb5: '>=1.21.3,<1.22.0a0'
libssh2: '>=1.11.1,<2.0a0'
libzlib: '>=1.3.1,<2.0a0'
ucrt: '>=10.0.20348.0'
vc: '>=14.2,<15'
vc14_runtime: '>=14.29.30139'
url: https://conda.anaconda.org/conda-forge/win-64/libcurl-8.11.1-h88aaa65_0.conda
hash:
md5: 071d3f18dba5a6a13c6bb70cdb42678f
sha256: 1a67f01da0e35296c6d1fdf6baddc45ad3cc2114132ff4638052eb7cf258aab2
category: main
optional: false
- name: libdeflate
version: '1.23'
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc: '>=13'
url: https://conda.anaconda.org/conda-forge/linux-64/libdeflate-1.23-h4ddbbb0_0.conda
hash:
md5: 8dfae1d2e74767e9ce36d5fa0d8605db
sha256: 511d801626d02f4247a04fff957cc6e9ec4cc7e8622bd9acd076bcdc5de5fe66
category: main
optional: false
- name: libdeflate
version: '1.23'
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/libdeflate-1.23-h9062f6e_0.conda
hash:
md5: a9624935147a25b06013099d3038e467
sha256: 96c47725a8258159295996ea2758fa0ff9bea330e72b59641642e16be8427ce8
category: main
optional: false
- name: libedit
version: 3.1.20240808
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc: '>=13'
ncurses: '>=6.5,<7.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20240808-pl5321h7949ede_0.conda
hash:
md5: 8247f80f3dc464d9322e85007e307fe8
sha256: 4d0d69ddf9cc7d724a1ccf3a9852e44c8aea9825692582bac2c4e8d21ec95ccd
category: main
optional: false
- name: libev
version: '4.33'
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-hd590300_2.conda
hash:
md5: 172bf1cd1ff8629f2b1179945ed45055
sha256: 1cd6048169fa0395af74ed5d8f1716e22c19a81a8a36f934c110ca3ad4dd27b4
category: main
optional: false
- name: libexpat
version: 2.6.4
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc: '>=13'
url: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.6.4-h5888daf_0.conda
hash:
md5: db833e03127376d461e1e13e76f09b6c
sha256: 56541b98447b58e52d824bd59d6382d609e11de1f8adf20b23143e353d2b8d26
category: main
optional: false
- name: libexpat
version: 2.6.4
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/libexpat-2.6.4-he0c23c2_0.conda
hash:
md5: eb383771c680aa792feb529eaf9df82f
sha256: 0c0447bf20d1013d5603499de93a16b6faa92d7ead870d96305c0f065b6a5a12
category: main
optional: false
- name: libffi
version: 3.4.2
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=9.4.0'
url: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2
hash:
md5: d645c6d2ac96843a2bfaccd2d62b3ac3
sha256: ab6e9856c21709b7b517e940ae7028ae0737546122f83c2aa5d692860c3b149e
category: main
optional: false
- name: libffi
version: 3.4.2
manager: conda
platform: win-64
dependencies:
vc: '>=14.1,<15.0a0'
vs2015_runtime: '>=14.16.27012'
url: https://conda.anaconda.org/conda-forge/win-64/libffi-3.4.2-h8ffe710_5.tar.bz2
hash:
md5: 2c96d1b6915b408893f9472569dee135
sha256: 1951ab740f80660e9bc07d2ed3aefb874d78c107264fd810f24a1a6211d4b1a5
category: main
optional: false
- name: libgcc
version: 14.2.0
manager: conda
platform: linux-64
dependencies:
_libgcc_mutex: '0.1'
_openmp_mutex: '>=4.5'
url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-14.2.0-h77fa898_1.conda
hash:
md5: 3cb76c3f10d3bc7f1105b2fc9db984df
sha256: 53eb8a79365e58849e7b1a068d31f4f9e718dc938d6f2c03e960345739a03569
category: main
optional: false
- name: libgcc
version: 14.2.0
manager: conda
platform: win-64
dependencies:
_openmp_mutex: '>=4.5'
libwinpthread: '>=12.0.0.r4.gg4f2fc60ca'
url: https://conda.anaconda.org/conda-forge/win-64/libgcc-14.2.0-h1383e82_1.conda
hash:
md5: 75fdd34824997a0f9950a703b15d8ac5
sha256: ef840e797714440bb10b69446d815966fff41fdac79f79c4e19c475d81cd375d
category: main
optional: false
- name: libgcc-ng
version: 14.2.0
manager: conda
platform: linux-64
dependencies:
libgcc: 14.2.0
url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-14.2.0-h69a702a_1.conda
hash:
md5: e39480b9ca41323497b05492a63bc35b
sha256: 3a76969c80e9af8b6e7a55090088bc41da4cffcde9e2c71b17f44d37b7cb87f7
category: main
optional: false
- name: libgfortran
version: 14.2.0
manager: conda
platform: linux-64
dependencies:
libgfortran5: 14.2.0
url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-14.2.0-h69a702a_1.conda
hash:
md5: f1fd30127802683586f768875127a987
sha256: fc9e7f22a17faf74da904ebfc4d88699013d2992e55505e4aa0eb01770290977
category: main
optional: false
- name: libgfortran5
version: 14.2.0
manager: conda
platform: linux-64
dependencies:
libgcc: '>=14.2.0'
url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-14.2.0-hd5240d6_1.conda
hash:
md5: 9822b874ea29af082e5d36098d25427d
sha256: d149a37ca73611e425041f33b9d8dbed6e52ec506fe8cc1fc0ee054bddeb6d5d
category: main
optional: false
- name: libgomp
version: 14.2.0
manager: conda
platform: linux-64
dependencies:
_libgcc_mutex: '0.1'
url: https://conda.anaconda.org/conda-forge/linux-64/libgomp-14.2.0-h77fa898_1.conda
hash:
md5: cc3573974587f12dda90d96e3e55a702
sha256: 1911c29975ec99b6b906904040c855772ccb265a1c79d5d75c8ceec4ed89cd63
category: main
optional: false
- name: libgomp
version: 14.2.0
manager: conda
platform: win-64
dependencies:
libwinpthread: '>=12.0.0.r4.gg4f2fc60ca'
url: https://conda.anaconda.org/conda-forge/win-64/libgomp-14.2.0-h1383e82_1.conda
hash:
md5: 9e2d4d1214df6f21cba12f6eff4972f9
sha256: d8739b834608f35775209b032f0c2be752ef187863c7ec847afcebe2f681be4e
category: main
optional: false
- name: libhwloc
version: 2.11.2
manager: conda
platform: win-64
dependencies:
libwinpthread: '>=12.0.0.r4.gg4f2fc60ca'
libxml2: '>=2.13.4,<3.0a0'
ucrt: '>=10.0.20348.0'
vc: '>=14.2,<15'
vc14_runtime: '>=14.29.30139'
url: https://conda.anaconda.org/conda-forge/win-64/libhwloc-2.11.2-default_ha69328c_1001.conda
hash:
md5: b87a0ac5ab6495d8225db5dc72dd21cd
sha256: 850e255997f538d5fb6ed651321141155a33bb781d43d326fc4ff62114dd2842
category: main
optional: false
- name: libiconv
version: '1.17'
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/libiconv-1.17-hcfcfb64_2.conda