This repository was archived by the owner on Aug 21, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpy-3.11.conda-lock.yml
More file actions
2693 lines (2693 loc) · 78.4 KB
/
Copy pathpy-3.11.conda-lock.yml
File metadata and controls
2693 lines (2693 loc) · 78.4 KB
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.11.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.11.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.11.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.11.yml --lockfile py-3.11.conda-lock.yml
version: 1
metadata:
content_hash:
win-64: 23ea4382e00310b8c151d06405e3ebe895fa0852fb1bc82359d05162c4aaa7a2
linux-64: 763bd9d634a81612715bee16f26fa85d532e8c38d0914acb82cfd3c8ff2d5e03
channels:
- url: conda-forge
used_env_vars: []
- url: nodefaults
used_env_vars: []
platforms:
- win-64
- linux-64
sources:
- pyproject.toml
- environments/env-python-3.11.yml
package:
- name: _libgcc_mutex
version: '0.1'
manager: conda
platform: linux-64
dependencies: {}
url: https://repo.prefix.dev/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://repo.prefix.dev/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://repo.prefix.dev/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://repo.prefix.dev/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://repo.prefix.dev/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.11
manager: conda
platform: linux-64
dependencies:
python: '>=3.11,<3.12.0a0'
python_abi: 3.11.*
url: https://repo.prefix.dev/conda-forge/linux-64/astroid-3.3.11-py311h38be061_0.conda
hash:
md5: 5b60818e202c1b50da4e4fb9c84fe7b4
sha256: d0b2c99d3cc091f11c46dae464fb319a7c59d02dbca5423d99d2fa3aba8f4622
category: dev
optional: true
- name: astroid
version: 3.3.11
manager: conda
platform: win-64
dependencies:
python: '>=3.11,<3.12.0a0'
python_abi: 3.11.*
url: https://repo.prefix.dev/conda-forge/win-64/astroid-3.3.11-py311h1ea47a8_0.conda
hash:
md5: c5753dd2c7c94426f58d4211fa11f0dd
sha256: 45e56ffb92124c4c08843fb2219888248dc483fdb408c80b4d6844ff1135a4e8
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://repo.prefix.dev/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://repo.prefix.dev/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.5
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc: '>=13'
url: https://repo.prefix.dev/conda-forge/linux-64/c-ares-1.34.5-hb9d3cd8_0.conda
hash:
md5: f7f0d6cc2dc986d42ac2689ec88192be
sha256: f8003bef369f57396593ccd03d08a8e21966157269426f71e943f96e4b579aeb
category: main
optional: false
- name: ca-certificates
version: 2025.8.3
manager: conda
platform: linux-64
dependencies:
__unix: ''
url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2025.8.3-hbd8a1cb_0.conda
hash:
md5: 74784ee3d225fc3dca89edb635b4e5cc
sha256: 837b795a2bb39b75694ba910c13c15fa4998d4bb2a622c214a6a5174b2ae53d1
category: main
optional: false
- name: ca-certificates
version: 2025.8.3
manager: conda
platform: win-64
dependencies:
__win: ''
url: https://repo.prefix.dev/conda-forge/noarch/ca-certificates-2025.8.3-h4c7d964_0.conda
hash:
md5: c9e0c0f82f6e63323827db462b40ede8
sha256: 3b82f62baad3fd33827b01b0426e8203a2786c8f452f633740868296bcbe8485
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://repo.prefix.dev/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://repo.prefix.dev/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://repo.prefix.dev/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://repo.prefix.dev/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://repo.prefix.dev/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://repo.prefix.dev/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda
hash:
md5: 962b9857ee8e7018c22f2776ffa0b2d7
sha256: ab29d57dc70786c1269633ba3dff20288b81664d3ff8d21af995742e2bb03287
category: dev
optional: true
- name: coverage
version: 7.10.3
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc: '>=14'
python: '>=3.11,<3.12.0a0'
python_abi: 3.11.*
tomli: ''
url: https://repo.prefix.dev/conda-forge/linux-64/coverage-7.10.3-py311h3778330_0.conda
hash:
md5: ad2711c0c4366177466c4bb7d3dd6809
sha256: 1da38824b3e4337f8bd3407936222677d6accc882a3badf39244600fc73f140e
category: dev
optional: true
- name: coverage
version: 7.10.3
manager: conda
platform: win-64
dependencies:
python: '>=3.11,<3.12.0a0'
python_abi: 3.11.*
tomli: ''
ucrt: '>=10.0.20348.0'
vc: '>=14.3,<15'
vc14_runtime: '>=14.44.35208'
url: https://repo.prefix.dev/conda-forge/win-64/coverage-7.10.3-py311h3f79411_0.conda
hash:
md5: 19738e4a2b8c0f882769c4ecf2663b09
sha256: e046c26ed49e18fbaa258a5705691acec6aab8f2017e45ecea104a0d5e50c1be
category: dev
optional: true
- name: dill
version: 0.4.0
manager: conda
platform: linux-64
dependencies:
python: '>=3.9'
url: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.0-pyhd8ed1ab_0.conda
hash:
md5: 885745570573eb6a08e021841928297a
sha256: 43dca52c96fde0c4845aaff02bcc92f25e1c2e5266ddefc2eac1a3de0960a3b1
category: dev
optional: true
- name: dill
version: 0.4.0
manager: conda
platform: win-64
dependencies:
python: '>=3.9'
url: https://repo.prefix.dev/conda-forge/noarch/dill-0.4.0-pyhd8ed1ab_0.conda
hash:
md5: 885745570573eb6a08e021841928297a
sha256: 43dca52c96fde0c4845aaff02bcc92f25e1c2e5266ddefc2eac1a3de0960a3b1
category: dev
optional: true
- name: discretize
version: 0.11.3
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc: '>=13'
libstdcxx: '>=13'
numpy: '>=1.22.4'
python: '>=3.11,<3.12.0a0'
python_abi: 3.11.*
scipy: '>=1.8'
url: https://repo.prefix.dev/conda-forge/linux-64/discretize-0.11.3-py311h5b7b71f_0.conda
hash:
md5: a7407d831a3b494a143c5e69f83fb0a8
sha256: 68c39916cff90c5ddf30144096189f3b54d41507dd85023543f03d7cfd5851b4
category: main
optional: false
- name: discretize
version: 0.11.3
manager: conda
platform: win-64
dependencies:
numpy: '>=1.22.4'
python: '>=3.11,<3.12.0a0'
python_abi: 3.11.*
scipy: '>=1.8'
ucrt: '>=10.0.20348.0'
vc: '>=14.2,<15'
vc14_runtime: '>=14.29.30139'
url: https://repo.prefix.dev/conda-forge/win-64/discretize-0.11.3-py311h9b10771_0.conda
hash:
md5: 7de8d3ea58f928e4507713d7b35ce1d9
sha256: 0499b57534162b58677de77dbb0c3dc11dd17ee27043ae5871db2d89e27b8e0d
category: main
optional: false
- name: exceptiongroup
version: 1.3.0
manager: conda
platform: linux-64
dependencies:
python: '>=3.9'
typing_extensions: '>=4.6.0'
url: https://repo.prefix.dev/conda-forge/noarch/exceptiongroup-1.3.0-pyhd8ed1ab_0.conda
hash:
md5: 72e42d28960d875c7654614f8b50939a
sha256: ce61f4f99401a4bd455b89909153b40b9c823276aefcbb06f2044618696009ca
category: dev
optional: true
- name: exceptiongroup
version: 1.3.0
manager: conda
platform: win-64
dependencies:
python: '>=3.9'
typing_extensions: '>=4.6.0'
url: https://repo.prefix.dev/conda-forge/noarch/exceptiongroup-1.3.0-pyhd8ed1ab_0.conda
hash:
md5: 72e42d28960d875c7654614f8b50939a
sha256: ce61f4f99401a4bd455b89909153b40b9c823276aefcbb06f2044618696009ca
category: dev
optional: true
- name: freetype
version: 2.13.3
manager: conda
platform: linux-64
dependencies:
libfreetype: 2.13.3
libfreetype6: 2.13.3
url: https://repo.prefix.dev/conda-forge/linux-64/freetype-2.13.3-ha770c72_1.conda
hash:
md5: 9ccd736d31e0c6e41f54e704e5312811
sha256: 7ef7d477c43c12a5b4cddcf048a83277414512d1116aba62ebadfa7056a7d84f
category: main
optional: false
- name: freetype
version: 2.13.3
manager: conda
platform: win-64
dependencies:
libfreetype: 2.13.3
libfreetype6: 2.13.3
url: https://repo.prefix.dev/conda-forge/win-64/freetype-2.13.3-h57928b3_1.conda
hash:
md5: 633504fe3f96031192e40e3e6c18ef06
sha256: 0bcc9c868d769247c12324f957c97c4dbee7e4095485db90d9c295bcb3b1bb43
category: main
optional: false
- name: h5py
version: 3.14.0
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
cached-property: ''
hdf5: '>=1.14.6,<1.14.7.0a0'
libgcc: '>=13'
numpy: '>=1.21,<3'
python: '>=3.11,<3.12.0a0'
python_abi: 3.11.*
url: https://repo.prefix.dev/conda-forge/linux-64/h5py-3.14.0-nompi_py311h7f87ba5_100.conda
hash:
md5: ecfcdeb88c8727f3cf67e1177528a498
sha256: cd2bd076c9d9bd8d8021698159e694a8600d8349e3208719c422af2c86b9c184
category: main
optional: false
- name: h5py
version: 3.14.0
manager: conda
platform: win-64
dependencies:
cached-property: ''
hdf5: '>=1.14.6,<1.14.7.0a0'
numpy: '>=1.21,<3'
python: '>=3.11,<3.12.0a0'
python_abi: 3.11.*
ucrt: '>=10.0.20348.0'
vc: '>=14.2,<15'
vc14_runtime: '>=14.29.30139'
url: https://repo.prefix.dev/conda-forge/win-64/h5py-3.14.0-nompi_py311h97e6cc2_100.conda
hash:
md5: f806b981514c8d3e567a2b7d5a8569ff
sha256: 600c7089e5fd40d9592d2d881192052b8c6df5f3afe9cd5e51fb8ef2bc8df1bc
category: main
optional: false
- name: hdf5
version: 1.14.6
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libaec: '>=1.1.4,<2.0a0'
libcurl: '>=8.14.1,<9.0a0'
libgcc: '>=14'
libgfortran: ''
libgfortran5: '>=14.3.0'
libstdcxx: '>=14'
libzlib: '>=1.3.1,<2.0a0'
openssl: '>=3.5.1,<4.0a0'
url: https://repo.prefix.dev/conda-forge/linux-64/hdf5-1.14.6-nompi_h6e4c0c1_103.conda
hash:
md5: c74d83614aec66227ae5199d98852aaf
sha256: 4f173af9e2299de7eee1af3d79e851bca28ee71e7426b377e841648b51d48614
category: main
optional: false
- name: hdf5
version: 1.14.6
manager: conda
platform: win-64
dependencies:
libaec: '>=1.1.4,<2.0a0'
libcurl: '>=8.14.1,<9.0a0'
libzlib: '>=1.3.1,<2.0a0'
openssl: '>=3.5.1,<4.0a0'
ucrt: '>=10.0.20348.0'
vc: '>=14.3,<15'
vc14_runtime: '>=14.44.35208'
url: https://repo.prefix.dev/conda-forge/win-64/hdf5-1.14.6-nompi_he30205f_103.conda
hash:
md5: f1f7aaf642cefd2190582550eaca4658
sha256: 0a90263b97e9860cec6c2540160ff1a1fff2a609b3d96452f8716ae63489dac5
category: main
optional: false
- name: iniconfig
version: 2.0.0
manager: conda
platform: linux-64
dependencies:
python: '>=3.9'
url: https://repo.prefix.dev/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://repo.prefix.dev/conda-forge/noarch/iniconfig-2.0.0-pyhd8ed1ab_1.conda
hash:
md5: 6837f3eff7dcea42ecd714ce1ac2b108
sha256: 0ec8f4d02053cd03b0f3e63168316530949484f80e16f5e2fb199a1d117a89ca
category: dev
optional: true
- name: isort
version: 6.0.1
manager: conda
platform: linux-64
dependencies:
python: '>=3.9,<4.0'
url: https://repo.prefix.dev/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_1.conda
hash:
md5: c25d1a27b791dab1797832aafd6a3e9a
sha256: e1d0e81e3c3da5d7854f9f57ffb89d8f4505bb64a2f05bb01d78eff24344a105
category: dev
optional: true
- name: isort
version: 6.0.1
manager: conda
platform: win-64
dependencies:
python: '>=3.9,<4.0'
url: https://repo.prefix.dev/conda-forge/noarch/isort-6.0.1-pyhd8ed1ab_1.conda
hash:
md5: c25d1a27b791dab1797832aafd6a3e9a
sha256: e1d0e81e3c3da5d7854f9f57ffb89d8f4505bb64a2f05bb01d78eff24344a105
category: dev
optional: true
- name: jinja2
version: 3.1.6
manager: conda
platform: linux-64
dependencies:
markupsafe: '>=2.0'
python: '>=3.9'
url: https://repo.prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda
hash:
md5: 446bd6c8cb26050d528881df495ce646
sha256: f1ac18b11637ddadc05642e8185a851c7fab5998c6f5470d716812fae943b2af
category: dev
optional: true
- name: jinja2
version: 3.1.6
manager: conda
platform: win-64
dependencies:
markupsafe: '>=2.0'
python: '>=3.9'
url: https://repo.prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda
hash:
md5: 446bd6c8cb26050d528881df495ce646
sha256: f1ac18b11637ddadc05642e8185a851c7fab5998c6f5470d716812fae943b2af
category: dev
optional: true
- name: keyutils
version: 1.6.3
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc: '>=13'
url: https://repo.prefix.dev/conda-forge/linux-64/keyutils-1.6.3-hb9d3cd8_0.conda
hash:
md5: b38117a3c920364aff79f870c984b4a3
sha256: 0960d06048a7185d3542d850986d807c6e37ca2e644342dd0c72feefcf26c2a4
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://repo.prefix.dev/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://repo.prefix.dev/conda-forge/win-64/krb5-1.21.3-hdf4eb48_0.conda
hash:
md5: 31aec030344e962fbd7dbbbbd68e60a9
sha256: 18e8b3430d7d232dad132f574268f56b3eb1a19431d6d5de8c53c29e6c18fa81
category: main
optional: false
- name: lcms2
version: '2.17'
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc: '>=13'
libjpeg-turbo: '>=3.0.0,<4.0a0'
libtiff: '>=4.7.0,<4.8.0a0'
url: https://repo.prefix.dev/conda-forge/linux-64/lcms2-2.17-h717163a_0.conda
hash:
md5: 000e85703f0fd9594c81710dd5066471
sha256: d6a61830a354da022eae93fa896d0991385a875c6bba53c82263a289deda9db8
category: main
optional: false
- name: lcms2
version: '2.17'
manager: conda
platform: win-64
dependencies:
libjpeg-turbo: '>=3.0.0,<4.0a0'
libtiff: '>=4.7.0,<4.8.0a0'
ucrt: '>=10.0.20348.0'
vc: '>=14.2,<15'
vc14_runtime: '>=14.29.30139'
url: https://repo.prefix.dev/conda-forge/win-64/lcms2-2.17-hbcf6048_0.conda
hash:
md5: 3538827f77b82a837fa681a4579e37a1
sha256: 7712eab5f1a35ca3ea6db48ead49e0d6ac7f96f8560da8023e61b3dbe4f3b25d
category: main
optional: false
- name: ld_impl_linux-64
version: '2.44'
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
url: https://repo.prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.44-h1423503_1.conda
hash:
md5: 0be7c6e070c19105f966d3758448d018
sha256: 1a620f27d79217c1295049ba214c2f80372062fd251b569e9873d4a953d27554
category: main
optional: false
- name: lerc
version: 4.0.0
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc: '>=13'
libstdcxx: '>=13'
url: https://repo.prefix.dev/conda-forge/linux-64/lerc-4.0.0-h0aef613_1.conda
hash:
md5: 9344155d33912347b37f0ae6c410a835
sha256: 412381a43d5ff9bbed82cd52a0bbca5b90623f62e41007c9c42d3870c60945ff
category: main
optional: false
- name: lerc
version: 4.0.0
manager: conda
platform: win-64
dependencies:
ucrt: '>=10.0.20348.0'
vc: '>=14.2,<15'
vc14_runtime: '>=14.29.30139'
url: https://repo.prefix.dev/conda-forge/win-64/lerc-4.0.0-h6470a55_1.conda
hash:
md5: c1b81da6d29a14b542da14a36c9fbf3f
sha256: 868a3dff758cc676fa1286d3f36c3e0101cca56730f7be531ab84dc91ec58e9d
category: main
optional: false
- name: libaec
version: 1.1.4
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc: '>=13'
libstdcxx: '>=13'
url: https://repo.prefix.dev/conda-forge/linux-64/libaec-1.1.4-h3f801dc_0.conda
hash:
md5: 01ba04e414e47f95c03d6ddd81fd37be
sha256: 410ab78fe89bc869d435de04c9ffa189598ac15bb0fe1ea8ace8fb1b860a2aa3
category: main
optional: false
- name: libaec
version: 1.1.4
manager: conda
platform: win-64
dependencies:
ucrt: '>=10.0.20348.0'
vc: '>=14.2,<15'
vc14_runtime: '>=14.29.30139'
url: https://repo.prefix.dev/conda-forge/win-64/libaec-1.1.4-h20038f6_0.conda
hash:
md5: 85a2bed45827d77d5b308cb2b165404f
sha256: 0be89085effce9fdcbb6aea7acdb157b18793162f68266ee0a75acf615d4929b
category: main
optional: false
- name: libblas
version: 3.9.0
manager: conda
platform: linux-64
dependencies:
libopenblas: '>=0.3.30,<0.3.31.0a0'
url: https://repo.prefix.dev/conda-forge/linux-64/libblas-3.9.0-34_h59b9bed_openblas.conda
hash:
md5: 064c22bac20fecf2a99838f9b979374c
sha256: 08a394ba934f68f102298259b150eb5c17a97c30c6da618e1baab4247366eab3
category: main
optional: false
- name: libblas
version: 3.9.0
manager: conda
platform: win-64
dependencies:
mkl: '>=2024.2.2,<2025.0a0'
url: https://repo.prefix.dev/conda-forge/win-64/libblas-3.9.0-34_h5709861_mkl.conda
hash:
md5: a64dcde5f27b8e0e413ddfc56151664c
sha256: d7865fcc7d29b22e4111ababec49083851a84bb3025748eed65184be765b6e7d
category: main
optional: false
- name: libcblas
version: 3.9.0
manager: conda
platform: linux-64
dependencies:
libblas: 3.9.0
url: https://repo.prefix.dev/conda-forge/linux-64/libcblas-3.9.0-34_he106b2a_openblas.conda
hash:
md5: 148b531b5457ad666ed76ceb4c766505
sha256: edde454897c7889c0323216516abb570a593de728c585b14ef41eda2b08ddf3a
category: main
optional: false
- name: libcblas
version: 3.9.0
manager: conda
platform: win-64
dependencies:
libblas: 3.9.0
url: https://repo.prefix.dev/conda-forge/win-64/libcblas-3.9.0-34_h2a3cdd5_mkl.conda
hash:
md5: 25a019872ff471af70fd76d9aaaf1313
sha256: e9f31d44e668822f6420bfaeda4aa74cd6c60d3671cf0b00262867f36ad5a8c1
category: main
optional: false
- name: libcurl
version: 8.14.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.5.0,<4.0a0'
zstd: '>=1.5.7,<1.6.0a0'
url: https://repo.prefix.dev/conda-forge/linux-64/libcurl-8.14.1-h332b0f4_0.conda
hash:
md5: 45f6713cb00f124af300342512219182
sha256: b6c5cf340a4f80d70d64b3a29a7d9885a5918d16a5cb952022820e6d3e79dc8b
category: main
optional: false
- name: libcurl
version: 8.14.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://repo.prefix.dev/conda-forge/win-64/libcurl-8.14.1-h88aaa65_0.conda
hash:
md5: 836b9c08f34d2017dbcaec907c6a1138
sha256: b2cface2cf35d8522289df7fffc14370596db6f6dc481cc1b6ca313faeac19d8
category: main
optional: false
- name: libdeflate
version: '1.24'
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc: '>=13'
url: https://repo.prefix.dev/conda-forge/linux-64/libdeflate-1.24-h86f0d12_0.conda
hash:
md5: 64f0c503da58ec25ebd359e4d990afa8
sha256: 8420748ea1cc5f18ecc5068b4f24c7a023cc9b20971c99c824ba10641fb95ddf
category: main
optional: false
- name: libdeflate
version: '1.24'
manager: conda
platform: win-64
dependencies:
ucrt: '>=10.0.20348.0'
vc: '>=14.2,<15'
vc14_runtime: '>=14.29.30139'
url: https://repo.prefix.dev/conda-forge/win-64/libdeflate-1.24-h76ddb4d_0.conda
hash:
md5: 08d988e266c6ae77e03d164b83786dc4
sha256: 65347475c0009078887ede77efe60db679ea06f2b56f7853b9310787fe5ad035
category: main
optional: false
- name: libedit
version: 3.1.20250104
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc: '>=13'
ncurses: '>=6.5,<7.0a0'
url: https://repo.prefix.dev/conda-forge/linux-64/libedit-3.1.20250104-pl5321h7949ede_0.conda
hash:
md5: c277e0a4d549b03ac1e9d6cbbe3d017b
sha256: d789471216e7aba3c184cd054ed61ce3f6dac6f87a50ec69291b9297f8c18724
category: main
optional: false
- name: libev
version: '4.33'
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
url: https://repo.prefix.dev/conda-forge/linux-64/libev-4.33-hd590300_2.conda
hash:
md5: 172bf1cd1ff8629f2b1179945ed45055
sha256: 1cd6048169fa0395af74ed5d8f1716e22c19a81a8a36f934c110ca3ad4dd27b4
category: main
optional: false
- name: libexpat
version: 2.7.1
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc: '>=14'
url: https://repo.prefix.dev/conda-forge/linux-64/libexpat-2.7.1-hecca717_0.conda
hash:
md5: 4211416ecba1866fab0c6470986c22d6
sha256: da2080da8f0288b95dd86765c801c6e166c4619b910b11f9a8446fb852438dc2
category: main
optional: false
- name: libexpat
version: 2.7.1
manager: conda
platform: win-64
dependencies:
ucrt: '>=10.0.20348.0'
vc: '>=14.3,<15'
vc14_runtime: '>=14.44.35208'
url: https://repo.prefix.dev/conda-forge/win-64/libexpat-2.7.1-hac47afa_0.conda
hash:
md5: 3608ffde260281fa641e70d6e34b1b96
sha256: 8432ca842bdf8073ccecf016ccc9140c41c7114dc4ec77ca754551c01f780845
category: main
optional: false
- name: libffi
version: 3.4.6
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc: '>=13'
url: https://repo.prefix.dev/conda-forge/linux-64/libffi-3.4.6-h2dba641_1.conda
hash:
md5: ede4673863426c0883c0063d853bbd85
sha256: 764432d32db45466e87f10621db5b74363a9f847d2b8b1f9743746cd160f06ab
category: main
optional: false
- name: libffi
version: 3.4.6
manager: conda
platform: win-64
dependencies:
ucrt: '>=10.0.20348.0'
vc: '>=14.2,<15'
vc14_runtime: '>=14.29.30139'
url: https://repo.prefix.dev/conda-forge/win-64/libffi-3.4.6-h537db12_1.conda
hash:
md5: 85d8fa5e55ed8f93f874b3b23ed54ec6
sha256: d3b0b8812eab553d3464bbd68204f007f1ebadf96ce30eb0cbc5159f72e353f5
category: main
optional: false
- name: libfreetype
version: 2.13.3
manager: conda
platform: linux-64
dependencies:
libfreetype6: '>=2.13.3'
url: https://repo.prefix.dev/conda-forge/linux-64/libfreetype-2.13.3-ha770c72_1.conda
hash:
md5: 51f5be229d83ecd401fb369ab96ae669
sha256: 7be9b3dac469fe3c6146ff24398b685804dfc7a1de37607b84abd076f57cc115
category: main
optional: false
- name: libfreetype
version: 2.13.3
manager: conda
platform: win-64
dependencies:
libfreetype6: '>=2.13.3'
url: https://repo.prefix.dev/conda-forge/win-64/libfreetype-2.13.3-h57928b3_1.conda
hash:
md5: 410ba2c8e7bdb278dfbb5d40220e39d2
sha256: e5bc7d0a8d11b7b234da4fcd9d78f297f7dec3fec8bd06108fd3ac7b2722e32e
category: main
optional: false
- name: libfreetype6
version: 2.13.3
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc: '>=13'
libpng: '>=1.6.47,<1.7.0a0'
libzlib: '>=1.3.1,<2.0a0'
url: https://repo.prefix.dev/conda-forge/linux-64/libfreetype6-2.13.3-h48d6fc4_1.conda
hash:
md5: 3c255be50a506c50765a93a6644f32fe
sha256: 7759bd5c31efe5fbc36a7a1f8ca5244c2eabdbeb8fc1bee4b99cf989f35c7d81
category: main
optional: false
- name: libfreetype6
version: 2.13.3
manager: conda
platform: win-64
dependencies:
libpng: '>=1.6.47,<1.7.0a0'
libzlib: '>=1.3.1,<2.0a0'
ucrt: '>=10.0.20348.0'
vc: '>=14.2,<15'
vc14_runtime: '>=14.29.30139'
url: https://repo.prefix.dev/conda-forge/win-64/libfreetype6-2.13.3-h0b5ce68_1.conda
hash:
md5: a84b7d1a13060a9372bea961a8131dbc
sha256: 61308653e7758ff36f80a60d598054168a1389ddfbac46d7864c415fafe18e69
category: main
optional: false
- name: libgcc
version: 15.1.0
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
_openmp_mutex: '>=4.5'
url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-15.1.0-h767d61c_4.conda
hash:
md5: f406dcbb2e7bef90d793e50e79a2882b
sha256: 144e35c1c2840f2dc202f6915fc41879c19eddbb8fa524e3ca4aa0d14018b26f
category: main
optional: false
- name: libgcc
version: 15.1.0
manager: conda
platform: win-64
dependencies:
_openmp_mutex: '>=4.5'
libwinpthread: '>=12.0.0.r4.gg4f2fc60ca'
url: https://repo.prefix.dev/conda-forge/win-64/libgcc-15.1.0-h1383e82_4.conda
hash:
md5: 59fe76f0ff39b512ff889459b9fc3054
sha256: c169606e148f8df3375fdc9fe76ee3f44b8ffc2515e8131ede8f2d75cf7d6f0c
category: main
optional: false
- name: libgcc-ng
version: 15.1.0
manager: conda
platform: linux-64
dependencies:
libgcc: 15.1.0
url: https://repo.prefix.dev/conda-forge/linux-64/libgcc-ng-15.1.0-h69a702a_4.conda
hash:
md5: 28771437ffcd9f3417c66012dc49a3be
sha256: 76ceac93ed98f208363d6e9c75011b0ff7b97b20f003f06461a619557e726637
category: main
optional: false
- name: libgfortran
version: 15.1.0
manager: conda
platform: linux-64
dependencies:
libgfortran5: 15.1.0
url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran-15.1.0-h69a702a_4.conda
hash:
md5: 53e876bc2d2648319e94c33c57b9ec74
sha256: 2fe41683928eb3c57066a60ec441e605a69ce703fc933d6d5167debfeba8a144
category: main
optional: false
- name: libgfortran5
version: 15.1.0
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc: '>=15.1.0'
url: https://repo.prefix.dev/conda-forge/linux-64/libgfortran5-15.1.0-hcea5267_4.conda
hash:
md5: 8a4ab7ff06e4db0be22485332666da0f
sha256: 3070e5e2681f7f2fb7af0a81b92213f9ab430838900da8b4f9b8cf998ddbdd84