-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpixi.lock
More file actions
1767 lines (1767 loc) · 84.5 KB
/
Copy pathpixi.lock
File metadata and controls
1767 lines (1767 loc) · 84.5 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
version: 6
environments:
default:
channels:
- url: https://conda.anaconda.org/conda-forge/
indexes:
- https://pypi.org/simple
packages:
win-64:
- conda: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-h2466b09_7.conda
- conda: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2025.1.31-h56e8100_0.conda
- conda: https://conda.anaconda.org/conda-forge/win-64/libexpat-2.7.0-he0c23c2_0.conda
- conda: https://conda.anaconda.org/conda-forge/win-64/libffi-3.4.6-h537db12_1.conda
- conda: https://conda.anaconda.org/conda-forge/win-64/liblzma-5.8.1-h2466b09_0.conda
- conda: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.49.1-h67fdade_2.conda
- conda: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.3.1-h2466b09_2.conda
- conda: https://conda.anaconda.org/conda-forge/win-64/openssl-3.4.1-ha4e3fda_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pip-25.0.1-pyh8b19718_0.conda
- conda: https://conda.anaconda.org/conda-forge/win-64/python-3.11.11-h3f84c4b_2_cpython.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-78.1.0-pyhff2d567_0.conda
- conda: https://conda.anaconda.org/conda-forge/win-64/tk-8.6.13-h5226925_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda
- conda: https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_1.conda
- conda: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-h2b53caa_26.conda
- conda: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.42.34438-hfd919c2_26.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda
- pypi: https://files.pythonhosted.org/packages/53/18/a56e2fe47b259bb52201093a3a9d4a32014f9d85071ad07e9d60600890ca/ansicolors-1.1.8-py2.py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/3b/00/2344469e2084fb287c2e0b57b72910309874c3245463acd6cf5e3db69324/appdirs-1.4.4-py2.py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/b3/66/e6c0a808950ba5a4042e2fcedd577fc7401536c7db063de4d7c36be06f84/argparse_dataclass-2.0.0-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/25/8a/c46dcc25341b5bce5472c718902eb3d38600a903b14fa6aeecef3f21a46f/asttokens-3.0.0-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/77/06/bb80f5f86020c4551da315d78b3ab75e8228f89f0162f2c3a819e407941a/attrs-25.3.0-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/38/fc/bce832fd4fd99766c04d1ee0eead6b0ec6486fb100ae5e74c1d91292b982/certifi-2025.1.31-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/79/b1/6551603f8ea31de55913c84e4def3c36670563bdea6e195fcc4b6225ddf7/cftime-1.6.4.post1-cp311-cp311-win_amd64.whl
- pypi: https://files.pythonhosted.org/packages/1e/ab/45b180e175de4402dcf7547e4fb617283bae54ce35c27930a6f35b6bef15/charset_normalizer-3.4.1-cp311-cp311-win_amd64.whl
- pypi: https://files.pythonhosted.org/packages/7e/d4/7ebdbd03970677812aac39c869717059dbb71a4cfc033ca6e5221787892c/click-8.1.8-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/e6/75/49e5bfe642f71f272236b5b2d2691cf915a7283cc0ceda56357b61daa538/comm-0.2.2-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/87/4c/fc30b69fb4062aee57e3ab7ff493647c4220144908f0839c619f912045bf/conda_inject-1.3.2-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/6f/b3/b4ac838711fd74a2b4e6f746703cf9dd2cf5462d17dac07e349234e21b97/ConfigArgParse-1.7-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/bd/df/c9b4e25dce00f6349fd28aadba7b6c3f7431cc8bd4308a158fbe57b6a22e/connection_pool-0.0.3.tar.gz
- pypi: https://files.pythonhosted.org/packages/a8/7e/cd93cab453720a5d6cb75588cc17dcdc08fc3484b9de98b885924ff61900/contourpy-1.3.1-cp311-cp311-win_amd64.whl
- pypi: https://files.pythonhosted.org/packages/e7/05/c19819d5e3d95294a6f5947fb9b9629efb316b96de511b418c53d245aae6/cycler-0.12.1-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/cd/d5/3684d7561c8ba2797305cf8259619acccb8d6ebe2117bb33a6897c235eee/debugpy-1.8.13-cp311-cp311-win_amd64.whl
- pypi: https://files.pythonhosted.org/packages/4e/8c/f3147f5c4b73e7550fe5f9352eaa956ae838d5c51eb58e7a25b9f3e2643b/decorator-5.2.1-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/8f/d7/9322c609343d929e75e7e5e6255e614fcc67572cfd083959cdef3b7aad79/docutils-0.21.2-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/05/d1/8952806fbf9583004ab479d8f58a9496c3d35f6b6009ddd458bdd9978eaf/dpath-2.2.0-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/35/a8/365059bbcd4572cbc41de17fd5b682be5868b218c3c5479071865cab9078/entrypoints-0.4-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/c1/8b/5fe2cc11fee489817272089c4203e679c63b570a5aaeb18d852ae3cbba6a/et_xmlfile-2.0.0-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/7b/8f/c4d9bafc34ad7ad5d8dc16dd1347ee0e507a52c3adb6bfa8887e1c6a26ba/executing-2.2.0-py2.py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/90/2b/0817a2b257fe88725c25589d89aec060581aabf668707a8d03b2e9e0cb2a/fastjsonschema-2.21.1-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/13/4c/de2612ea2216eb45cfc8eb91a8501615dd87716feaf5f8fb65cbca576289/fonttools-4.57.0-cp311-cp311-win_amd64.whl
- pypi: https://files.pythonhosted.org/packages/a0/61/5c78b91c3143ed5c14207f463aecfc8f9dbb5092fb2869baf37c273b2705/gitdb-4.0.12-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/1d/9a/4114a9057db2f1462d5c8f8390ab7383925fe1ac012eaa42402ad65c2963/GitPython-3.1.44-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/56/89/e3ff23e07131ff73a72a349be9639e4de84e163af89c1c218b939459a98a/h5py-3.13.0-cp311-cp311-win_amd64.whl
- pypi: https://files.pythonhosted.org/packages/f0/0f/310fb31e39e2d734ccaa2c0fb981ee41f7bd5056ce9bc29b2248bd569169/humanfriendly-10.0-py2.py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/76/c6/c88e154df9c4e1a2a66ccf0005a88dfb2650c1dffb6f5ce603dfbd452ce3/idna-3.10-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/1f/20/999ecf398412c9ad174da083c6ffea56d027ef62cf892f695b43210c4721/immutables-0.21-cp311-cp311-win_amd64.whl
- pypi: https://files.pythonhosted.org/packages/94/5c/368ae6c01c7628438358e6d337c19b05425727fbb221d2a3c4303c372f42/ipykernel-6.29.5-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/20/3a/917cb9e72f4e1a4ea13c862533205ae1319bd664119189ee5cc9e4e95ebf/ipython-9.0.2-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/d9/33/1f075bf72b0b747cb3288d011319aaf64083cf2efef8354174e3ed4540e2/ipython_pygments_lexers-1.1.1-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/c0/5a/9cac0c82afec3d09ccd97c8b6502d48f165f9124db81b4bcb90b4af974ee/jedi-0.19.2-py2.py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/62/a1/3d680cbfd5f4b8f15abc1d571870c5fc3e594bb582bc3b64ea099db13e56/jinja2-3.1.6-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/69/4a/4f9dbeb84e8850557c02365a0eee0649abe5eb1d84af92a25731c6c0f922/jsonschema-4.23.0-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/d1/0f/8910b19ac0670a0f80ce1008e5e751c4a57e14d2c4c13a482aa6079fa9d6/jsonschema_specifications-2024.10.1-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/11/85/b0394e0b6fcccd2c1eeefc230978a6f8cb0c5df1e4cd3e7625735a0d7d1e/jupyter_client-8.6.3-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/c9/fb/108ecd1fe961941959ad0ee4e12ee7b8b1477247f30b1fdfd83ceaf017f0/jupyter_core-5.7.2-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/2d/27/bdf1c769c83f74d98cbc34483a972f221440703054894a37d174fba8aa68/kiwisolver-1.4.8-cp311-cp311-win_amd64.whl
- pypi: https://files.pythonhosted.org/packages/da/b8/3a3bd761922d416f3dc5d00bfbed11f66b1ab89a0c2b6e887240a30b0f6b/MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl
- pypi: https://files.pythonhosted.org/packages/d7/68/0d03098b3feb786cbd494df0aac15b571effda7f7cbdec267e8a8d398c16/matplotlib-3.10.1-cp311-cp311-win_amd64.whl
- pypi: https://files.pythonhosted.org/packages/8f/8e/9ad090d3553c280a8060fbf6e24dc1c0c29704ee7d1c372f0c174aa59285/matplotlib_inline-0.1.7-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/34/6d/e7fa07f03a4a7b221d94b4d586edb754a9b0dc3c9e2c93353e9fa4e0d117/nbclient-0.10.2-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/a9/82/0340caa499416c78e5d8f5f05947ae4bc3cba53c9f038ab6e9ed964e22f1/nbformat-5.10.4-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/a0/c4/c2971a3ba4c6103a3d10c4b0f24f461ddc027f0f09763220cf35ca1401b3/nest_asyncio-1.6.0-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/cf/ba/d26e8278ad8a2306580bab076b6d64cd16459a60e632e6c1a9cbb68dd3d9/netCDF4-1.7.2-cp311-cp311-win_amd64.whl
- pypi: https://files.pythonhosted.org/packages/8b/72/10c1d2d82101c468a28adc35de6c77b308f288cfd0b88e1070f15b98e00c/numpy-2.2.4-cp311-cp311-win_amd64.whl
- pypi: https://files.pythonhosted.org/packages/c0/da/977ded879c29cbd04de313843e76868e6e13408a94ed6b987245dc7c8506/openpyxl-3.1.5-py2.py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/88/ef/eb23f262cca3c0c4eb7ab1933c3b1f03d021f2c48f54763065b6f0e321be/packaging-24.2-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/ed/8c/87ddf1fcb55d11f9f847e3c69bb1c6f8e46e2f40ab1a2d2abadb2401b007/pandas-2.2.3-cp311-cp311-win_amd64.whl
- pypi: https://files.pythonhosted.org/packages/61/55/83ce641bc61a70cc0721af6f50154ecaaccedfbdbc27366c1755a2a34972/papermill-2.6.0-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/c6/ac/dac4a63f978e4dcb3c6d3a78c4d8e0192a113d288502a1216950c41b1027/parso-0.8.4-py2.py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/3a/c6/fce9255272bcf0c39e15abd2f8fd8429a954cf344469eaceb9d0d1366913/pillow-11.1.0-cp311-cp311-win_amd64.whl
- pypi: https://files.pythonhosted.org/packages/15/36/38676114a0dbee137ec366daa86603d667a07e9a52667d5ebf5c580100ba/plac-1.4.5-py2.py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/6d/45/59578566b3275b8fd9157885918fcd0c4d74162928a5310926887b856a51/platformdirs-4.3.7-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/e4/ea/d836f008d33151c7a1f62caf3d8dd782e4d15f6a43897f64480c2b8de2ad/prompt_toolkit-3.0.50-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/50/1b/6921afe68c74868b4c9fa424dad3be35b095e16687989ebbb50ce4fceb7c/psutil-7.0.0-cp37-abi3-win_amd64.whl
- pypi: https://files.pythonhosted.org/packages/98/ae/3f9ef06ae55d895fd621d6e5a30eb4ad4f2f3d0fcf8c5e2dd5df5f4a1cc5/PuLP-3.0.2-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/8e/37/efad0257dc6e593a18957422533ff0f87ede7c9c6ea010a2177d738fb82f/pure_eval-0.2.3-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/ff/77/e62aebd343238863f2c9f080ad2ef6ace25c919c6ab383436b5b81cbeef7/pyarrow-19.0.1-cp311-cp311-win_amd64.whl
- pypi: https://files.pythonhosted.org/packages/8a/0b/9fcc47d19c48b59121088dd6da2488a49d5f72dacf8262e2790a1d2c7d15/pygments-2.19.1-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/1f/ce/c60f248822f4a4cc922a2766714e884a2eced5d8fc06a26ffe875ae1de09/pyocclient-0.6.tar.gz
- pypi: https://files.pythonhosted.org/packages/05/e7/df2285f3d08fee213f2d041540fa4fc9ca6c2d44cf36d3a035bf2a8d2bcc/pyparsing-3.2.3-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/5a/dc/491b7661614ab97483abf2056be1deee4dc2490ecbf7bff9ab5cdbac86e1/pyreadline3-3.5.4-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/81/c4/34e93fe5f5429d7570ec1fa436f1986fb1f00c3e0f43a589fe2bbcd22c3f/pytz-2025.2-py2.py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/b3/bd/d1592635992dd8db5bb8ace0551bc3a769de1ac8850200cfa517e72739fb/pywin32-310-cp311-cp311-win_amd64.whl
- pypi: https://files.pythonhosted.org/packages/ed/23/8da0bbe2ab9dcdd11f4f4557ccaf95c10b9811b13ecced089d43ce59c3c8/PyYAML-6.0.2-cp311-cp311-win_amd64.whl
- pypi: https://files.pythonhosted.org/packages/c3/d0/2d9abfa2571a0b1a67c0ada79a8aa1ba1cce57992d80f771abcdf99bb32c/pyzmq-26.4.0-cp311-cp311-win_amd64.whl
- pypi: https://files.pythonhosted.org/packages/c1/b1/3baf80dc6d2b7bc27a95a67752d0208e410351e3feb4eb78de5f77454d8d/referencing-0.36.2-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/f9/9b/335f9764261e915ed497fcdeb11df5dfd6f7bf257d4a6a2a686d80da4d54/requests-2.32.3-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/66/11/e295e07d4ae500144177f875a8de11daa4d86b8246ab41c76a98ce9280ca/reretry-0.11.8-py2.py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/ff/25/939b40bc4d54bf910e5ee60fb5af99262c92458f4948239e8c06b0b750e7/rpds_py-0.24.0-cp311-cp311-win_amd64.whl
- pypi: https://files.pythonhosted.org/packages/b9/8b/7ec1832b09dbc88f3db411f8cdd47db04505c4b72c99b11c920a8f0479c3/scipy-1.15.2-cp311-cp311-win_amd64.whl
- pypi: https://files.pythonhosted.org/packages/b7/ce/149a00dd41f10bc29e5921b496af8b574d8413afcd5e30dfa0ed46c2cc5e/six-1.17.0-py2.py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/7a/18/9a8d9f01957aa1f8bbc5676d54c2e33102d247e146c1a3679d3bd5cc2e3a/smart_open-7.1.0-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/04/be/d09147ad1ec7934636ad912901c5fd7667e1c858e19d355237db0d0cd5e4/smmap-5.0.2-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/44/64/6b313a72be1a7c37f5d9fe2cdce9522d0a37eb404e719adb9d057bb9c8c4/snakemake-9.1.7-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/3d/fe/c318657e6a4b8ab5b3eafa07cd1c360a732c6b37ba6085f3c82339ebbbdc/snakemake_interface_common-1.17.4-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/aa/37/7503fd074a2f1610f97105b45272531cd072bb1eadf8af6a6b25eef0db7b/snakemake_interface_executor_plugins-9.3.5-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/fa/36/3e631b82c4822569e7af783e05e0feb29d33b3bd886977b0d70183f9ed4a/snakemake_interface_logger_plugins-1.2.3-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/35/89/f5f4e48b72fca04458a2fe4f4b02e10f95fb47772b0d0ea889ac929c3b1e/snakemake_interface_report_plugins-1.1.0-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/20/91/5dab248aa54f523184d6289bbfa9ce763ef4c9556ffcd1f8c8c5b394e65c/snakemake_interface_storage_plugins-4.2.1-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/f1/7b/ce1eafaf1a76852e2ec9b22edecf1daa58175c090266e9f6c64afcd81d91/stack_data-0.6.3-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/40/44/4a5f08c96eb108af5cb50b41f76142f0afa346dfa99d5296fe7202a11854/tabulate-0.9.0-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/e5/30/643397144bfbfec6f6ef821f36f33e57d35946c44a2352d3c9f0ae847619/tenacity-9.1.2-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/df/d4/36bf6010b184286000b2334622bfb3446a40c22c1d2a9776bff025cb0fe5/throttler-1.2.2-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/61/cc/58b1adeb1bb46228442081e746fcdbc4540905c87e8add7c277540934edb/tornado-6.4.2-cp38-abi3-win_amd64.whl
- pypi: https://files.pythonhosted.org/packages/d0/30/dc54f88dd4a2b5dc8a0279bdd7270e735851848b762aeb1c1184ed1f6b14/tqdm-4.67.1-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/00/c0/8f5d070730d7836adc9c9b6408dec68c6ced86b304a9b26a14df072a6e8c/traitlets-5.14.3-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/df/c5/e7a0b0f5ed69f94c8ab7379c599e6036886bffcde609969a5325f47f1332/typing_extensions-4.13.1-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/5c/23/c7abc0ca0a1526a0774eca151daeb8de62ec457e77262b66b359c3c7679e/tzdata-2025.2-py2.py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/c8/19/4ec628951a74043532ca2cf5d97b7b14863931476d117c471e8e2b1eb39f/urllib3-2.3.0-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/fd/84/fd2ba7aafacbad3c4201d395674fc6348826569da3c0937e75505ead3528/wcwidth-0.2.13-py2.py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/47/f8/fb1773491a253cbc123c5d5dc15c86041f746ed30416535f2a8df1f4a392/wrapt-1.17.2-cp311-cp311-win_amd64.whl
- pypi: https://files.pythonhosted.org/packages/91/fd/973deafd9f87085136a58573600646b408ae7af47859f35151f0d83d5090/xarray-2025.3.1-py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/94/5d/7ee47d1b0e976b55a49d331e328038adba21e3be28b8c2cb6abd2ac713f1/XML2Dict-0.2.2.tar.gz
- pypi: https://files.pythonhosted.org/packages/d6/45/fc303eb433e8a2a271739c98e953728422fa61a3c1f36077a49e395c972e/xmltodict-0.14.2-py2.py3-none-any.whl
- pypi: https://files.pythonhosted.org/packages/77/44/b813873f367abf85c76cc16598e64c37d431609fe78357c77f293a816784/yte-1.7.0-py3-none-any.whl
packages:
- pypi: https://files.pythonhosted.org/packages/53/18/a56e2fe47b259bb52201093a3a9d4a32014f9d85071ad07e9d60600890ca/ansicolors-1.1.8-py2.py3-none-any.whl
name: ansicolors
version: 1.1.8
sha256: 00d2dde5a675579325902536738dd27e4fac1fd68f773fe36c21044eb559e187
- pypi: https://files.pythonhosted.org/packages/3b/00/2344469e2084fb287c2e0b57b72910309874c3245463acd6cf5e3db69324/appdirs-1.4.4-py2.py3-none-any.whl
name: appdirs
version: 1.4.4
sha256: a841dacd6b99318a741b166adb07e19ee71a274450e68237b4650ca1055ab128
- pypi: https://files.pythonhosted.org/packages/b3/66/e6c0a808950ba5a4042e2fcedd577fc7401536c7db063de4d7c36be06f84/argparse_dataclass-2.0.0-py3-none-any.whl
name: argparse-dataclass
version: 2.0.0
sha256: 3ffc8852a88d9d98d1364b4441a712491320afb91fb56049afd8a51d74bb52d2
requires_python: '>=3.8'
- pypi: https://files.pythonhosted.org/packages/25/8a/c46dcc25341b5bce5472c718902eb3d38600a903b14fa6aeecef3f21a46f/asttokens-3.0.0-py3-none-any.whl
name: asttokens
version: 3.0.0
sha256: e3078351a059199dd5138cb1c706e6430c05eff2ff136af5eb4790f9d28932e2
requires_dist:
- astroid>=2,<4 ; extra == 'astroid'
- astroid>=2,<4 ; extra == 'test'
- pytest ; extra == 'test'
- pytest-cov ; extra == 'test'
- pytest-xdist ; extra == 'test'
requires_python: '>=3.8'
- pypi: https://files.pythonhosted.org/packages/77/06/bb80f5f86020c4551da315d78b3ab75e8228f89f0162f2c3a819e407941a/attrs-25.3.0-py3-none-any.whl
name: attrs
version: 25.3.0
sha256: 427318ce031701fea540783410126f03899a97ffc6f61596ad581ac2e40e3bc3
requires_dist:
- cloudpickle ; platform_python_implementation == 'CPython' and extra == 'benchmark'
- hypothesis ; extra == 'benchmark'
- mypy>=1.11.1 ; python_full_version >= '3.10' and platform_python_implementation == 'CPython' and extra == 'benchmark'
- pympler ; extra == 'benchmark'
- pytest-codspeed ; extra == 'benchmark'
- pytest-mypy-plugins ; python_full_version >= '3.10' and platform_python_implementation == 'CPython' and extra == 'benchmark'
- pytest-xdist[psutil] ; extra == 'benchmark'
- pytest>=4.3.0 ; extra == 'benchmark'
- cloudpickle ; platform_python_implementation == 'CPython' and extra == 'cov'
- coverage[toml]>=5.3 ; extra == 'cov'
- hypothesis ; extra == 'cov'
- mypy>=1.11.1 ; python_full_version >= '3.10' and platform_python_implementation == 'CPython' and extra == 'cov'
- pympler ; extra == 'cov'
- pytest-mypy-plugins ; python_full_version >= '3.10' and platform_python_implementation == 'CPython' and extra == 'cov'
- pytest-xdist[psutil] ; extra == 'cov'
- pytest>=4.3.0 ; extra == 'cov'
- cloudpickle ; platform_python_implementation == 'CPython' and extra == 'dev'
- hypothesis ; extra == 'dev'
- mypy>=1.11.1 ; python_full_version >= '3.10' and platform_python_implementation == 'CPython' and extra == 'dev'
- pre-commit-uv ; extra == 'dev'
- pympler ; extra == 'dev'
- pytest-mypy-plugins ; python_full_version >= '3.10' and platform_python_implementation == 'CPython' and extra == 'dev'
- pytest-xdist[psutil] ; extra == 'dev'
- pytest>=4.3.0 ; extra == 'dev'
- cogapp ; extra == 'docs'
- furo ; extra == 'docs'
- myst-parser ; extra == 'docs'
- sphinx ; extra == 'docs'
- sphinx-notfound-page ; extra == 'docs'
- sphinxcontrib-towncrier ; extra == 'docs'
- towncrier ; extra == 'docs'
- cloudpickle ; platform_python_implementation == 'CPython' and extra == 'tests'
- hypothesis ; extra == 'tests'
- mypy>=1.11.1 ; python_full_version >= '3.10' and platform_python_implementation == 'CPython' and extra == 'tests'
- pympler ; extra == 'tests'
- pytest-mypy-plugins ; python_full_version >= '3.10' and platform_python_implementation == 'CPython' and extra == 'tests'
- pytest-xdist[psutil] ; extra == 'tests'
- pytest>=4.3.0 ; extra == 'tests'
- mypy>=1.11.1 ; python_full_version >= '3.10' and platform_python_implementation == 'CPython' and extra == 'tests-mypy'
- pytest-mypy-plugins ; python_full_version >= '3.10' and platform_python_implementation == 'CPython' and extra == 'tests-mypy'
requires_python: '>=3.8'
- conda: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-h2466b09_7.conda
sha256: 35a5dad92e88fdd7fc405e864ec239486f4f31eec229e31686e61a140a8e573b
md5: 276e7ffe9ffe39688abc665ef0f45596
depends:
- ucrt >=10.0.20348.0
- vc >=14.2,<15
- vc14_runtime >=14.29.30139
license: bzip2-1.0.6
license_family: BSD
purls: []
size: 54927
timestamp: 1720974860185
- conda: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2025.1.31-h56e8100_0.conda
sha256: 1bedccdf25a3bd782d6b0e57ddd97cdcda5501716009f2de4479a779221df155
md5: 5304a31607974dfc2110dfbb662ed092
license: ISC
purls: []
size: 158690
timestamp: 1738298232550
- pypi: https://files.pythonhosted.org/packages/38/fc/bce832fd4fd99766c04d1ee0eead6b0ec6486fb100ae5e74c1d91292b982/certifi-2025.1.31-py3-none-any.whl
name: certifi
version: 2025.1.31
sha256: ca78db4565a652026a4db2bcdf68f2fb589ea80d0be70e03929ed730746b84fe
requires_python: '>=3.6'
- pypi: https://files.pythonhosted.org/packages/79/b1/6551603f8ea31de55913c84e4def3c36670563bdea6e195fcc4b6225ddf7/cftime-1.6.4.post1-cp311-cp311-win_amd64.whl
name: cftime
version: 1.6.4.post1
sha256: 5dcfc872f455db1f12eabe3c3ba98e93757cd60ed3526a53246e966ccde46c8a
requires_dist:
- numpy>1.13.3 ; python_full_version < '3.12'
- numpy>=1.26.0b1 ; python_full_version >= '3.12'
requires_python: '>=3.8'
- pypi: https://files.pythonhosted.org/packages/1e/ab/45b180e175de4402dcf7547e4fb617283bae54ce35c27930a6f35b6bef15/charset_normalizer-3.4.1-cp311-cp311-win_amd64.whl
name: charset-normalizer
version: 3.4.1
sha256: d7f50a1f8c450f3925cb367d011448c39239bb3eb4117c36a6d354794de4ce76
requires_python: '>=3.7'
- pypi: https://files.pythonhosted.org/packages/7e/d4/7ebdbd03970677812aac39c869717059dbb71a4cfc033ca6e5221787892c/click-8.1.8-py3-none-any.whl
name: click
version: 8.1.8
sha256: 63c132bbbed01578a06712a2d1f497bb62d9c1c0d329b7903a866228027263b2
requires_dist:
- colorama ; platform_system == 'Windows'
- importlib-metadata ; python_full_version < '3.8'
requires_python: '>=3.7'
- pypi: https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl
name: colorama
version: 0.4.6
sha256: 4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6
requires_python: '>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*'
- pypi: https://files.pythonhosted.org/packages/e6/75/49e5bfe642f71f272236b5b2d2691cf915a7283cc0ceda56357b61daa538/comm-0.2.2-py3-none-any.whl
name: comm
version: 0.2.2
sha256: e6fb86cb70ff661ee8c9c14e7d36d6de3b4066f1441be4063df9c5009f0a64d3
requires_dist:
- traitlets>=4
- pytest ; extra == 'test'
requires_python: '>=3.8'
- pypi: https://files.pythonhosted.org/packages/87/4c/fc30b69fb4062aee57e3ab7ff493647c4220144908f0839c619f912045bf/conda_inject-1.3.2-py3-none-any.whl
name: conda-inject
version: 1.3.2
sha256: 6e641b408980c2814e3e527008c30749117909a21ff47392f07ef807da93a564
requires_dist:
- pyyaml>=6.0,<7.0
requires_python: '>=3.9,<4.0'
- pypi: https://files.pythonhosted.org/packages/6f/b3/b4ac838711fd74a2b4e6f746703cf9dd2cf5462d17dac07e349234e21b97/ConfigArgParse-1.7-py3-none-any.whl
name: configargparse
version: '1.7'
sha256: d249da6591465c6c26df64a9f73d2536e743be2f244eb3ebe61114af2f94f86b
requires_dist:
- mock ; extra == 'test'
- pyyaml ; extra == 'test'
- pytest ; extra == 'test'
- pyyaml ; extra == 'yaml'
requires_python: '>=3.5'
- pypi: https://files.pythonhosted.org/packages/bd/df/c9b4e25dce00f6349fd28aadba7b6c3f7431cc8bd4308a158fbe57b6a22e/connection_pool-0.0.3.tar.gz
name: connection-pool
version: 0.0.3
sha256: bf429e7aef65921c69b4ed48f3d48d3eac1383b05d2df91884705842d974d0dc
- pypi: https://files.pythonhosted.org/packages/a8/7e/cd93cab453720a5d6cb75588cc17dcdc08fc3484b9de98b885924ff61900/contourpy-1.3.1-cp311-cp311-win_amd64.whl
name: contourpy
version: 1.3.1
sha256: b2bdca22a27e35f16794cf585832e542123296b4687f9fd96822db6bae17bfc9
requires_dist:
- numpy>=1.23
- furo ; extra == 'docs'
- sphinx>=7.2 ; extra == 'docs'
- sphinx-copybutton ; extra == 'docs'
- bokeh ; extra == 'bokeh'
- selenium ; extra == 'bokeh'
- contourpy[bokeh,docs] ; extra == 'mypy'
- docutils-stubs ; extra == 'mypy'
- mypy==1.11.1 ; extra == 'mypy'
- types-pillow ; extra == 'mypy'
- contourpy[test-no-images] ; extra == 'test'
- matplotlib ; extra == 'test'
- pillow ; extra == 'test'
- pytest ; extra == 'test-no-images'
- pytest-cov ; extra == 'test-no-images'
- pytest-rerunfailures ; extra == 'test-no-images'
- pytest-xdist ; extra == 'test-no-images'
- wurlitzer ; extra == 'test-no-images'
requires_python: '>=3.10'
- pypi: https://files.pythonhosted.org/packages/e7/05/c19819d5e3d95294a6f5947fb9b9629efb316b96de511b418c53d245aae6/cycler-0.12.1-py3-none-any.whl
name: cycler
version: 0.12.1
sha256: 85cef7cff222d8644161529808465972e51340599459b8ac3ccbac5a854e0d30
requires_dist:
- ipython ; extra == 'docs'
- matplotlib ; extra == 'docs'
- numpydoc ; extra == 'docs'
- sphinx ; extra == 'docs'
- pytest ; extra == 'tests'
- pytest-cov ; extra == 'tests'
- pytest-xdist ; extra == 'tests'
requires_python: '>=3.8'
- pypi: https://files.pythonhosted.org/packages/cd/d5/3684d7561c8ba2797305cf8259619acccb8d6ebe2117bb33a6897c235eee/debugpy-1.8.13-cp311-cp311-win_amd64.whl
name: debugpy
version: 1.8.13
sha256: 62f9b4a861c256f37e163ada8cf5a81f4c8d5148fc17ee31fb46813bd658cdcc
requires_python: '>=3.8'
- pypi: https://files.pythonhosted.org/packages/4e/8c/f3147f5c4b73e7550fe5f9352eaa956ae838d5c51eb58e7a25b9f3e2643b/decorator-5.2.1-py3-none-any.whl
name: decorator
version: 5.2.1
sha256: d316bb415a2d9e2d2b3abcc4084c6502fc09240e292cd76a76afc106a1c8e04a
requires_python: '>=3.8'
- pypi: https://files.pythonhosted.org/packages/8f/d7/9322c609343d929e75e7e5e6255e614fcc67572cfd083959cdef3b7aad79/docutils-0.21.2-py3-none-any.whl
name: docutils
version: 0.21.2
sha256: dafca5b9e384f0e419294eb4d2ff9fa826435bf15f15b7bd45723e8ad76811b2
requires_python: '>=3.9'
- pypi: https://files.pythonhosted.org/packages/05/d1/8952806fbf9583004ab479d8f58a9496c3d35f6b6009ddd458bdd9978eaf/dpath-2.2.0-py3-none-any.whl
name: dpath
version: 2.2.0
sha256: b330a375ded0a0d2ed404440f6c6a715deae5313af40bbb01c8a41d891900576
requires_python: '>=3.7'
- pypi: https://files.pythonhosted.org/packages/35/a8/365059bbcd4572cbc41de17fd5b682be5868b218c3c5479071865cab9078/entrypoints-0.4-py3-none-any.whl
name: entrypoints
version: '0.4'
sha256: f174b5ff827504fd3cd97cc3f8649f3693f51538c7e4bdf3ef002c8429d42f9f
requires_python: '>=3.6'
- pypi: https://files.pythonhosted.org/packages/c1/8b/5fe2cc11fee489817272089c4203e679c63b570a5aaeb18d852ae3cbba6a/et_xmlfile-2.0.0-py3-none-any.whl
name: et-xmlfile
version: 2.0.0
sha256: 7a91720bc756843502c3b7504c77b8fe44217c85c537d85037f0f536151b2caa
requires_python: '>=3.8'
- pypi: https://files.pythonhosted.org/packages/7b/8f/c4d9bafc34ad7ad5d8dc16dd1347ee0e507a52c3adb6bfa8887e1c6a26ba/executing-2.2.0-py2.py3-none-any.whl
name: executing
version: 2.2.0
sha256: 11387150cad388d62750327a53d3339fad4888b39a6fe233c3afbb54ecffd3aa
requires_dist:
- asttokens>=2.1.0 ; extra == 'tests'
- ipython ; extra == 'tests'
- pytest ; extra == 'tests'
- coverage ; extra == 'tests'
- coverage-enable-subprocess ; extra == 'tests'
- littleutils ; extra == 'tests'
- rich ; python_full_version >= '3.11' and extra == 'tests'
requires_python: '>=3.8'
- pypi: https://files.pythonhosted.org/packages/90/2b/0817a2b257fe88725c25589d89aec060581aabf668707a8d03b2e9e0cb2a/fastjsonschema-2.21.1-py3-none-any.whl
name: fastjsonschema
version: 2.21.1
sha256: c9e5b7e908310918cf494a434eeb31384dd84a98b57a30bcb1f535015b554667
requires_dist:
- colorama ; extra == 'devel'
- jsonschema ; extra == 'devel'
- json-spec ; extra == 'devel'
- pylint ; extra == 'devel'
- pytest ; extra == 'devel'
- pytest-benchmark ; extra == 'devel'
- pytest-cache ; extra == 'devel'
- validictory ; extra == 'devel'
- pypi: https://files.pythonhosted.org/packages/13/4c/de2612ea2216eb45cfc8eb91a8501615dd87716feaf5f8fb65cbca576289/fonttools-4.57.0-cp311-cp311-win_amd64.whl
name: fonttools
version: 4.57.0
sha256: 17168a4670bbe3775f3f3f72d23ee786bd965395381dfbb70111e25e81505b9d
requires_dist:
- fs>=2.2.0,<3 ; extra == 'ufo'
- lxml>=4.0 ; extra == 'lxml'
- brotli>=1.0.1 ; platform_python_implementation == 'CPython' and extra == 'woff'
- brotlicffi>=0.8.0 ; platform_python_implementation != 'CPython' and extra == 'woff'
- zopfli>=0.1.4 ; extra == 'woff'
- unicodedata2>=15.1.0 ; python_full_version < '3.13' and extra == 'unicode'
- lz4>=1.7.4.2 ; extra == 'graphite'
- scipy ; platform_python_implementation != 'PyPy' and extra == 'interpolatable'
- munkres ; platform_python_implementation == 'PyPy' and extra == 'interpolatable'
- pycairo ; extra == 'interpolatable'
- matplotlib ; extra == 'plot'
- sympy ; extra == 'symfont'
- xattr ; sys_platform == 'darwin' and extra == 'type1'
- skia-pathops>=0.5.0 ; extra == 'pathops'
- uharfbuzz>=0.23.0 ; extra == 'repacker'
- fs>=2.2.0,<3 ; extra == 'all'
- lxml>=4.0 ; extra == 'all'
- brotli>=1.0.1 ; platform_python_implementation == 'CPython' and extra == 'all'
- brotlicffi>=0.8.0 ; platform_python_implementation != 'CPython' and extra == 'all'
- zopfli>=0.1.4 ; extra == 'all'
- unicodedata2>=15.1.0 ; python_full_version < '3.13' and extra == 'all'
- lz4>=1.7.4.2 ; extra == 'all'
- scipy ; platform_python_implementation != 'PyPy' and extra == 'all'
- munkres ; platform_python_implementation == 'PyPy' and extra == 'all'
- pycairo ; extra == 'all'
- matplotlib ; extra == 'all'
- sympy ; extra == 'all'
- xattr ; sys_platform == 'darwin' and extra == 'all'
- skia-pathops>=0.5.0 ; extra == 'all'
- uharfbuzz>=0.23.0 ; extra == 'all'
requires_python: '>=3.8'
- pypi: https://files.pythonhosted.org/packages/a0/61/5c78b91c3143ed5c14207f463aecfc8f9dbb5092fb2869baf37c273b2705/gitdb-4.0.12-py3-none-any.whl
name: gitdb
version: 4.0.12
sha256: 67073e15955400952c6565cc3e707c554a4eea2e428946f7a4c162fab9bd9bcf
requires_dist:
- smmap>=3.0.1,<6
requires_python: '>=3.7'
- pypi: https://files.pythonhosted.org/packages/1d/9a/4114a9057db2f1462d5c8f8390ab7383925fe1ac012eaa42402ad65c2963/GitPython-3.1.44-py3-none-any.whl
name: gitpython
version: 3.1.44
sha256: 9e0e10cda9bed1ee64bc9a6de50e7e38a9c9943241cd7f585f6df3ed28011110
requires_dist:
- gitdb>=4.0.1,<5
- typing-extensions>=3.7.4.3 ; python_full_version < '3.8'
- coverage[toml] ; extra == 'test'
- ddt>=1.1.1,!=1.4.3 ; extra == 'test'
- mock ; python_full_version < '3.8' and extra == 'test'
- mypy ; extra == 'test'
- pre-commit ; extra == 'test'
- pytest>=7.3.1 ; extra == 'test'
- pytest-cov ; extra == 'test'
- pytest-instafail ; extra == 'test'
- pytest-mock ; extra == 'test'
- pytest-sugar ; extra == 'test'
- typing-extensions ; python_full_version < '3.11' and extra == 'test'
- sphinx>=7.1.2,<7.2 ; extra == 'doc'
- sphinx-rtd-theme ; extra == 'doc'
- sphinx-autodoc-typehints ; extra == 'doc'
requires_python: '>=3.7'
- pypi: https://files.pythonhosted.org/packages/56/89/e3ff23e07131ff73a72a349be9639e4de84e163af89c1c218b939459a98a/h5py-3.13.0-cp311-cp311-win_amd64.whl
name: h5py
version: 3.13.0
sha256: 22ffe2a25770a2d67213a1b94f58006c14dce06933a42d2aaa0318c5868d1508
requires_dist:
- numpy>=1.19.3
requires_python: '>=3.9'
- pypi: https://files.pythonhosted.org/packages/f0/0f/310fb31e39e2d734ccaa2c0fb981ee41f7bd5056ce9bc29b2248bd569169/humanfriendly-10.0-py2.py3-none-any.whl
name: humanfriendly
version: '10.0'
sha256: 1697e1a8a8f550fd43c2865cd84542fc175a61dcb779b6fee18cf6b6ccba1477
requires_dist:
- monotonic ; python_full_version == '2.7.*'
- pyreadline ; python_full_version < '3.8' and sys_platform == 'win32'
- pyreadline3 ; python_full_version >= '3.8' and sys_platform == 'win32'
requires_python: '>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*'
- pypi: https://files.pythonhosted.org/packages/76/c6/c88e154df9c4e1a2a66ccf0005a88dfb2650c1dffb6f5ce603dfbd452ce3/idna-3.10-py3-none-any.whl
name: idna
version: '3.10'
sha256: 946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3
requires_dist:
- ruff>=0.6.2 ; extra == 'all'
- mypy>=1.11.2 ; extra == 'all'
- pytest>=8.3.2 ; extra == 'all'
- flake8>=7.1.1 ; extra == 'all'
requires_python: '>=3.6'
- pypi: https://files.pythonhosted.org/packages/1f/20/999ecf398412c9ad174da083c6ffea56d027ef62cf892f695b43210c4721/immutables-0.21-cp311-cp311-win_amd64.whl
name: immutables
version: '0.21'
sha256: dd00c34f431c54c95e7b84bfdbdeacb4f039a6a24eb0c1f7aa4b168bb9a6ad0a
requires_dist:
- flake8~=5.0 ; extra == 'test'
- pycodestyle~=2.9 ; extra == 'test'
- mypy~=1.4 ; extra == 'test'
- pytest~=7.4 ; extra == 'test'
requires_python: '>=3.8.0'
- pypi: https://files.pythonhosted.org/packages/94/5c/368ae6c01c7628438358e6d337c19b05425727fbb221d2a3c4303c372f42/ipykernel-6.29.5-py3-none-any.whl
name: ipykernel
version: 6.29.5
sha256: afdb66ba5aa354b09b91379bac28ae4afebbb30e8b39510c9690afb7a10421b5
requires_dist:
- appnope ; platform_system == 'Darwin'
- comm>=0.1.1
- debugpy>=1.6.5
- ipython>=7.23.1
- jupyter-client>=6.1.12
- jupyter-core>=4.12,!=5.0.*
- matplotlib-inline>=0.1
- nest-asyncio
- packaging
- psutil
- pyzmq>=24
- tornado>=6.1
- traitlets>=5.4.0
- coverage[toml] ; extra == 'cov'
- curio ; extra == 'cov'
- matplotlib ; extra == 'cov'
- pytest-cov ; extra == 'cov'
- trio ; extra == 'cov'
- myst-parser ; extra == 'docs'
- pydata-sphinx-theme ; extra == 'docs'
- sphinx ; extra == 'docs'
- sphinx-autodoc-typehints ; extra == 'docs'
- sphinxcontrib-github-alt ; extra == 'docs'
- sphinxcontrib-spelling ; extra == 'docs'
- trio ; extra == 'docs'
- pyqt5 ; extra == 'pyqt5'
- pyside6 ; extra == 'pyside6'
- flaky ; extra == 'test'
- ipyparallel ; extra == 'test'
- pre-commit ; extra == 'test'
- pytest-asyncio>=0.23.5 ; extra == 'test'
- pytest-cov ; extra == 'test'
- pytest-timeout ; extra == 'test'
- pytest>=7.0 ; extra == 'test'
requires_python: '>=3.8'
- pypi: https://files.pythonhosted.org/packages/20/3a/917cb9e72f4e1a4ea13c862533205ae1319bd664119189ee5cc9e4e95ebf/ipython-9.0.2-py3-none-any.whl
name: ipython
version: 9.0.2
sha256: 143ef3ea6fb1e1bffb4c74b114051de653ffb7737a3f7ab1670e657ca6ae8c44
requires_dist:
- colorama ; sys_platform == 'win32'
- decorator
- ipython-pygments-lexers
- jedi>=0.16
- matplotlib-inline
- pexpect>4.3 ; sys_platform != 'emscripten' and sys_platform != 'win32'
- prompt-toolkit>=3.0.41,<3.1.0
- pygments>=2.4.0
- stack-data
- traitlets>=5.13.0
- typing-extensions>=4.6 ; python_full_version < '3.12'
- black ; extra == 'black'
- docrepr ; extra == 'doc'
- exceptiongroup ; extra == 'doc'
- intersphinx-registry ; extra == 'doc'
- ipykernel ; extra == 'doc'
- ipython[test] ; extra == 'doc'
- matplotlib ; extra == 'doc'
- setuptools>=18.5 ; extra == 'doc'
- sphinx-toml==0.0.4 ; extra == 'doc'
- sphinx-rtd-theme ; extra == 'doc'
- sphinx>=1.3 ; extra == 'doc'
- typing-extensions ; extra == 'doc'
- pytest ; extra == 'test'
- pytest-asyncio<0.22 ; extra == 'test'
- testpath ; extra == 'test'
- packaging ; extra == 'test'
- ipython[test] ; extra == 'test-extra'
- curio ; extra == 'test-extra'
- matplotlib!=3.2.0 ; extra == 'test-extra'
- nbformat ; extra == 'test-extra'
- numpy>=1.23 ; extra == 'test-extra'
- pandas ; extra == 'test-extra'
- trio ; extra == 'test-extra'
- matplotlib ; extra == 'matplotlib'
- ipython[doc,matplotlib,test,test-extra] ; extra == 'all'
requires_python: '>=3.11'
- pypi: https://files.pythonhosted.org/packages/d9/33/1f075bf72b0b747cb3288d011319aaf64083cf2efef8354174e3ed4540e2/ipython_pygments_lexers-1.1.1-py3-none-any.whl
name: ipython-pygments-lexers
version: 1.1.1
sha256: a9462224a505ade19a605f71f8fa63c2048833ce50abc86768a0d81d876dc81c
requires_dist:
- pygments
requires_python: '>=3.8'
- pypi: https://files.pythonhosted.org/packages/c0/5a/9cac0c82afec3d09ccd97c8b6502d48f165f9124db81b4bcb90b4af974ee/jedi-0.19.2-py2.py3-none-any.whl
name: jedi
version: 0.19.2
sha256: a8ef22bde8490f57fe5c7681a3c83cb58874daf72b4784de3cce5b6ef6edb5b9
requires_dist:
- parso>=0.8.4,<0.9.0
- jinja2==2.11.3 ; extra == 'docs'
- markupsafe==1.1.1 ; extra == 'docs'
- pygments==2.8.1 ; extra == 'docs'
- alabaster==0.7.12 ; extra == 'docs'
- babel==2.9.1 ; extra == 'docs'
- chardet==4.0.0 ; extra == 'docs'
- commonmark==0.8.1 ; extra == 'docs'
- docutils==0.17.1 ; extra == 'docs'
- future==0.18.2 ; extra == 'docs'
- idna==2.10 ; extra == 'docs'
- imagesize==1.2.0 ; extra == 'docs'
- mock==1.0.1 ; extra == 'docs'
- packaging==20.9 ; extra == 'docs'
- pyparsing==2.4.7 ; extra == 'docs'
- pytz==2021.1 ; extra == 'docs'
- readthedocs-sphinx-ext==2.1.4 ; extra == 'docs'
- recommonmark==0.5.0 ; extra == 'docs'
- requests==2.25.1 ; extra == 'docs'
- six==1.15.0 ; extra == 'docs'
- snowballstemmer==2.1.0 ; extra == 'docs'
- sphinx-rtd-theme==0.4.3 ; extra == 'docs'
- sphinx==1.8.5 ; extra == 'docs'
- sphinxcontrib-serializinghtml==1.1.4 ; extra == 'docs'
- sphinxcontrib-websupport==1.2.4 ; extra == 'docs'
- urllib3==1.26.4 ; extra == 'docs'
- flake8==5.0.4 ; extra == 'qa'
- mypy==0.971 ; extra == 'qa'
- types-setuptools==67.2.0.1 ; extra == 'qa'
- django ; extra == 'testing'
- attrs ; extra == 'testing'
- colorama ; extra == 'testing'
- docopt ; extra == 'testing'
- pytest<9.0.0 ; extra == 'testing'
requires_python: '>=3.6'
- pypi: https://files.pythonhosted.org/packages/62/a1/3d680cbfd5f4b8f15abc1d571870c5fc3e594bb582bc3b64ea099db13e56/jinja2-3.1.6-py3-none-any.whl
name: jinja2
version: 3.1.6
sha256: 85ece4451f492d0c13c5dd7c13a64681a86afae63a5f347908daf103ce6d2f67
requires_dist:
- markupsafe>=2.0
- babel>=2.7 ; extra == 'i18n'
requires_python: '>=3.7'
- pypi: https://files.pythonhosted.org/packages/69/4a/4f9dbeb84e8850557c02365a0eee0649abe5eb1d84af92a25731c6c0f922/jsonschema-4.23.0-py3-none-any.whl
name: jsonschema
version: 4.23.0
sha256: fbadb6f8b144a8f8cf9f0b89ba94501d143e50411a1278633f56a7acf7fd5566
requires_dist:
- attrs>=22.2.0
- importlib-resources>=1.4.0 ; python_full_version < '3.9'
- jsonschema-specifications>=2023.3.6
- pkgutil-resolve-name>=1.3.10 ; python_full_version < '3.9'
- referencing>=0.28.4
- rpds-py>=0.7.1
- fqdn ; extra == 'format'
- idna ; extra == 'format'
- isoduration ; extra == 'format'
- jsonpointer>1.13 ; extra == 'format'
- rfc3339-validator ; extra == 'format'
- rfc3987 ; extra == 'format'
- uri-template ; extra == 'format'
- webcolors>=1.11 ; extra == 'format'
- fqdn ; extra == 'format-nongpl'
- idna ; extra == 'format-nongpl'
- isoduration ; extra == 'format-nongpl'
- jsonpointer>1.13 ; extra == 'format-nongpl'
- rfc3339-validator ; extra == 'format-nongpl'
- rfc3986-validator>0.1.0 ; extra == 'format-nongpl'
- uri-template ; extra == 'format-nongpl'
- webcolors>=24.6.0 ; extra == 'format-nongpl'
requires_python: '>=3.8'
- pypi: https://files.pythonhosted.org/packages/d1/0f/8910b19ac0670a0f80ce1008e5e751c4a57e14d2c4c13a482aa6079fa9d6/jsonschema_specifications-2024.10.1-py3-none-any.whl
name: jsonschema-specifications
version: 2024.10.1
sha256: a09a0680616357d9a0ecf05c12ad234479f549239d0f5b55f3deea67475da9bf
requires_dist:
- referencing>=0.31.0
requires_python: '>=3.9'
- pypi: https://files.pythonhosted.org/packages/11/85/b0394e0b6fcccd2c1eeefc230978a6f8cb0c5df1e4cd3e7625735a0d7d1e/jupyter_client-8.6.3-py3-none-any.whl
name: jupyter-client
version: 8.6.3
sha256: e8a19cc986cc45905ac3362915f410f3af85424b4c0905e94fa5f2cb08e8f23f
requires_dist:
- importlib-metadata>=4.8.3 ; python_full_version < '3.10'
- jupyter-core>=4.12,!=5.0.*
- python-dateutil>=2.8.2
- pyzmq>=23.0
- tornado>=6.2
- traitlets>=5.3
- ipykernel ; extra == 'docs'
- myst-parser ; extra == 'docs'
- pydata-sphinx-theme ; extra == 'docs'
- sphinx-autodoc-typehints ; extra == 'docs'
- sphinx>=4 ; extra == 'docs'
- sphinxcontrib-github-alt ; extra == 'docs'
- sphinxcontrib-spelling ; extra == 'docs'
- coverage ; extra == 'test'
- ipykernel>=6.14 ; extra == 'test'
- mypy ; extra == 'test'
- paramiko ; sys_platform == 'win32' and extra == 'test'
- pre-commit ; extra == 'test'
- pytest-cov ; extra == 'test'
- pytest-jupyter[client]>=0.4.1 ; extra == 'test'
- pytest-timeout ; extra == 'test'
- pytest<8.2.0 ; extra == 'test'
requires_python: '>=3.8'
- pypi: https://files.pythonhosted.org/packages/c9/fb/108ecd1fe961941959ad0ee4e12ee7b8b1477247f30b1fdfd83ceaf017f0/jupyter_core-5.7.2-py3-none-any.whl
name: jupyter-core
version: 5.7.2
sha256: 4f7315d2f6b4bcf2e3e7cb6e46772eba760ae459cd1f59d29eb57b0a01bd7409
requires_dist:
- platformdirs>=2.5
- pywin32>=300 ; platform_python_implementation != 'PyPy' and sys_platform == 'win32'
- traitlets>=5.3
- myst-parser ; extra == 'docs'
- pydata-sphinx-theme ; extra == 'docs'
- sphinx-autodoc-typehints ; extra == 'docs'
- sphinxcontrib-github-alt ; extra == 'docs'
- sphinxcontrib-spelling ; extra == 'docs'
- traitlets ; extra == 'docs'
- ipykernel ; extra == 'test'
- pre-commit ; extra == 'test'
- pytest-cov ; extra == 'test'
- pytest-timeout ; extra == 'test'
- pytest<8 ; extra == 'test'
requires_python: '>=3.8'
- pypi: https://files.pythonhosted.org/packages/2d/27/bdf1c769c83f74d98cbc34483a972f221440703054894a37d174fba8aa68/kiwisolver-1.4.8-cp311-cp311-win_amd64.whl
name: kiwisolver
version: 1.4.8
sha256: ed33ca2002a779a2e20eeb06aea7721b6e47f2d4b8a8ece979d8ba9e2a167e34
requires_python: '>=3.10'
- conda: https://conda.anaconda.org/conda-forge/win-64/libexpat-2.7.0-he0c23c2_0.conda
sha256: 1a227c094a4e06bd54e8c2f3ec40c17ff99dcf3037d812294f842210aa66dbeb
md5: b6f5352fdb525662f4169a0431d2dd7a
depends:
- ucrt >=10.0.20348.0
- vc >=14.2,<15
- vc14_runtime >=14.29.30139
constrains:
- expat 2.7.0.*
license: MIT
license_family: MIT
purls: []
size: 140896
timestamp: 1743432122520
- conda: https://conda.anaconda.org/conda-forge/win-64/libffi-3.4.6-h537db12_1.conda
sha256: d3b0b8812eab553d3464bbd68204f007f1ebadf96ce30eb0cbc5159f72e353f5
md5: 85d8fa5e55ed8f93f874b3b23ed54ec6
depends:
- ucrt >=10.0.20348.0
- vc >=14.2,<15
- vc14_runtime >=14.29.30139
license: MIT
license_family: MIT
purls: []
size: 44978
timestamp: 1743435053850
- conda: https://conda.anaconda.org/conda-forge/win-64/liblzma-5.8.1-h2466b09_0.conda
sha256: 1477e9bff05318f3129d37be0e64c76cce0973c4b8c73d13a467d0b7f03d157c
md5: 8d5cb0016b645d6688e2ff57c5d51302
depends:
- ucrt >=10.0.20348.0
- vc >=14.2,<15
- vc14_runtime >=14.29.30139
license: 0BSD
purls: []
size: 104682
timestamp: 1743771561515
- conda: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.49.1-h67fdade_2.conda
sha256: c092d42d00fd85cf609cc58574ba2b03c141af5762283f36f5dd445ef7c0f4fe
md5: b58b66d4ad1aaf1c2543cbbd6afb1a59
depends:
- ucrt >=10.0.20348.0
- vc >=14.2,<15
- vc14_runtime >=14.29.30139
license: Unlicense
purls: []
size: 1081292
timestamp: 1742083956001
- conda: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.3.1-h2466b09_2.conda
sha256: ba945c6493449bed0e6e29883c4943817f7c79cbff52b83360f7b341277c6402
md5: 41fbfac52c601159df6c01f875de31b9
depends:
- ucrt >=10.0.20348.0
- vc >=14.2,<15
- vc14_runtime >=14.29.30139
constrains:
- zlib 1.3.1 *_2
license: Zlib
license_family: Other
purls: []
size: 55476
timestamp: 1727963768015
- pypi: https://files.pythonhosted.org/packages/da/b8/3a3bd761922d416f3dc5d00bfbed11f66b1ab89a0c2b6e887240a30b0f6b/MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl
name: markupsafe
version: 3.0.2
sha256: 70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b
requires_python: '>=3.9'
- pypi: https://files.pythonhosted.org/packages/d7/68/0d03098b3feb786cbd494df0aac15b571effda7f7cbdec267e8a8d398c16/matplotlib-3.10.1-cp311-cp311-win_amd64.whl
name: matplotlib
version: 3.10.1
sha256: 11b65088c6f3dae784bc72e8d039a2580186285f87448babb9ddb2ad0082993a
requires_dist:
- contourpy>=1.0.1
- cycler>=0.10
- fonttools>=4.22.0
- kiwisolver>=1.3.1
- numpy>=1.23
- packaging>=20.0
- pillow>=8
- pyparsing>=2.3.1
- python-dateutil>=2.7
- meson-python>=0.13.1,<0.17.0 ; extra == 'dev'
- pybind11>=2.13.2,!=2.13.3 ; extra == 'dev'
- setuptools-scm>=7 ; extra == 'dev'
- setuptools>=64 ; extra == 'dev'
requires_python: '>=3.10'
- pypi: https://files.pythonhosted.org/packages/8f/8e/9ad090d3553c280a8060fbf6e24dc1c0c29704ee7d1c372f0c174aa59285/matplotlib_inline-0.1.7-py3-none-any.whl
name: matplotlib-inline
version: 0.1.7
sha256: df192d39a4ff8f21b1895d72e6a13f5fcc5099f00fa84384e0ea28c2cc0653ca
requires_dist:
- traitlets
requires_python: '>=3.8'
- pypi: https://files.pythonhosted.org/packages/34/6d/e7fa07f03a4a7b221d94b4d586edb754a9b0dc3c9e2c93353e9fa4e0d117/nbclient-0.10.2-py3-none-any.whl
name: nbclient
version: 0.10.2
sha256: 4ffee11e788b4a27fabeb7955547e4318a5298f34342a4bfd01f2e1faaeadc3d
requires_dist:
- jupyter-client>=6.1.12
- jupyter-core>=4.12,!=5.0.*
- nbformat>=5.1
- traitlets>=5.4
- pre-commit ; extra == 'dev'
- autodoc-traits ; extra == 'docs'
- flaky ; extra == 'docs'
- ipykernel>=6.19.3 ; extra == 'docs'
- ipython ; extra == 'docs'
- ipywidgets ; extra == 'docs'
- mock ; extra == 'docs'
- moto ; extra == 'docs'
- myst-parser ; extra == 'docs'
- nbconvert>=7.1.0 ; extra == 'docs'
- pytest-asyncio ; extra == 'docs'
- pytest-cov>=4.0 ; extra == 'docs'
- pytest>=7.0,<8 ; extra == 'docs'
- sphinx-book-theme ; extra == 'docs'
- sphinx>=1.7 ; extra == 'docs'
- sphinxcontrib-spelling ; extra == 'docs'
- testpath ; extra == 'docs'
- xmltodict ; extra == 'docs'
- flaky ; extra == 'test'
- ipykernel>=6.19.3 ; extra == 'test'
- ipython ; extra == 'test'
- ipywidgets ; extra == 'test'
- nbconvert>=7.1.0 ; extra == 'test'
- pytest-asyncio ; extra == 'test'
- pytest-cov>=4.0 ; extra == 'test'
- pytest>=7.0,<8 ; extra == 'test'
- testpath ; extra == 'test'
- xmltodict ; extra == 'test'
requires_python: '>=3.9.0'
- pypi: https://files.pythonhosted.org/packages/a9/82/0340caa499416c78e5d8f5f05947ae4bc3cba53c9f038ab6e9ed964e22f1/nbformat-5.10.4-py3-none-any.whl
name: nbformat
version: 5.10.4
sha256: 3b48d6c8fbca4b299bf3982ea7db1af21580e4fec269ad087b9e81588891200b
requires_dist:
- fastjsonschema>=2.15
- jsonschema>=2.6
- jupyter-core>=4.12,!=5.0.*
- traitlets>=5.1
- myst-parser ; extra == 'docs'
- pydata-sphinx-theme ; extra == 'docs'
- sphinx ; extra == 'docs'
- sphinxcontrib-github-alt ; extra == 'docs'
- sphinxcontrib-spelling ; extra == 'docs'
- pep440 ; extra == 'test'
- pre-commit ; extra == 'test'
- pytest ; extra == 'test'
- testpath ; extra == 'test'
requires_python: '>=3.8'
- pypi: https://files.pythonhosted.org/packages/a0/c4/c2971a3ba4c6103a3d10c4b0f24f461ddc027f0f09763220cf35ca1401b3/nest_asyncio-1.6.0-py3-none-any.whl
name: nest-asyncio
version: 1.6.0
sha256: 87af6efd6b5e897c81050477ef65c62e2b2f35d51703cae01aff2905b1852e1c
requires_python: '>=3.5'
- pypi: https://files.pythonhosted.org/packages/cf/ba/d26e8278ad8a2306580bab076b6d64cd16459a60e632e6c1a9cbb68dd3d9/netCDF4-1.7.2-cp311-cp311-win_amd64.whl
name: netcdf4
version: 1.7.2
sha256: 3291f9ad0c98c49a4dd16aefad1a9abd3a1b884171db6c81bdcee94671cfabe3
requires_dist:
- cftime
- certifi
- numpy
- cython ; extra == 'tests'
- packaging ; extra == 'tests'
- pytest ; extra == 'tests'
requires_python: '>=3.8'
- pypi: https://files.pythonhosted.org/packages/8b/72/10c1d2d82101c468a28adc35de6c77b308f288cfd0b88e1070f15b98e00c/numpy-2.2.4-cp311-cp311-win_amd64.whl
name: numpy
version: 2.2.4
sha256: f7de08cbe5551911886d1ab60de58448c6df0f67d9feb7d1fb21e9875ef95e91
requires_python: '>=3.10'
- pypi: https://files.pythonhosted.org/packages/c0/da/977ded879c29cbd04de313843e76868e6e13408a94ed6b987245dc7c8506/openpyxl-3.1.5-py2.py3-none-any.whl
name: openpyxl
version: 3.1.5
sha256: 5282c12b107bffeef825f4617dc029afaf41d0ea60823bbb665ef3079dc79de2
requires_dist:
- et-xmlfile
requires_python: '>=3.8'
- conda: https://conda.anaconda.org/conda-forge/win-64/openssl-3.4.1-ha4e3fda_0.conda
sha256: 56dcc2b4430bfc1724e32661c34b71ae33a23a14149866fc5645361cfd3b3a6a
md5: 0730f8094f7088592594f9bf3ae62b3f
depends:
- ca-certificates
- ucrt >=10.0.20348.0
- vc >=14.2,<15
- vc14_runtime >=14.29.30139
license: Apache-2.0
license_family: Apache
purls: []
size: 8515197
timestamp: 1739304103653
- pypi: https://files.pythonhosted.org/packages/88/ef/eb23f262cca3c0c4eb7ab1933c3b1f03d021f2c48f54763065b6f0e321be/packaging-24.2-py3-none-any.whl
name: packaging
version: '24.2'
sha256: 09abb1bccd265c01f4a3aa3f7a7db064b36514d2cba19a2f694fe6150451a759
requires_python: '>=3.8'
- pypi: https://files.pythonhosted.org/packages/ed/8c/87ddf1fcb55d11f9f847e3c69bb1c6f8e46e2f40ab1a2d2abadb2401b007/pandas-2.2.3-cp311-cp311-win_amd64.whl
name: pandas
version: 2.2.3
sha256: 3fc6873a41186404dad67245896a6e440baacc92f5b716ccd1bc9ed2995ab2c5
requires_dist:
- numpy>=1.22.4 ; python_full_version < '3.11'
- numpy>=1.23.2 ; python_full_version == '3.11.*'
- numpy>=1.26.0 ; python_full_version >= '3.12'
- python-dateutil>=2.8.2
- pytz>=2020.1
- tzdata>=2022.7
- hypothesis>=6.46.1 ; extra == 'test'
- pytest>=7.3.2 ; extra == 'test'
- pytest-xdist>=2.2.0 ; extra == 'test'
- pyarrow>=10.0.1 ; extra == 'pyarrow'
- bottleneck>=1.3.6 ; extra == 'performance'
- numba>=0.56.4 ; extra == 'performance'
- numexpr>=2.8.4 ; extra == 'performance'
- scipy>=1.10.0 ; extra == 'computation'
- xarray>=2022.12.0 ; extra == 'computation'
- fsspec>=2022.11.0 ; extra == 'fss'
- s3fs>=2022.11.0 ; extra == 'aws'
- gcsfs>=2022.11.0 ; extra == 'gcp'
- pandas-gbq>=0.19.0 ; extra == 'gcp'
- odfpy>=1.4.1 ; extra == 'excel'
- openpyxl>=3.1.0 ; extra == 'excel'
- python-calamine>=0.1.7 ; extra == 'excel'
- pyxlsb>=1.0.10 ; extra == 'excel'
- xlrd>=2.0.1 ; extra == 'excel'
- xlsxwriter>=3.0.5 ; extra == 'excel'
- pyarrow>=10.0.1 ; extra == 'parquet'
- pyarrow>=10.0.1 ; extra == 'feather'
- tables>=3.8.0 ; extra == 'hdf5'
- pyreadstat>=1.2.0 ; extra == 'spss'
- sqlalchemy>=2.0.0 ; extra == 'postgresql'
- psycopg2>=2.9.6 ; extra == 'postgresql'
- adbc-driver-postgresql>=0.8.0 ; extra == 'postgresql'
- sqlalchemy>=2.0.0 ; extra == 'mysql'
- pymysql>=1.0.2 ; extra == 'mysql'
- sqlalchemy>=2.0.0 ; extra == 'sql-other'
- adbc-driver-postgresql>=0.8.0 ; extra == 'sql-other'
- adbc-driver-sqlite>=0.8.0 ; extra == 'sql-other'
- beautifulsoup4>=4.11.2 ; extra == 'html'
- html5lib>=1.1 ; extra == 'html'
- lxml>=4.9.2 ; extra == 'html'
- lxml>=4.9.2 ; extra == 'xml'
- matplotlib>=3.6.3 ; extra == 'plot'
- jinja2>=3.1.2 ; extra == 'output-formatting'
- tabulate>=0.9.0 ; extra == 'output-formatting'
- pyqt5>=5.15.9 ; extra == 'clipboard'
- qtpy>=2.3.0 ; extra == 'clipboard'
- zstandard>=0.19.0 ; extra == 'compression'
- dataframe-api-compat>=0.1.7 ; extra == 'consortium-standard'
- adbc-driver-postgresql>=0.8.0 ; extra == 'all'
- adbc-driver-sqlite>=0.8.0 ; extra == 'all'
- beautifulsoup4>=4.11.2 ; extra == 'all'
- bottleneck>=1.3.6 ; extra == 'all'
- dataframe-api-compat>=0.1.7 ; extra == 'all'
- fastparquet>=2022.12.0 ; extra == 'all'
- fsspec>=2022.11.0 ; extra == 'all'
- gcsfs>=2022.11.0 ; extra == 'all'
- html5lib>=1.1 ; extra == 'all'
- hypothesis>=6.46.1 ; extra == 'all'
- jinja2>=3.1.2 ; extra == 'all'
- lxml>=4.9.2 ; extra == 'all'
- matplotlib>=3.6.3 ; extra == 'all'
- numba>=0.56.4 ; extra == 'all'
- numexpr>=2.8.4 ; extra == 'all'
- odfpy>=1.4.1 ; extra == 'all'
- openpyxl>=3.1.0 ; extra == 'all'
- pandas-gbq>=0.19.0 ; extra == 'all'
- psycopg2>=2.9.6 ; extra == 'all'
- pyarrow>=10.0.1 ; extra == 'all'
- pymysql>=1.0.2 ; extra == 'all'
- pyqt5>=5.15.9 ; extra == 'all'
- pyreadstat>=1.2.0 ; extra == 'all'
- pytest>=7.3.2 ; extra == 'all'
- pytest-xdist>=2.2.0 ; extra == 'all'
- python-calamine>=0.1.7 ; extra == 'all'
- pyxlsb>=1.0.10 ; extra == 'all'
- qtpy>=2.3.0 ; extra == 'all'
- scipy>=1.10.0 ; extra == 'all'
- s3fs>=2022.11.0 ; extra == 'all'
- sqlalchemy>=2.0.0 ; extra == 'all'
- tables>=3.8.0 ; extra == 'all'
- tabulate>=0.9.0 ; extra == 'all'
- xarray>=2022.12.0 ; extra == 'all'
- xlrd>=2.0.1 ; extra == 'all'
- xlsxwriter>=3.0.5 ; extra == 'all'
- zstandard>=0.19.0 ; extra == 'all'
requires_python: '>=3.9'
- pypi: https://files.pythonhosted.org/packages/61/55/83ce641bc61a70cc0721af6f50154ecaaccedfbdbc27366c1755a2a34972/papermill-2.6.0-py3-none-any.whl
name: papermill
version: 2.6.0
sha256: 0f09da6ef709f3f14dde77cb1af052d05b14019189869affff374c9e612f2dd5
requires_dist:
- click
- pyyaml
- nbformat>=5.2.0
- nbclient>=0.2.0
- tqdm>=4.32.2
- requests
- entrypoints
- tenacity>=5.0.2
- ansicolors
- aiohttp>=3.9.0 ; python_full_version == '3.12.*'
- boto3 ; extra == 'all'