-
Notifications
You must be signed in to change notification settings - Fork 0
/
conda-lock.yml
3930 lines (3930 loc) · 115 KB
/
conda-lock.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This lock file was generated by conda-lock (https://github.com/conda/conda-lock). DO NOT EDIT!
#
# A "lock file" contains a concrete list of package versions (with checksums) to be installed. Unlike
# e.g. `conda env create`, the resulting environment will not change as new package versions become
# available, unless you explicitly update the lock file.
#
# Install this environment as "YOURENV" with:
# conda-lock install -n YOURENV --file conda-lock.yml
# To update a single package to the latest version compatible with the version constraints in the source:
# conda-lock lock --lockfile conda-lock.yml --update PACKAGE
# To re-solve the entire environment, e.g. after changing a version constraint in the source file:
# conda-lock -f environment.yml --lockfile conda-lock.yml
version: 1
metadata:
content_hash:
linux-64: bfda94c75cf4f974cdbebc4613bcd53e7be4dc578acd1edb92a50946c1890a7b
osx-64: ae4e5e56eac9e8c96bc4a0ba1e6725b17be6b40666dc6f8ae886609d16ed0a7a
channels:
- url: conda-forge
used_env_vars: []
platforms:
- linux-64
- osx-64
sources:
- environment.yml
package:
- name: _libgcc_mutex
version: '0.1'
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2
hash:
md5: d7c89558ba9fa0495403155b64376d81
sha256: fe51de6107f9edc7aa4f786a70f4a883943bc9d39b3bb7307c04c41410990726
category: main
optional: false
- name: ca-certificates
version: 2023.7.22
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2023.7.22-hbcca054_0.conda
hash:
md5: a73ecd2988327ad4c8f2c331482917f2
sha256: 525b7b6b5135b952ec1808de84e5eca57c7c7ff144e29ef3e96ae4040ff432c1
category: main
optional: false
- name: ld_impl_linux-64
version: '2.40'
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-h41732ed_0.conda
hash:
md5: 7aca3059a1729aa76c597603f10b0dd3
sha256: f6cc89d887555912d6c61b295d398cff9ec982a3417d38025c45d5dd9b9e79cd
category: main
optional: false
- name: libstdcxx-ng
version: 13.1.0
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-13.1.0-hfd8a6a1_0.conda
hash:
md5: 067bcc23164642f4c226da631f2a2e1d
sha256: 6f9eb2d7a96687938c0001166a3b308460a8eb02b10e9d0dd9e251f0219ea05c
category: main
optional: false
- name: python_abi
version: '3.11'
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.11-3_cp311.conda
hash:
md5: c2e2630ddb68cf52eec74dc7dfab20b5
sha256: 2966a87dcb0b11fad28f9fe8216bfa4071115776b47ffc7547492fed176e1a1f
category: main
optional: false
- name: tzdata
version: 2023c
manager: conda
platform: linux-64
dependencies: {}
url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2023c-h71feb2d_0.conda
hash:
md5: 939e3e74d8be4dac89ce83b20de2492a
sha256: 0449138224adfa125b220154408419ec37c06b0b49f63c5954724325903ecf55
category: main
optional: false
- name: libgomp
version: 13.1.0
manager: conda
platform: linux-64
dependencies:
_libgcc_mutex: '0.1'
url: https://conda.anaconda.org/conda-forge/linux-64/libgomp-13.1.0-he5830b7_0.conda
hash:
md5: 56ca14d57ac29a75d23a39eb3ee0ddeb
sha256: 5d441d80b57f857ad305a65169a6b915d4fd6735cdc9e9bded35d493c91ef16d
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: libgcc-ng
version: 13.1.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-ng-13.1.0-he5830b7_0.conda
hash:
md5: cd93f779ff018dd85c7544c015c9db3c
sha256: fba897a02f35b2b5e6edc43a746d1fa6970a77b422f258246316110af8966911
category: main
optional: false
- name: bzip2
version: 1.0.8
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=9.3.0'
url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h7f98852_4.tar.bz2
hash:
md5: a1fd65c7ccbf10880423d82bca54eb54
sha256: cb521319804640ff2ad6a9f118d972ed76d86bea44e5626c09a13d38f562e1fa
category: main
optional: false
- name: gmp
version: 6.2.1
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=7.5.0'
libstdcxx-ng: '>=7.5.0'
url: https://conda.anaconda.org/conda-forge/linux-64/gmp-6.2.1-h58526e2_0.tar.bz2
hash:
md5: b94cf2db16066b242ebd26db2facbd56
sha256: 07a5319e1ac54fe5d38f50c60f7485af7f830b036da56957d0bfb7558a886198
category: main
optional: false
- name: libexpat
version: 2.5.0
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.5.0-hcb278e6_1.conda
hash:
md5: 6305a3dd2752c76335295da4e581f2fd
sha256: 74c98a563777ae2ad71f1f74d458a8ab043cee4a513467c159ccf159d0e461f3
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: libnsl
version: 2.0.0
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=9.4.0'
url: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.0-h7f98852_0.tar.bz2
hash:
md5: 39b1328babf85c7c3a61636d9cd50206
sha256: 32f4fb94d99946b0dabfbbfd442b25852baf909637f2eed1ffe3baea15d02aad
category: main
optional: false
- name: libsodium
version: 1.0.18
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=7.5.0'
url: https://conda.anaconda.org/conda-forge/linux-64/libsodium-1.0.18-h36c2ea0_1.tar.bz2
hash:
md5: c3788462a6fbddafdb413a9f9053e58d
sha256: 53da0c8b79659df7b53eebdb80783503ce72fb4b10ed6e9e05cc0e9e4207a130
category: main
optional: false
- name: libuuid
version: 2.38.1
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda
hash:
md5: 40b61aab5c7ba9ff276c41cfffe6b80b
sha256: 787eb542f055a2b3de553614b25f09eefb0a0931b0c87dbcce6efdfd92f04f18
category: main
optional: false
- name: libzlib
version: 1.2.13
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.2.13-hd590300_5.conda
hash:
md5: f36c115f1ee199da648e0597ec2047ad
sha256: 370c7c5893b737596fd6ca0d9190c9715d89d888b8c88537ae1ef168c25e82e4
category: main
optional: false
- name: ncurses
version: '6.4'
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.4-hcb278e6_0.conda
hash:
md5: 681105bccc2a3f7f1a837d47d39c9179
sha256: ccf61e61d58a8a7b2d66822d5568e2dc9387883dd9b2da61e1d787ece4c4979a
category: main
optional: false
- name: openssl
version: 3.1.2
manager: conda
platform: linux-64
dependencies:
ca-certificates: ''
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.1.2-hd590300_0.conda
hash:
md5: e5ac5227582d6c83ccf247288c0eb095
sha256: b113fbac327c90cdc29c2fac0f2a2e5cc0d1918b2a5ffa7abd49b695b9b3c6e9
category: main
optional: false
- name: xz
version: 5.2.6
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
url: https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2
hash:
md5: 2161070d867d1b1204ea749c8eec4ef0
sha256: 03a6d28ded42af8a347345f82f3eebdd6807a08526d47899a42d62d319609162
category: main
optional: false
- name: yaml
version: 0.2.5
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=9.4.0'
url: https://conda.anaconda.org/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2
hash:
md5: 4cb3ad778ec2d5a7acbdf254eb1c42ae
sha256: a4e34c710eeb26945bdbdaba82d3d74f60a78f54a874ec10d373811a5d217535
category: main
optional: false
- name: libsqlite
version: 3.43.0
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
libzlib: '>=1.2.13,<1.3.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.43.0-h2797004_0.conda
hash:
md5: 903fa782a9067d5934210df6d79220f6
sha256: e715fab7ec6b3f3df2a5962ef372ff0f871d215fe819482dcd80357999513652
category: main
optional: false
- name: readline
version: '8.2'
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
ncurses: '>=6.3,<7.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda
hash:
md5: 47d31b792659ce70f470b5c82fdfb7a4
sha256: 5435cf39d039387fbdc977b0a762357ea909a7694d9528ab40f005e9208744d7
category: main
optional: false
- name: tk
version: 8.6.12
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=9.4.0'
libzlib: '>=1.2.11,<1.3.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.12-h27826a3_0.tar.bz2
hash:
md5: 5b8c42eb62e9fc961af70bdd6a26e168
sha256: 032fd769aad9d4cad40ba261ab222675acb7ec951a8832455fce18ef33fa8df0
category: main
optional: false
- name: zeromq
version: 4.3.4
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=9.4.0'
libsodium: '>=1.0.18,<1.0.19.0a0'
libstdcxx-ng: '>=9.4.0'
url: https://conda.anaconda.org/conda-forge/linux-64/zeromq-4.3.4-h9c3ff4c_1.tar.bz2
hash:
md5: 21743a8d2ea0c8cfbbf8fe489b0347df
sha256: 525315b0df21866d4c3d68bc2ff987d26c2fdf0e3e8fd242c49b7255adef04c6
category: main
optional: false
- name: zlib
version: 1.2.13
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
libzlib: 1.2.13
url: https://conda.anaconda.org/conda-forge/linux-64/zlib-1.2.13-hd590300_5.conda
hash:
md5: 68c34ec6149623be41a1933ab996a209
sha256: 9887a04d7e7cb14bd2b52fa01858f05a6d7f002c890f618d9fcd864adbfecb1b
category: main
optional: false
- name: pandoc
version: 3.1.3
manager: conda
platform: linux-64
dependencies:
gmp: ''
libzlib: '>=1.2.13,<1.3.0a0'
zlib: ''
url: https://conda.anaconda.org/conda-forge/linux-64/pandoc-3.1.3-h32600fe_0.conda
hash:
md5: 8287aeb8462e2d4b235eff788e75919d
sha256: 52d23e2fded05e7a19d9d7996f19ed837b46578b6e5951b8c5990cf919404ffc
category: main
optional: false
- name: python
version: 3.11.5
manager: conda
platform: linux-64
dependencies:
bzip2: '>=1.0.8,<2.0a0'
ld_impl_linux-64: '>=2.36.1'
libexpat: '>=2.5.0,<3.0a0'
libffi: '>=3.4,<4.0a0'
libgcc-ng: '>=12'
libnsl: '>=2.0.0,<2.1.0a0'
libsqlite: '>=3.43.0,<4.0a0'
libuuid: '>=2.38.1,<3.0a0'
libzlib: '>=1.2.13,<1.3.0a0'
ncurses: '>=6.4,<7.0a0'
openssl: '>=3.1.2,<4.0a0'
readline: '>=8.2,<9.0a0'
tk: '>=8.6.12,<8.7.0a0'
tzdata: ''
xz: '>=5.2.6,<6.0a0'
pip: ''
url: https://conda.anaconda.org/conda-forge/linux-64/python-3.11.5-hab00c5b_0_cpython.conda
hash:
md5: f0288cb82594b1cbc71111d1cd3c5422
sha256: 920fe89dbc4aaf910e7a37cb4d865eaabe7ff1e5e6c3888d56fe7742ab181448
category: main
optional: false
- name: attrs
version: 23.1.0
manager: conda
platform: linux-64
dependencies:
python: '>=3.7'
url: https://conda.anaconda.org/conda-forge/noarch/attrs-23.1.0-pyh71513ae_1.conda
hash:
md5: 3edfead7cedd1ab4400a6c588f3e75f8
sha256: 063639cd568f5c7a557b0fb1cc27f098598c0d8ff869088bfeb82934674f8821
category: main
optional: false
- name: backcall
version: 0.2.0
manager: conda
platform: linux-64
dependencies:
python: ''
url: https://conda.anaconda.org/conda-forge/noarch/backcall-0.2.0-pyh9f0ad1d_0.tar.bz2
hash:
md5: 6006a6d08a3fa99268a2681c7fb55213
sha256: ee62d6434090c1327a48551734e06bd10e65a64ef7f3b6e68719500dab0e42b9
category: main
optional: false
- name: backports
version: '1.0'
manager: conda
platform: linux-64
dependencies:
python: '>=2.7'
url: https://conda.anaconda.org/conda-forge/noarch/backports-1.0-pyhd8ed1ab_3.conda
hash:
md5: 54ca2e08b3220c148a1d8329c2678e02
sha256: 711602276ae39276cb0faaca6fd0ac851fff0ca17151917569174841ef830bbd
category: main
optional: false
- name: brotli-python
version: 1.1.0
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
libstdcxx-ng: '>=12'
python: '>=3.11,<3.12.0a0'
python_abi: 3.11.*
url: https://conda.anaconda.org/conda-forge/linux-64/brotli-python-1.1.0-py311hb755f60_0.conda
hash:
md5: b8128d083dbf6abd472b1a3e98b0b83d
sha256: e61c4ce483c17d16411c9c07e2de7da500063fb6dfef220194d7d362894df742
category: main
optional: false
- name: cached_property
version: 1.5.2
manager: conda
platform: linux-64
dependencies:
python: '>=3.6'
url: https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2
hash:
md5: 576d629e47797577ab0f1b351297ef4a
sha256: 6dbf7a5070cc43d90a1e4c2ec0c541c69d8e30a0e25f50ce9f6e4a432e42c5d7
category: main
optional: false
- name: certifi
version: 2023.7.22
manager: conda
platform: linux-64
dependencies:
python: '>=3.7'
url: https://conda.anaconda.org/conda-forge/noarch/certifi-2023.7.22-pyhd8ed1ab_0.conda
hash:
md5: 7f3dbc9179b4dde7da98dfb151d0ad22
sha256: db66e31866ff4250c190788769e3a8a1709237c3e9c38d7143aae95ab75fcb31
category: main
optional: false
- name: charset-normalizer
version: 3.2.0
manager: conda
platform: linux-64
dependencies:
python: '>=3.7'
url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.2.0-pyhd8ed1ab_0.conda
hash:
md5: 313516e9a4b08b12dfb1e1cd390a96e3
sha256: 0666a95fbbd2299008162e2126c009191e5953d1cad1878bf9f4d8d634af1dd4
category: main
optional: false
- name: debugpy
version: 1.6.8
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
libstdcxx-ng: '>=12'
python: '>=3.11,<3.12.0a0'
python_abi: 3.11.*
url: https://conda.anaconda.org/conda-forge/linux-64/debugpy-1.6.8-py311hb755f60_0.conda
hash:
md5: 9f9b136195a7682bc807d2cb68837cfd
sha256: 3c47abebc5ea16b8e61ea1dad3fd5894b3fa1223a22db2f415298b14587cd87f
category: main
optional: false
- name: decorator
version: 5.1.1
manager: conda
platform: linux-64
dependencies:
python: '>=3.5'
url: https://conda.anaconda.org/conda-forge/noarch/decorator-5.1.1-pyhd8ed1ab_0.tar.bz2
hash:
md5: 43afe5ab04e35e17ba28649471dd7364
sha256: 328a6a379f9bdfd0230e51de291ce858e6479411ea4b0545fb377c71662ef3e2
category: main
optional: false
- name: defusedxml
version: 0.7.1
manager: conda
platform: linux-64
dependencies:
python: '>=3.6'
url: https://conda.anaconda.org/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2
hash:
md5: 961b3a227b437d82ad7054484cfa71b2
sha256: 9717a059677553562a8f38ff07f3b9f61727bd614f505658b0a5ecbcf8df89be
category: main
optional: false
- name: entrypoints
version: '0.4'
manager: conda
platform: linux-64
dependencies:
python: '>=3.6'
url: https://conda.anaconda.org/conda-forge/noarch/entrypoints-0.4-pyhd8ed1ab_0.tar.bz2
hash:
md5: 3cf04868fee0a029769bd41f4b2fbf2d
sha256: 2ec4a0900a4a9f42615fc04d0fb3286b796abe56590e8e042f6ec25e102dd5af
category: main
optional: false
- name: exceptiongroup
version: 1.1.3
manager: conda
platform: linux-64
dependencies:
python: '>=3.7'
url: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.1.3-pyhd8ed1ab_0.conda
hash:
md5: e6518222753f519e911e83136d2158d9
sha256: c28f715e049fe0f09785660bcbffa175ffb438720e5bc5a60d56d4b08364b315
category: main
optional: false
- name: executing
version: 1.2.0
manager: conda
platform: linux-64
dependencies:
python: '>=2.7'
url: https://conda.anaconda.org/conda-forge/noarch/executing-1.2.0-pyhd8ed1ab_0.tar.bz2
hash:
md5: 4c1bc140e2be5c8ba6e3acab99e25c50
sha256: 9c03425cd58c474af20e179c9ba121a82984d6c4bfc896bbc992f5ed75dd7539
category: main
optional: false
- name: flit-core
version: 3.9.0
manager: conda
platform: linux-64
dependencies:
python: '>=3.6'
url: https://conda.anaconda.org/conda-forge/noarch/flit-core-3.9.0-pyhd8ed1ab_0.conda
hash:
md5: e8cfceef004266b259604c3faa2a0191
sha256: a2ef503739ac22bf2a5d91c6a7b0f6a4413a56fbdb9b84f8f70427b9e37fbb69
category: main
optional: false
- name: idna
version: '3.4'
manager: conda
platform: linux-64
dependencies:
python: '>=3.6'
url: https://conda.anaconda.org/conda-forge/noarch/idna-3.4-pyhd8ed1ab_0.tar.bz2
hash:
md5: 34272b248891bddccc64479f9a7fffed
sha256: 9887c35c374ec1847f167292d3fde023cb4c994a4ceeec283072b95440131f09
category: main
optional: false
- name: json5
version: 0.9.14
manager: conda
platform: linux-64
dependencies:
python: '>=3.7,<4.0'
url: https://conda.anaconda.org/conda-forge/noarch/json5-0.9.14-pyhd8ed1ab_0.conda
hash:
md5: dac1dabba2b5a9d1aee175c5fcc7b436
sha256: 41514104208c092959bef0713cbd795e72c535f2f939b7903d8c97809f2adaa7
category: main
optional: false
- name: jsonpointer
version: '2.0'
manager: conda
platform: linux-64
dependencies:
python: ''
url: https://conda.anaconda.org/conda-forge/noarch/jsonpointer-2.0-py_0.tar.bz2
hash:
md5: 07d85c22a3beb102a48cd123df84c2a6
sha256: da279af2285d8f575a7f5652e83bf7f36155c4c63154e385a9d171efcc607bc1
category: main
optional: false
- name: markupsafe
version: 2.1.3
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
python: '>=3.11,<3.12.0a0'
python_abi: 3.11.*
url: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-2.1.3-py311h459d7ec_0.conda
hash:
md5: 9904dc4adb5d547cb21e136f98cb24b0
sha256: 747b00706156b61d48565710f38cdb382e22f7db03e5b429532a2d5d5917c313
category: main
optional: false
- name: mistune
version: 3.0.1
manager: conda
platform: linux-64
dependencies:
python: '>=3.7'
url: https://conda.anaconda.org/conda-forge/noarch/mistune-3.0.1-pyhd8ed1ab_0.conda
hash:
md5: 1dad8397c94e4de97a70de552a7dcf49
sha256: 0b4558d3afb64e23b66f5279b704de76ebeb6b4eebbf913d65fbd4ba7d9acc2f
category: main
optional: false
- name: nest-asyncio
version: 1.5.6
manager: conda
platform: linux-64
dependencies:
python: '>=3.5'
url: https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.5.6-pyhd8ed1ab_0.tar.bz2
hash:
md5: 7b868f21adde0d9b8b38f9c16836589b
sha256: 594d240d8be933b6e47b78b786269cc89ffa34874544d9dbed1c6afc9213869b
category: main
optional: false
- name: packaging
version: '23.1'
manager: conda
platform: linux-64
dependencies:
python: '>=3.7'
url: https://conda.anaconda.org/conda-forge/noarch/packaging-23.1-pyhd8ed1ab_0.conda
hash:
md5: 91cda59e66e1e4afe9476f8ef98f5c30
sha256: ded536a96a00d45a693dbc2971bb688248324dadd129eddda2100e177583d768
category: main
optional: false
- name: pandocfilters
version: 1.5.0
manager: conda
platform: linux-64
dependencies:
python: '!=3.0,!=3.1,!=3.2,!=3.3'
url: https://conda.anaconda.org/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2
hash:
md5: 457c2c8c08e54905d6954e79cb5b5db9
sha256: 2bb9ba9857f4774b85900c2562f7e711d08dd48e2add9bee4e1612fbee27e16f
category: main
optional: false
- name: parso
version: 0.8.3
manager: conda
platform: linux-64
dependencies:
python: '>=3.6'
url: https://conda.anaconda.org/conda-forge/noarch/parso-0.8.3-pyhd8ed1ab_0.tar.bz2
hash:
md5: 17a565a0c3899244e938cdf417e7b094
sha256: 4e26d5daf5de0e31aa5e74ac56386a361b202433b83f024fdadbf07d4a244da4
category: main
optional: false
- name: pickleshare
version: 0.7.5
manager: conda
platform: linux-64
dependencies:
python: '>=3'
url: https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-py_1003.tar.bz2
hash:
md5: 415f0ebb6198cc2801c73438a9fb5761
sha256: a1ed1a094dd0d1b94a09ed85c283a0eb28943f2e6f22161fb45e128d35229738
category: main
optional: false
- name: pkgutil-resolve-name
version: 1.3.10
manager: conda
platform: linux-64
dependencies:
python: '>=3.6'
url: https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_0.tar.bz2
hash:
md5: 89e3c7cdde7d3aaa2aee933b604dd07f
sha256: 7d055ffc8a02bf781a89d069db3454b453605cdaff300b82cedcc7133283e47e
category: main
optional: false
- name: prometheus_client
version: 0.17.1
manager: conda
platform: linux-64
dependencies:
python: '>=3.6'
url: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.17.1-pyhd8ed1ab_0.conda
hash:
md5: 02153b6b760bbec00cfe9e4c97993d06
sha256: a149184fde856dba7968fc50ca89dbb07ebe84abd710d4076e2fada1b9399231
category: main
optional: false
- name: psutil
version: 5.9.5
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
python: '>=3.11,<3.12.0a0'
python_abi: 3.11.*
url: https://conda.anaconda.org/conda-forge/linux-64/psutil-5.9.5-py311h2582759_0.conda
hash:
md5: a90f8e278c1cd7064b2713e6b7db87e6
sha256: aa5b377f1555a09ba702d9ac9d0d0585d74cbaf8897e45e5cfa4c464732a6493
category: main
optional: false
- name: ptyprocess
version: 0.7.0
manager: conda
platform: linux-64
dependencies:
python: ''
url: https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd3deb0d_0.tar.bz2
hash:
md5: 359eeb6536da0e687af562ed265ec263
sha256: fb31e006a25eb2e18f3440eb8d17be44c8ccfae559499199f73584566d0a444a
category: main
optional: false
- name: pure_eval
version: 0.2.2
manager: conda
platform: linux-64
dependencies:
python: '>=3.5'
url: https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.2-pyhd8ed1ab_0.tar.bz2
hash:
md5: 6784285c7e55cb7212efabc79e4c2883
sha256: 72792f9fc2b1820e37cc57f84a27bc819c71088c3002ca6db05a2e56404f9d44
category: main
optional: false
- name: pycparser
version: '2.21'
manager: conda
platform: linux-64
dependencies:
python: 2.7.*|>=3.4
url: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.21-pyhd8ed1ab_0.tar.bz2
hash:
md5: 076becd9e05608f8dc72757d5f3a91ff
sha256: 74c63fd03f1f1ea2b54e8bc529fd1a600aaafb24027b738d0db87909ee3a33dc
category: main
optional: false
- name: pygments
version: 2.16.1
manager: conda
platform: linux-64
dependencies:
python: '>=3.7'
url: https://conda.anaconda.org/conda-forge/noarch/pygments-2.16.1-pyhd8ed1ab_0.conda
hash:
md5: 40e5cb18165466773619e5c963f00a7b
sha256: 3f0f0fadc6084960ec8cc00a32a03529c562ffea3b527eb73b1653183daad389
category: main
optional: false
- name: pysocks
version: 1.7.1
manager: conda
platform: linux-64
dependencies:
__unix: ''
python: '>=3.8'
url: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2
hash:
md5: 2a7de29fb590ca14b5243c4c812c8025
sha256: a42f826e958a8d22e65b3394f437af7332610e43ee313393d1cf143f0a2d274b
category: main
optional: false
- name: python-fastjsonschema
version: 2.18.0
manager: conda
platform: linux-64
dependencies:
python: '>=3.3'
url: https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.18.0-pyhd8ed1ab_0.conda
hash:
md5: 3be9466311564f80f8056c0851fc5bb7
sha256: 73985a9a2dd7ccf77b7428a12148e1b381c8635e9195e47a652397e9a56284ce
category: main
optional: false
- name: python-json-logger
version: 2.0.7
manager: conda
platform: linux-64
dependencies:
python: '>=3.6'
url: https://conda.anaconda.org/conda-forge/noarch/python-json-logger-2.0.7-pyhd8ed1ab_0.conda
hash:
md5: a61bf9ec79426938ff785eb69dbb1960
sha256: 4790787fe1f4e8da616edca4acf6a4f8ed4e7c6967aa31b920208fc8f95efcca
category: main
optional: false
- name: pytz
version: 2023.3.post1
manager: conda
platform: linux-64
dependencies:
python: '>=3.6'
url: https://conda.anaconda.org/conda-forge/noarch/pytz-2023.3.post1-pyhd8ed1ab_0.conda
hash:
md5: c93346b446cd08c169d843ae5fc0da97
sha256: 6b680e63d69aaf087cd43ca765a23838723ef59b0a328799e6363eb13f52c49e
category: main
optional: false
- name: pyyaml
version: 6.0.1
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
python: '>=3.11,<3.12.0a0'
python_abi: 3.11.*
yaml: '>=0.2.5,<0.3.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/pyyaml-6.0.1-py311h459d7ec_0.conda
hash:
md5: 30eaaf31141e785a445bf1ede6235fe3
sha256: 0d0c010046ff718a5feb75fa6302e2893e5b1f5cecd0f7bba9ba56394d696097
category: main
optional: false
- name: pyzmq
version: 25.1.1
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
libsodium: '>=1.0.18,<1.0.19.0a0'
libstdcxx-ng: '>=12'
python: '>=3.11,<3.12.0a0'
python_abi: 3.11.*
zeromq: '>=4.3.4,<4.4.0a0'
url: https://conda.anaconda.org/conda-forge/linux-64/pyzmq-25.1.1-py311h75c88c4_0.conda
hash:
md5: af6d43afe0d179ac83b7e0c16b2caaad
sha256: ed20bfb466d4746f616cb4b7e7f51d4ea9beaedca1c163f901cf3bcce558febb
category: main
optional: false
- name: rfc3986-validator
version: 0.1.1
manager: conda
platform: linux-64
dependencies:
python: ''
url: https://conda.anaconda.org/conda-forge/noarch/rfc3986-validator-0.1.1-pyh9f0ad1d_0.tar.bz2
hash:
md5: 912a71cc01012ee38e6b90ddd561e36f
sha256: 2a5b495a1de0f60f24d8a74578ebc23b24aa53279b1ad583755f223097c41c37
category: main
optional: false
- name: rpds-py
version: 0.10.2
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
python: '>=3.11,<3.12.0a0'
python_abi: 3.11.*
url: https://conda.anaconda.org/conda-forge/linux-64/rpds-py-0.10.2-py311h46250e7_0.conda
hash:
md5: 0068f069d641ebeb5a9d8f3422f90442
sha256: ac851a5069df29195324606648790cb317fb2365fb7ee6947cd5d5b1ff3270fc
category: main
optional: false
- name: send2trash
version: 1.8.2
manager: conda
platform: linux-64
dependencies:
__linux: ''
python: '>=3.6'
url: https://conda.anaconda.org/conda-forge/noarch/send2trash-1.8.2-pyh41d4057_0.conda
hash:
md5: ada5a17adcd10be4fc7e37e4166ba0e2
sha256: e74d3faf51a6cc429898da0209d95b209270160f3edbf2f6d8b61a99428301cd
category: main
optional: false
- name: setuptools
version: 68.1.2
manager: conda
platform: linux-64
dependencies:
python: '>=3.7'
url: https://conda.anaconda.org/conda-forge/noarch/setuptools-68.1.2-pyhd8ed1ab_0.conda
hash:
md5: 4fe12573bf499ff85a0a364e00cc5c53
sha256: dc5a777597e05ceddefc87d2f96389b7ae0afb097e558307af83a453db3e3887
category: main
optional: false
- name: six
version: 1.16.0
manager: conda
platform: linux-64
dependencies:
python: ''
url: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2
hash:
md5: e5f25f8dbc060e9a8d912e432202afc2
sha256: a85c38227b446f42c5b90d9b642f2c0567880c15d72492d8da074a59c8f91dd6
category: main
optional: false
- name: sniffio
version: 1.3.0
manager: conda
platform: linux-64
dependencies:
python: '>=3.7'
url: https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.0-pyhd8ed1ab_0.tar.bz2
hash:
md5: dd6cbc539e74cb1f430efbd4575b9303
sha256: a3fd30754c20ddb28b777db38345ea00d958f46701f0decd6291a81c0f4eee78
category: main
optional: false
- name: soupsieve
version: '2.5'
manager: conda
platform: linux-64
dependencies:
python: '>=3.8'
url: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda
hash:
md5: 3f144b2c34f8cb5a9abd9ed23a39c561
sha256: 54ae221033db8fbcd4998ccb07f3c3828b4d77e73b0c72b18c1d6a507059059c
category: main
optional: false
- name: tomli
version: 2.0.1
manager: conda
platform: linux-64
dependencies:
python: '>=3.7'
url: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2
hash:
md5: 5844808ffab9ebdb694585b50ba02a96
sha256: 4cd48aba7cd026d17e86886af48d0d2ebc67ed36f87f6534f4b67138f5a5a58f
category: main
optional: false
- name: tornado
version: 6.3.3
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
python: '>=3.11,<3.12.0a0'
python_abi: 3.11.*
url: https://conda.anaconda.org/conda-forge/linux-64/tornado-6.3.3-py311h459d7ec_0.conda
hash:
md5: 7d9a31416c18704f55946ff7cf8da5dc
sha256: ee633576893cf4b87752acebddb0237ef6cd7abf716d319c4834f9865a04d41e
category: main
optional: false
- name: traitlets
version: 5.9.0
manager: conda
platform: linux-64
dependencies:
python: '>=3.7'
url: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.9.0-pyhd8ed1ab_0.conda
hash:
md5: d0b4f5c87cd35ac3fb3d47b223263a64
sha256: 343610bce6dbe8a5090500dd2e9d1706057960b3f3120ebfe0abb4a8ecbada4d
category: main
optional: false
- name: typing_extensions
version: 4.7.1
manager: conda
platform: linux-64
dependencies:
python: '>=3.7'
url: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.7.1-pyha770c72_0.conda
hash:
md5: c39d6a09fe819de4951c2642629d9115
sha256: 6edd6d5be690be492712cb747b6d62707f0d0c34ef56eefc796d91e5a03187d1
category: main
optional: false
- name: typing_utils
version: 0.1.0
manager: conda
platform: linux-64
dependencies:
python: '>=3.6.1'
url: https://conda.anaconda.org/conda-forge/noarch/typing_utils-0.1.0-pyhd8ed1ab_0.tar.bz2
hash:
md5: eb67e3cace64c66233e2d35949e20f92
sha256: 9e3758b620397f56fb709f796969de436d63b7117897159619b87938e1f78739
category: main
optional: false
- name: uri-template
version: 1.3.0
manager: conda
platform: linux-64
dependencies: