forked from lablup/backend.ai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
python.lock
4071 lines (4070 loc) · 200 KB
/
python.lock
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// This lockfile was autogenerated by Pants. To regenerate, run:
//
// ./pants generate-lockfiles --resolve=python-default
//
// --- BEGIN PANTS LOCKFILE METADATA: DO NOT EDIT OR REMOVE ---
// {
// "version": 2,
// "valid_for_interpreter_constraints": [
// "CPython==3.10.5"
// ],
// "generated_with_requirements": [
// "Jinja2~=3.1.2",
// "PyJWT~=2.0",
// "PyYAML~=6.0",
// "SQLAlchemy[postgresql_asyncpg]~=1.4.39",
// "aiodataloader-ng~=0.2.1",
// "aiodns>=3.0",
// "aiodocker~=0.21.0",
// "aiofiles~=0.8.0",
// "aiohttp_cors~=0.7",
// "aiohttp_session[aioredis]~=2.11",
// "aiohttp_sse>=2.0",
// "aiohttp~=3.8.1",
// "aiomonitor-ng~=0.5.1",
// "aioredis[hiredis]~=2.0.1",
// "aiosqlite~=0.17.0",
// "aiotools~=1.5.9",
// "aiotusclient~=0.1.4",
// "alembic~=1.8.1",
// "appdirs~=1.4.4",
// "async_timeout~=4.0",
// "asyncudp>=0.4",
// "attrs>=20.3",
// "backend.ai-krunner-alpine~=3.3",
// "backend.ai-krunner-static-gnu~=2.0",
// "cachetools~=5.2.0",
// "callosum~=0.9.10",
// "click>=7.1.2",
// "colorama>=0.4.4",
// "coloredlogs~=15.0",
// "cryptography>=2.8",
// "etcetra~=0.1.10",
// "faker~=13.12.0",
// "graphene~=2.1.9",
// "hiredis~=1.1.0",
// "humanize>=3.1.0",
// "inquirer~=2.9.2",
// "janus>=0.6.1",
// "kubernetes-asyncio~=9.1.0",
// "kubernetes~=10.0.0",
// "lark-parser~=0.11.3",
// "more-itertools~=8.13.0",
// "msgpack>=1.0.0",
// "netifaces~=0.11.0",
// "packaging>=21.3",
// "passlib[bcrypt]>=1.7.4",
// "pexpect~=4.8",
// "psutil~=5.9.1",
// "psycopg2-binary>=2.8.4",
// "pycryptodome>=3.14.1",
// "pytest-dependency>=0.5.1",
// "pytest>=7.1.2",
// "python-dateutil>=2.8",
// "python-dotenv~=0.20.0",
// "python-json-logger>=2.0.1",
// "python-snappy~=0.6.0",
// "pyzmq~=23.2.0",
// "redis[hiredis]~=4.3.4",
// "rich~=12.2",
// "setproctitle~=1.2.2",
// "tabulate~=0.8.9",
// "tblib~=1.7",
// "tenacity>=8.0",
// "tomli~=2.0.1",
// "tomlkit~=0.11.1",
// "tqdm>=4.61",
// "trafaret~=2.1",
// "typeguard~=2.10",
// "types-Jinja2",
// "types-PyYAML",
// "types-aiofiles",
// "types-cachetools",
// "types-click",
// "types-python-dateutil",
// "types-redis",
// "types-setuptools",
// "types-six",
// "types-tabulate",
// "typing_extensions~=4.3",
// "uvloop>=0.16",
// "yarl>=1.7",
// "zipstream-new~=1.1.8"
// ]
// }
// --- END PANTS LOCKFILE METADATA ---
{
"allow_builds": true,
"allow_prereleases": false,
"allow_wheels": true,
"build_isolation": true,
"constraints": [],
"locked_resolves": [
{
"locked_requirements": [
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "a0288be63d47ec5fd153f284477a1c9327c8f8e6b193d7cf0b2a8d1576a31589",
"url": "https://files.pythonhosted.org/packages/4a/88/4d00e98d144c7c1517d9fa069501369d6204841ccd6f7478d5a692f309d4/aioconsole-0.5.1-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "c8ddd9fd21db71ea51fb9b0d20d21d11c409c92988edf07c935d705fa60e026b",
"url": "https://files.pythonhosted.org/packages/71/74/cd64dbc518f71486b235f0e1538ea4b7cbf4375a8bdc6f96c9c9595291ab/aioconsole-0.5.1.tar.gz"
}
],
"project_name": "aioconsole",
"requires_dists": [],
"requires_python": ">=3.7",
"version": "0.5.1"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "c705656ae8cab12f8d313ddac4d68d6036bafe403f172c9687ece027cde21acc",
"url": "https://files.pythonhosted.org/packages/d4/f7/9b837b7893d2db59c21df28434f31637a37884ce6b9e29b92d4dd1e68435/aiodataloader_ng-0.2.1-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "f655efa53d72f9887617443161e7920eaa10b79ba6710326223bf9de395515ec",
"url": "https://files.pythonhosted.org/packages/e0/09/9d11e527dcd81e770526a32c95e207fa6ef0aeb92de6b31b418573ebfd0b/aiodataloader-ng-0.2.1.tar.gz"
}
],
"project_name": "aiodataloader-ng",
"requires_dists": [
"coveralls; extra == \"test\"",
"flake8>=3.9.0; extra == \"lint\"",
"mock; extra == \"test\"",
"mypy>=0.930; extra == \"typecheck\"",
"pytest-asyncio; extra == \"test\"",
"pytest-cov; extra == \"test\"",
"pytest>=6.2.5; extra == \"test\"",
"twine>=3.7.1; extra == \"build\"",
"wheel>=0.37.1; extra == \"build\""
],
"requires_python": null,
"version": "0.2.1"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "2b19bc5f97e5c936638d28e665923c093d8af2bf3aa88d35c43417fa25d136a2",
"url": "https://files.pythonhosted.org/packages/ab/72/991ee33a517df69c6cd6f3486cfe9b6329557cb55acaa8cefac33c2aa4d2/aiodns-3.0.0-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "946bdfabe743fceeeb093c8a010f5d1645f708a241be849e17edfb0e49e08cd6",
"url": "https://files.pythonhosted.org/packages/27/79/df72e25df0fdd9bf5a5ab068539731d27c5f2ae5654621ae0c92ceca94cf/aiodns-3.0.0.tar.gz"
}
],
"project_name": "aiodns",
"requires_dists": [
"pycares>=4.0.0"
],
"requires_python": null,
"version": "3"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "6fe00135bb7dc40a407669d3157ecdfd856f3737d939df54f40a479d40cf7bdc",
"url": "https://files.pythonhosted.org/packages/7e/86/97638ef9d0e54a86d389ded8ccf27cc1ecabf7ce27ae873636a5c1e46d89/aiodocker-0.21.0-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "1f2e6db6377195962bb676d4822f6e3a0c525e1b5d60b8ebbab68230bff3d227",
"url": "https://files.pythonhosted.org/packages/6f/f5/5fb3a17fcdd31d3cce9afa82c306da869e2b36c5ca1477224396e5e1f31b/aiodocker-0.21.0.tar.gz"
}
],
"project_name": "aiodocker",
"requires_dists": [
"aiohttp>=3.6",
"typing-extensions>=3.6.5"
],
"requires_python": ">=3.6",
"version": "0.21"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "7a973fc22b29e9962d0897805ace5856e6a566ab1f0c8e5c91ff6c866519c937",
"url": "https://files.pythonhosted.org/packages/ca/e4/b78d049f7cc7ed053ddbfdd59b2dcc7bd387458e2c2869b602975685d65e/aiofiles-0.8.0-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "8334f23235248a3b2e83b2c3a78a22674f39969b96397126cc93664d9a901e59",
"url": "https://files.pythonhosted.org/packages/10/ca/c416cfacf6a47e1400dad56eab85aa86c92c6fbe58447d12035e434f0d5c/aiofiles-0.8.0.tar.gz"
}
],
"project_name": "aiofiles",
"requires_dists": [],
"requires_python": "<4.0,>=3.6",
"version": "0.8"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "97ef77eb6b044134c0b3a96e16abcb05ecce892965a2124c566af0fd60f717e2",
"url": "https://files.pythonhosted.org/packages/4f/c6/a8ce9fc6bbf9c0dbdaa631bcb8f9da5b532fd22ead50ef7390976fc9bf0d/aiohttp-3.8.1-cp310-cp310-musllinux_1_1_x86_64.whl"
},
{
"algorithm": "sha256",
"hash": "12de6add4038df8f72fac606dff775791a60f113a725c960f2bab01d8b8e6b15",
"url": "https://files.pythonhosted.org/packages/48/08/c3efb449dea5f38292804e4fbf8eaef1b3f168535a4163cc3fce3f9b4915/aiohttp-3.8.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl"
},
{
"algorithm": "sha256",
"hash": "fc5471e1a54de15ef71c1bc6ebe80d4dc681ea600e68bfd1cbce40427f0b7578",
"url": "https://files.pythonhosted.org/packages/5a/86/5f63de7a202550269a617a5d57859a2961f3396ecd1739a70b92224766bc/aiohttp-3.8.1.tar.gz"
},
{
"algorithm": "sha256",
"hash": "61bfc23df345d8c9716d03717c2ed5e27374e0fe6f659ea64edcd27b4b044cf7",
"url": "https://files.pythonhosted.org/packages/76/3d/8f64ed6d429f9feeefc52b551f4ba5554d2f7a6f46d92c080f4ae48e0478/aiohttp-3.8.1-cp310-cp310-musllinux_1_1_i686.whl"
},
{
"algorithm": "sha256",
"hash": "7dadf3c307b31e0e61689cbf9e06be7a867c563d5a63ce9dca578f956609abf8",
"url": "https://files.pythonhosted.org/packages/7e/9f/3cd2502f3cab61eccd7c20f5ab67447cf891ad8613282141955df1b7fb98/aiohttp-3.8.1-cp310-cp310-macosx_10_9_x86_64.whl"
},
{
"algorithm": "sha256",
"hash": "099ebd2c37ac74cce10a3527d2b49af80243e2a4fa39e7bce41617fbc35fa3c1",
"url": "https://files.pythonhosted.org/packages/80/a3/9403173d3a6ba5893a4e0a1816b211da7ba0cb7c00c9ac0279ec2dbbf576/aiohttp-3.8.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl"
},
{
"algorithm": "sha256",
"hash": "eaba923151d9deea315be1f3e2b31cc39a6d1d2f682f942905951f4e40200922",
"url": "https://files.pythonhosted.org/packages/85/e6/d52a342bf22b5b5c759a94af340836490bcbffd288d4a65494234d8298f7/aiohttp-3.8.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl"
},
{
"algorithm": "sha256",
"hash": "a79004bb58748f31ae1cbe9fa891054baaa46fb106c2dc7af9f8e3304dc30316",
"url": "https://files.pythonhosted.org/packages/a6/7f/4c202b0fd3c33029e45bb0d06eaac2886be4427763cc9589774fb39b5da7/aiohttp-3.8.1-cp310-cp310-macosx_11_0_arm64.whl"
},
{
"algorithm": "sha256",
"hash": "6f0d5f33feb5f69ddd57a4a4bd3d56c719a141080b445cbf18f238973c5c9923",
"url": "https://files.pythonhosted.org/packages/b1/bd/e412cb6cd12b7a86966239a97ed0391e1ad5ac6f8a749caddc49e18264ec/aiohttp-3.8.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl"
},
{
"algorithm": "sha256",
"hash": "fa0ffcace9b3aa34d205d8130f7873fcfefcb6a4dd3dd705b0dab69af6712642",
"url": "https://files.pythonhosted.org/packages/c0/6d/f5423a7c899c538e2cff2e713f9eb2c51b02fad909ec8e8b1c3ed713049a/aiohttp-3.8.1-cp310-cp310-musllinux_1_1_aarch64.whl"
},
{
"algorithm": "sha256",
"hash": "01d7bdb774a9acc838e6b8f1d114f45303841b89b95984cbb7d80ea41172a9e3",
"url": "https://files.pythonhosted.org/packages/cc/28/c95a0694da3082cb76808799017b02db6c10ec8687ee1ac5edad091ab070/aiohttp-3.8.1-cp310-cp310-musllinux_1_1_s390x.whl"
},
{
"algorithm": "sha256",
"hash": "1ed0b6477896559f17b9eaeb6d38e07f7f9ffe40b9f0f9627ae8b9926ae260a8",
"url": "https://files.pythonhosted.org/packages/e3/3a/720635a98bb0eef9179d12ee3ccca659d1fcccfbafaacdf42ed5536a0861/aiohttp-3.8.1-cp310-cp310-macosx_10_9_universal2.whl"
},
{
"algorithm": "sha256",
"hash": "31560d268ff62143e92423ef183680b9829b1b482c011713ae941997921eebc8",
"url": "https://files.pythonhosted.org/packages/f3/0d/a035862f8a11b6cba4220b0c1201443fa6f5151137889e2dfe1cc983e58e/aiohttp-3.8.1-cp310-cp310-musllinux_1_1_ppc64le.whl"
},
{
"algorithm": "sha256",
"hash": "2e5d962cf7e1d426aa0e528a7e198658cdc8aa4fe87f781d039ad75dcd52c516",
"url": "https://files.pythonhosted.org/packages/f4/2d/07e3ba718571e79509f88a791611a3e156e8915ed9a19116547806bce8fa/aiohttp-3.8.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl"
}
],
"project_name": "aiohttp",
"requires_dists": [
"Brotli; extra == \"speedups\"",
"aiodns; extra == \"speedups\"",
"aiosignal>=1.1.2",
"async-timeout<5.0,>=4.0.0a3",
"asynctest==0.13.0; python_version < \"3.8\"",
"attrs>=17.3.0",
"cchardet; extra == \"speedups\"",
"charset-normalizer<3.0,>=2.0",
"frozenlist>=1.1.1",
"idna-ssl>=1.0; python_version < \"3.7\"",
"multidict<7.0,>=4.5",
"typing-extensions>=3.7.4; python_version < \"3.8\"",
"yarl<2.0,>=1.0"
],
"requires_python": ">=3.6",
"version": "3.8.1"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "0451ba59fdf6909d0e2cd21e4c0a43752bc0703d33fc78ae94d9d9321710193e",
"url": "https://files.pythonhosted.org/packages/13/e7/e436a0c0eb5127d8b491a9b83ecd2391c6ff7dcd5548dfaec2080a2340fd/aiohttp_cors-0.7.0-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "4d39c6d7100fd9764ed1caf8cebf0eb01bf5e3f24e2e073fda6234bc48b19f5d",
"url": "https://files.pythonhosted.org/packages/44/9e/6cdce7c3f346d8fd487adf68761728ad8cd5fbc296a7b07b92518350d31f/aiohttp-cors-0.7.0.tar.gz"
}
],
"project_name": "aiohttp-cors",
"requires_dists": [
"aiohttp>=1.1",
"typing; python_version < \"3.5\""
],
"requires_python": null,
"version": "0.7"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "d5451b72ba748d72ef01f55c3af45b63be2d40b2bdadf47407007e1270343384",
"url": "https://files.pythonhosted.org/packages/13/e3/affe80cf6d906f5a8ca7d084b780c340d90f7649c0683ed1e65dd88c5bdf/aiohttp_session-2.11.0-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "0fdf39600f6a05c4943ef6c7b099071ca9854413111a26761626244be5015dc4",
"url": "https://files.pythonhosted.org/packages/3b/a7/0b97b9a2e3a553a86a6703f86b0e9b1afb2b262849700e8f80015c0f643f/aiohttp-session-2.11.0.tar.gz"
}
],
"project_name": "aiohttp-session",
"requires_dists": [
"aiohttp>=3.8",
"aiomcache>=0.5.2; extra == \"aiomcache\"",
"aioredis>=2.0.0; extra == \"aioredis\"",
"cryptography; extra == \"pycrypto\"",
"cryptography; extra == \"secure\"",
"pynacl; extra == \"pynacl\"",
"typing-extensions>=3.7.4; python_version < \"3.8\""
],
"requires_python": ">=3.7",
"version": "2.11"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "b31cbf99142ca0c93cfc180e3f32fcdca0bcab35367e1380bc70dfaaf88cdc60",
"url": "https://files.pythonhosted.org/packages/fe/0c/e1db340ac8d75af3e51236696077e399cc3dfe8ea25d2a524066bff196a9/aiohttp_sse-2.1.0-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "dfe8f7271ab4470891fa1bfa1913d6889b3d19015dd3d3a4cab949e66971bbca",
"url": "https://files.pythonhosted.org/packages/2f/3f/cc4f5a3fe6cb50ad5b9d26bb7738c5da1f61645b517d4230df2fc32d89f0/aiohttp-sse-2.1.0.tar.gz"
}
],
"project_name": "aiohttp-sse",
"requires_dists": [
"aiohttp>=3.0"
],
"requires_python": ">=3.7",
"version": "2.1"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "6a13cd037c5d7e1a00eae828e3b002937cc0c5da3d35b366a9ffbff609ed0344",
"url": "https://files.pythonhosted.org/packages/b1/ac/dc372280795c821ee2a7a9e8aea04ef7afc92cc168d5ac1824390b0834eb/aiomonitor_ng-0.5.1-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "89adce2e4df86d1632c72e6b1840539dd44fef632c7feb72bc6386d88dc272e4",
"url": "https://files.pythonhosted.org/packages/2d/e0/ccfa40c9ed1d2fee32a3f944c0b6708d0bcd3fbc33e42276a5e0955c4a61/aiomonitor-ng-0.5.1.tar.gz"
}
],
"project_name": "aiomonitor-ng",
"requires_dists": [
"aioconsole",
"terminaltables"
],
"requires_python": null,
"version": "0.5.1"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "9ac0d0b3b485d293b8ca1987e6de8658d7dafcca1cddfcd1d506cae8cdebfdd6",
"url": "https://files.pythonhosted.org/packages/9b/a9/0da089c3ae7a31cbcd2dcf0214f6f571e1295d292b6139e2bac68ec081d0/aioredis-2.0.1-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "eaa51aaf993f2d71f54b70527c440437ba65340588afeb786cd87c55c89cd98e",
"url": "https://files.pythonhosted.org/packages/2e/cf/9eb144a0b05809ffc5d29045c4b51039000ea275bc1268d0351c9e7dfc06/aioredis-2.0.1.tar.gz"
}
],
"project_name": "aioredis",
"requires_dists": [
"async-timeout",
"hiredis>=1.0; implementation_name == \"cpython\" and extra == \"hiredis\"",
"typing-extensions"
],
"requires_python": ">=3.6",
"version": "2.0.1"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "26e62109036cd181df6e6ad646f91f0dcfd05fe16d0cb924138ff2ab75d64e3a",
"url": "https://files.pythonhosted.org/packages/3b/87/fe94898f2d44a93a35d5aa74671ed28094d80753a1113d68b799fab6dc22/aiosignal-1.2.0-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "78ed67db6c7b7ced4f98e495e572106d5c432a93e1ddd1bf475e1dc05f5b7df2",
"url": "https://files.pythonhosted.org/packages/27/6b/a89fbcfae70cf53f066ec22591938296889d3cc58fec1e1c393b10e8d71d/aiosignal-1.2.0.tar.gz"
}
],
"project_name": "aiosignal",
"requires_dists": [
"frozenlist>=1.1.0"
],
"requires_python": ">=3.6",
"version": "1.2"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "6c49dc6d3405929b1d08eeccc72306d3677503cc5e5e43771efc1e00232e8231",
"url": "https://files.pythonhosted.org/packages/a0/48/77c0092f716c4bf9460dca44f5120f70b8f71f14a12f40d22551a7152719/aiosqlite-0.17.0-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "f0e6acc24bc4864149267ac82fb46dfb3be4455f99fe21df82609cc6e6baee51",
"url": "https://files.pythonhosted.org/packages/40/e0/ad1edd74311831ca71b32a5b83352b490d78d11a90a1cde04e1b6830e018/aiosqlite-0.17.0.tar.gz"
}
],
"project_name": "aiosqlite",
"requires_dists": [
"typing_extensions>=3.7.2"
],
"requires_python": ">=3.6",
"version": "0.17"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "3a9946f047cfb33e1fca0d39845c3d6d10aeda69a6602c06a8f7dcb67c12171d",
"url": "https://files.pythonhosted.org/packages/e0/6b/8b7b1c5dfcb1ab49ac0baa0e59f1edb437a05b3fe618b5c5ec931e15ec56/aiotools-1.5.9-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "44e7b5f50cef692e177ad37231f0d6fa058465ea93c8759da7ee06a2b5cfac97",
"url": "https://files.pythonhosted.org/packages/83/b9/915ad8fa49f8834841bd7ca387db3c374ba8d953e949ef2f185e86ffd652/aiotools-1.5.9.tar.gz"
}
],
"project_name": "aiotools",
"requires_dists": [
"codecov; extra == \"test\"",
"flake8>=4.0.1; extra == \"lint\"",
"mypy>=0.920; extra == \"typecheck\"",
"pytest-asyncio~=0.16.0; extra == \"test\"",
"pytest-cov; extra == \"test\"",
"pytest-mock; extra == \"test\"",
"pytest~=6.2.5; extra == \"test\"",
"setuptools>=51.2.0; extra == \"build\"",
"sphinx-rtd-theme~=1.0; extra == \"docs\"",
"sphinx~=4.3; extra == \"docs\"",
"towncrier~=21.3; extra == \"build\"",
"twine>=3.8.0; extra == \"build\"",
"typing-extensions~=3.7; python_version < \"3.8\"",
"wheel>=0.37.0; extra == \"build\""
],
"requires_python": ">=3.6",
"version": "1.5.9"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "69dad8a1bfb66c811a537014bda44e06188621df36e75566b97c4aaf373a389b",
"url": "https://files.pythonhosted.org/packages/7b/d2/004c9f673df74ff0455f381e898ad522b5fbc05a2b7b99420f1998702a58/aiotusclient-0.1.4-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "4e23704420b5273b0c417c92a8bae605f90fc8f9364caa91a80f2586c7d8f952",
"url": "https://files.pythonhosted.org/packages/7c/9e/1a2fa86e00168a035ce532b1e595298b397eed6de9e757470f1e2bf53b8d/aiotusclient-0.1.4.tar.gz"
}
],
"project_name": "aiotusclient",
"requires_dists": [
"aiohttp>=3.6.2",
"codecov>=2.1.8; extra == \"test\"",
"flake8>=3.8.3; extra == \"lint\"",
"mypy>=0.782; extra == \"typecheck\"",
"pytest-asyncio>=0.14.0; extra == \"test\"",
"pytest-cov>=2.10.0; extra == \"test\"",
"pytest-mock>=3.2.0; extra == \"test\"",
"pytest>=6.0.1; extra == \"test\"",
"tqdm>=4.42",
"twine>=3.2.0; extra == \"build\"",
"wheel>=0.34.2; extra == \"build\""
],
"requires_python": ">=3.7",
"version": "0.1.4"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "0a024d7f2de88d738d7395ff866997314c837be6104e90c5724350313dee4da4",
"url": "https://files.pythonhosted.org/packages/b3/c8/69600a8138a56794713ecdb8b75b14fbe32a410bc444683f27dbab93c0ca/alembic-1.8.1-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "cd0b5e45b14b706426b833f06369b9a6d5ee03f826ec3238723ce8caaf6e5ffa",
"url": "https://files.pythonhosted.org/packages/37/ab/80e6d86ca81235ea1a7104089dddf74de4b45f8af0a05d4b265be44d6ff9/alembic-1.8.1.tar.gz"
}
],
"project_name": "alembic",
"requires_dists": [
"Mako",
"SQLAlchemy>=1.3.0",
"importlib-metadata; python_version < \"3.9\"",
"importlib-resources; python_version < \"3.9\"",
"python-dateutil; extra == \"tz\""
],
"requires_python": ">=3.7",
"version": "1.8.1"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "d10a4bf949f619f719b227ef5386e31f49a2b6d453004b21f02661ccc8670c7b",
"url": "https://files.pythonhosted.org/packages/45/a4/b4fcadbdab46c2ec2d2f6f8b4ab3f64fd0040789ac7f065eba82119cd602/aniso8601-7.0.0-py2.py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "513d2b6637b7853806ae79ffaca6f3e8754bdd547048f5ccc1420aec4b714f1e",
"url": "https://files.pythonhosted.org/packages/7f/39/0da0982a3a42fd896beaa07425692fb3100a9d0e40723783efc20f1dec7c/aniso8601-7.0.0.tar.gz"
}
],
"project_name": "aniso8601",
"requires_dists": [],
"requires_python": null,
"version": "7"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "a841dacd6b99318a741b166adb07e19ee71a274450e68237b4650ca1055ab128",
"url": "https://files.pythonhosted.org/packages/3b/00/2344469e2084fb287c2e0b57b72910309874c3245463acd6cf5e3db69324/appdirs-1.4.4-py2.py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "7d5d0167b2b1ba821647616af46a749d1c653740dd0d2415100fe26e27afdf41",
"url": "https://files.pythonhosted.org/packages/d7/d8/05696357e0311f5b5c316d7b95f46c669dd9c15aaeecbb48c7d0aeb88c40/appdirs-1.4.4.tar.gz"
}
],
"project_name": "appdirs",
"requires_dists": [],
"requires_python": null,
"version": "1.4.4"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "8ca1e4fcf50d07413d66d1a5e416e42cfdf5851c981d679a09851a6853383b3c",
"url": "https://files.pythonhosted.org/packages/d6/c1/8991e7c5385b897b8c020cdaad718c5b087a6626d1d11a23e1ea87e325a7/async_timeout-4.0.2-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "2163e1640ddb52b7a8c80d0a67a08587e5d245cc9c553a74a847056bc2976b15",
"url": "https://files.pythonhosted.org/packages/54/6e/9678f7b2993537452710ffb1750c62d2c26df438aa621ad5fa9d1507a43a/async-timeout-4.0.2.tar.gz"
}
],
"project_name": "async-timeout",
"requires_dists": [
"typing-extensions>=3.6.5; python_version < \"3.8\""
],
"requires_python": ">=3.6",
"version": "4.0.2"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "868a71704262834065ca7113d80b1f679609e2df77d837747e3d92150dd5a39b",
"url": "https://files.pythonhosted.org/packages/43/21/f390eec6d1559433a2fdf5f1532ddd4caf8316655d2453e7233ac4f30263/asyncpg-0.26.0-cp310-cp310-musllinux_1_1_x86_64.whl"
},
{
"algorithm": "sha256",
"hash": "e5bd99ee7a00e87df97b804f178f31086e88c8106aca9703b1d7be5078999e68",
"url": "https://files.pythonhosted.org/packages/00/2c/77e110cdcb0ed5b0cc60697454d9102284489d796b0e051565f4ea78c58c/asyncpg-0.26.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl"
},
{
"algorithm": "sha256",
"hash": "2ed3880b3aec8bda90548218fe0914d251d641f798382eda39a17abfc4910af0",
"url": "https://files.pythonhosted.org/packages/92/6f/3a84d4525de4f6ccd4b87e2300fb121801721014e53855468c009e6a6ec9/asyncpg-0.26.0-cp310-cp310-macosx_10_9_x86_64.whl"
},
{
"algorithm": "sha256",
"hash": "77e684a24fee17ba3e487ca982d0259ed17bae1af68006f4cf284b23ba20ea2c",
"url": "https://files.pythonhosted.org/packages/e4/57/0a4c4d3f2307b12f633b28c370669d6115a1780416310ec536f01ace09ad/asyncpg-0.26.0.tar.gz"
}
],
"project_name": "asyncpg",
"requires_dists": [
"Cython<0.30.0,>=0.29.24; extra == \"dev\"",
"Sphinx~=4.1.2; extra == \"dev\"",
"Sphinx~=4.1.2; extra == \"docs\"",
"flake8~=3.9.2; extra == \"dev\"",
"flake8~=3.9.2; extra == \"test\"",
"pycodestyle~=2.7.0; extra == \"dev\"",
"pycodestyle~=2.7.0; extra == \"test\"",
"pytest>=6.0; extra == \"dev\"",
"sphinx-rtd-theme~=0.5.2; extra == \"dev\"",
"sphinx-rtd-theme~=0.5.2; extra == \"docs\"",
"sphinxcontrib-asyncio~=0.3.0; extra == \"dev\"",
"sphinxcontrib-asyncio~=0.3.0; extra == \"docs\"",
"typing-extensions>=3.7.4.3; python_version < \"3.8\"",
"uvloop>=0.15.3; (platform_system != \"Windows\" and python_version >= \"3.7\") and extra == \"dev\"",
"uvloop>=0.15.3; (platform_system != \"Windows\" and python_version >= \"3.7\") and extra == \"test\""
],
"requires_python": ">=3.6.0",
"version": "0.26"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "c0fd6129bed9cd95eeb0815235ed86920f9a24d60d87eae181123588ddd4cd2b",
"url": "https://files.pythonhosted.org/packages/f8/d6/cdb2c5477b106cf49c7c1ab26c61b072ee3022355074fbfdfbfb642437ac/asyncudp-0.6.0.tar.gz"
}
],
"project_name": "asyncudp",
"requires_dists": [],
"requires_python": null,
"version": "0.6"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "86efa402f67bf2df34f51a335487cf46b1ec130d02b8d39fd248abfd30da551c",
"url": "https://files.pythonhosted.org/packages/f2/bc/d817287d1aa01878af07c19505fafd1165cd6a119e9d0821ca1d1c20312d/attrs-22.1.0-py2.py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "29adc2665447e5191d0e7c568fde78b21f9672d344281d0c6e1ab085429b22b6",
"url": "https://files.pythonhosted.org/packages/1a/cb/c4ffeb41e7137b23755a45e1bfec9cbb76ecf51874c6f1d113984ecaa32c/attrs-22.1.0.tar.gz"
}
],
"project_name": "attrs",
"requires_dists": [
"cloudpickle; platform_python_implementation == \"CPython\" and extra == \"dev\"",
"cloudpickle; platform_python_implementation == \"CPython\" and extra == \"tests\"",
"cloudpickle; platform_python_implementation == \"CPython\" and extra == \"tests_no_zope\"",
"coverage[toml]>=5.0.2; extra == \"dev\"",
"coverage[toml]>=5.0.2; extra == \"tests\"",
"coverage[toml]>=5.0.2; extra == \"tests_no_zope\"",
"furo; extra == \"dev\"",
"furo; extra == \"docs\"",
"hypothesis; extra == \"dev\"",
"hypothesis; extra == \"tests\"",
"hypothesis; extra == \"tests_no_zope\"",
"mypy!=0.940,>=0.900; extra == \"dev\"",
"mypy!=0.940,>=0.900; extra == \"tests\"",
"mypy!=0.940,>=0.900; extra == \"tests_no_zope\"",
"pre-commit; extra == \"dev\"",
"pympler; extra == \"dev\"",
"pympler; extra == \"tests\"",
"pympler; extra == \"tests_no_zope\"",
"pytest-mypy-plugins; extra == \"dev\"",
"pytest-mypy-plugins; extra == \"tests\"",
"pytest-mypy-plugins; extra == \"tests_no_zope\"",
"pytest>=4.3.0; extra == \"dev\"",
"pytest>=4.3.0; extra == \"tests\"",
"pytest>=4.3.0; extra == \"tests_no_zope\"",
"sphinx-notfound-page; extra == \"dev\"",
"sphinx-notfound-page; extra == \"docs\"",
"sphinx; extra == \"dev\"",
"sphinx; extra == \"docs\"",
"zope.interface; extra == \"dev\"",
"zope.interface; extra == \"docs\"",
"zope.interface; extra == \"tests\""
],
"requires_python": ">=3.5",
"version": "22.1"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "b41b340bc3eabd0413c5116e5b55c808d5d85273a5f066402649bbd1aacd5e30",
"url": "https://files.pythonhosted.org/packages/73/b3/ad66998041f559e24d8c64d90d6d4f67543bb5d89c97646701bb66e48b1f/backend.ai_krunner_alpine-3.3.1-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "9fc7bd39c6075a9c172539152b3712d203fcb57eaf22262ac97f03688a9af492",
"url": "https://files.pythonhosted.org/packages/88/f1/c1125679d2690c933c47d57b2dc35c1e75eeddb1e8ead161aea4677571de/backend.ai-krunner-alpine-3.3.1.tar.gz"
}
],
"project_name": "backend-ai-krunner-alpine",
"requires_dists": [
"Click>=7.1",
"codecov; extra == \"test\"",
"flake8>=3.7.9; extra == \"test\"",
"pytest~=5.4.1; extra == \"test\"",
"twine~=3.0; extra == \"build\"",
"wheel>=0.34.2; extra == \"build\""
],
"requires_python": ">=3.6",
"version": "3.3.1"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "2508b4f0bae09f2d7b1bd68d3100418551e3f2f0d4d8ed0c089d84afc31d7f4c",
"url": "https://files.pythonhosted.org/packages/8d/af/182be6fd62adbacd8f8ca0e8763241247f632a18d486f885ab8f8dc985be/backend.ai_krunner_static_gnu-2.0.1-py3-none-manylinux2014_x86_64.macosx_11_0_x86_64.whl"
},
{
"algorithm": "sha256",
"hash": "90f5f7346cd8d6c904b190f125aed2bb7c09cf52b91a5ad1b57b3faf31faa9a4",
"url": "https://files.pythonhosted.org/packages/16/c9/912e963a29854920a1018d7b37efd5bb31a3e66b1d672e156ca6148a026e/backend.ai-krunner-static-gnu-2.0.1.tar.gz"
},
{
"algorithm": "sha256",
"hash": "8e00553ab9e09e5b2b4cd045783e9d05be19eb94e1d53f268c2d11e910a3b319",
"url": "https://files.pythonhosted.org/packages/27/24/a931130c36e7c79fa78772e6264d6fa13f9b11a1213b86c166497ffc3b77/backend.ai_krunner_static_gnu-2.0.1-py3-none-manylinux2014_aarch64.macosx_11_0_arm64.whl"
}
],
"project_name": "backend-ai-krunner-static-gnu",
"requires_dists": [
"codecov; extra == \"test\"",
"flake8>=3.7.9; extra == \"test\"",
"pytest~=6.2.1; extra == \"test\"",
"twine~=3.0; extra == \"build\"",
"wheel>=0.34.2; extra == \"build\""
],
"requires_python": ">=3.6",
"version": "2.0.1"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "ede0f506554571c8eda80db22b83c139303ec6b595b8f60c4c8157bdd0bdee36",
"url": "https://files.pythonhosted.org/packages/f4/54/4bf31e9b77b1c64b3d45cd04d42dbac6b31e9599174d5429238a7a5913d8/bcrypt-4.0.0-cp36-abi3-musllinux_1_1_x86_64.whl"
},
{
"algorithm": "sha256",
"hash": "7c7dd6c1f05bf89e65261d97ac3a6520f34c2acb369afb57e3ea4449be6ff8fd",
"url": "https://files.pythonhosted.org/packages/19/c1/c808dc7bacc620fefa7e7f573fc6b26b5b3030afe5fea7b16e8d87b4be44/bcrypt-4.0.0-cp36-abi3-manylinux_2_24_x86_64.whl"
},
{
"algorithm": "sha256",
"hash": "bf413f2a9b0a2950fc750998899013f2e718d20fa4a58b85ca50b6df5ed1bbf9",
"url": "https://files.pythonhosted.org/packages/3a/c4/085d1cbe08f2ac4933db949d5ad9d6d0210e451948e06f247857ab97c1f7/bcrypt-4.0.0-cp36-abi3-musllinux_1_1_aarch64.whl"
},
{
"algorithm": "sha256",
"hash": "1c3334446fac200499e8bc04a530ce3cf0b3d7151e0e4ac5c0dddd3d95e97843",
"url": "https://files.pythonhosted.org/packages/54/e5/64354519c6e6aee70994b9a948b7e823b4012bc7f08a614456c3517560a9/bcrypt-4.0.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl"
},
{
"algorithm": "sha256",
"hash": "594780b364fb45f2634c46ec8d3e61c1c0f1811c4f2da60e8eb15594ecbf93ed",
"url": "https://files.pythonhosted.org/packages/7e/d9/73369b68fba1a4c1c6977a98466af2872b3b81ec3de341cbd8222825ee8a/bcrypt-4.0.0-cp36-abi3-manylinux_2_28_aarch64.whl"
},
{
"algorithm": "sha256",
"hash": "845b1daf4df2dd94d2fdbc9454953ca9dd0e12970a0bfc9f3dcc6faea3fa96e4",
"url": "https://files.pythonhosted.org/packages/87/7b/b9bda96f6fc870d1125f8c259bf905510f526b9dbeed4ef2a0df6e0106dc/bcrypt-4.0.0-cp36-abi3-macosx_10_10_universal2.whl"
},
{
"algorithm": "sha256",
"hash": "2d0dd19aad87e4ab882ef1d12df505f4c52b28b69666ce83c528f42c07379227",
"url": "https://files.pythonhosted.org/packages/95/d1/cdfcf698433b03af76df3f1ee15c840b1f6e54dcdd5a390a6d581d512ec4/bcrypt-4.0.0-cp36-abi3-manylinux_2_28_x86_64.whl"
},
{
"algorithm": "sha256",
"hash": "c59c170fc9225faad04dde1ba61d85b413946e8ce2e5f5f5ff30dfd67283f319",
"url": "https://files.pythonhosted.org/packages/99/f2/b71b9b5b2400fffac7d42c560ac89f302c4d8e328337b2f05f0a4d9e590d/bcrypt-4.0.0.tar.gz"
},
{
"algorithm": "sha256",
"hash": "bfb67f6a6c72dfb0a02f3df51550aa1862708e55128b22543e2b42c74f3620d7",
"url": "https://files.pythonhosted.org/packages/c5/77/14bbcd08ad265577ad6ea8e8980b9c0ad668cecfd241ae169b6747c4491b/bcrypt-4.0.0-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl"
},
{
"algorithm": "sha256",
"hash": "8780e69f9deec9d60f947b169507d2c9816e4f11548f1f7ebee2af38b9b22ae4",
"url": "https://files.pythonhosted.org/packages/dd/be/70eee1a2a62b1986e9a60f74b0d7e095bc50fd7cd67109fd82377fa22b90/bcrypt-4.0.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl"
}
],
"project_name": "bcrypt",
"requires_dists": [
"mypy; extra == \"typecheck\"",
"pytest!=3.3.0,>=3.2.1; extra == \"tests\""
],
"requires_python": ">=3.6",
"version": "4"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "63b8554ae2e0e7f43749b6715c734cc8f3883010a809bf16790102563e6cf25b",
"url": "https://files.pythonhosted.org/packages/94/c5/651224a1bbcb0253fecb7af6f60fa0c9ebabcb1df01ceadb8f4dfd2528cb/blessed-1.19.1-py2.py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "9a0d099695bf621d4680dd6c73f6ad547f6a3442fbdbe80c4b1daa1edbc492fc",
"url": "https://files.pythonhosted.org/packages/e5/ad/97453480e7bdfce94f05a983cf7ad7f1d90239efee53d5af28e622f0367f/blessed-1.19.1.tar.gz"
}
],
"project_name": "blessed",
"requires_dists": [
"backports.functools-lru-cache>=1.2.1; python_version < \"3.2\"",
"jinxed>=1.1.0; platform_system == \"Windows\"",
"ordereddict==1.1; python_version < \"2.7\"",
"six>=1.9.0",
"wcwidth>=0.1.4"
],
"requires_python": ">=2.7",
"version": "1.19.1"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "f9f17d2aec496a9aa6b76f53e3b614c965223c061982d434d160f930c698a9db",
"url": "https://files.pythonhosted.org/packages/68/aa/5fc646cae6e997c3adf3b0a7e257cda75cff21fcba15354dffd67789b7bb/cachetools-5.2.0-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "6a94c6402995a99c3970cc7e4884bb60b4a8639938157eeed436098bf9831757",
"url": "https://files.pythonhosted.org/packages/c2/6f/278225c5a070a18a76f85db5f1238f66476579fa9b04cda3722331dcc90f/cachetools-5.2.0.tar.gz"
}
],
"project_name": "cachetools",
"requires_dists": [],
"requires_python": "~=3.7",
"version": "5.2"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "3f17e34abc01ae71fef9d30bbea86a1e8eb155e24f23ae8121196a59964c6f04",
"url": "https://files.pythonhosted.org/packages/3b/bf/54362d591b09948f707e4066baade96e7014b8f7af1d1672dcc7e05d6fdd/callosum-0.9.10-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "f8b48397a768511cdf8c290b727e4adc6300831d3f82679b8b1b55278fce634c",
"url": "https://files.pythonhosted.org/packages/18/6e/a5fdcd76e6aaa52f13721046470139ca1b8beab8f3a5feed8800b1181f17/callosum-0.9.10.tar.gz"
}
],
"project_name": "callosum",
"requires_dists": [
"Click>=8.0; extra == \"test\"",
"aioredis<2.0,>=1.3.0; extra == \"redis\"",
"aiotools>=0.9.1",
"async-timeout>=3.0.1",
"attrs>=21.2.0",
"codecov; extra == \"test\"",
"flake8>=3.9; extra == \"lint\"",
"msgpack>=1.0.0",
"mypy>=0.910; extra == \"typecheck\"",
"pytest-asyncio>=0.15.0; extra == \"test\"",
"pytest-cov; extra == \"test\"",
"pytest-mock; extra == \"test\"",
"pytest~=6.2; extra == \"test\"",
"python-dateutil>=2.8.1",
"python-snappy>=0.5.4; extra == \"snappy\"",
"pyzmq>=19.0.0; extra == \"zeromq\"",
"sphinx-autodoc-typehints; extra == \"docs\"",
"sphinx; extra == \"docs\"",
"temporenc>=0.1",
"thriftpy2>=0.4.9; extra == \"thrift\"",
"towncrier>=19.2.0; extra == \"build\"",
"twine>=3.1.0; extra == \"build\"",
"types-python-dateutil; extra == \"typecheck\"",
"wheel>=0.33.6; extra == \"build\""
],
"requires_python": ">=3.8",
"version": "0.9.10"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "fe86415d55e84719d75f8b69414f6438ac3547d2078ab91b67e779ef69378412",
"url": "https://files.pythonhosted.org/packages/e9/06/d3d367b7af6305b16f0d28ae2aaeb86154fa91f144f036c2d5002a5a202b/certifi-2022.6.15-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "84c85a9078b11105f04f3036a9482ae10e4621616db313fe045dd24743a0820d",
"url": "https://files.pythonhosted.org/packages/cc/85/319a8a684e8ac6d87a1193090e06b6bbb302717496380e225ee10487c888/certifi-2022.6.15.tar.gz"
}
],
"project_name": "certifi",
"requires_dists": [],
"requires_python": ">=3.6",
"version": "2022.6.15"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "59c0b02d0a6c384d453fece7566d1c7e6b7bae4fc5874ef2ef46d56776d61c9e",
"url": "https://files.pythonhosted.org/packages/0e/65/0d7b5dad821ced4dcd43f96a362905a68ce71e6b5f5cfd2fada867840582/cffi-1.15.1-cp310-cp310-musllinux_1_1_x86_64.whl"
},
{
"algorithm": "sha256",
"hash": "d400bfb9a37b1351253cb402671cea7e89bdecc294e8016a707f6d1d8ac934f9",
"url": "https://files.pythonhosted.org/packages/2b/a8/050ab4f0c3d4c1b8aaa805f70e26e84d0e27004907c5b8ecc1d31815f92a/cffi-1.15.1.tar.gz"
},
{
"algorithm": "sha256",
"hash": "fa6693661a4c91757f4412306191b6dc88c1703f780c8234035eac011922bc01",
"url": "https://files.pythonhosted.org/packages/32/bd/d0809593f7976828f06a492716fbcbbfb62798bbf60ea1f65200b8d49901/cffi-1.15.1-cp310-cp310-musllinux_1_1_i686.whl"
},
{
"algorithm": "sha256",
"hash": "dd86c085fae2efd48ac91dd7ccffcfc0571387fe1193d33b6394db7ef31fe2a4",
"url": "https://files.pythonhosted.org/packages/88/89/c34caf63029fb7628ec2ebd5c88ae0c9bd17db98c812e4065a4d020ca41f/cffi-1.15.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl"
},
{
"algorithm": "sha256",
"hash": "2012c72d854c2d03e45d06ae57f40d78e5770d252f195b93f581acf3ba44496e",
"url": "https://files.pythonhosted.org/packages/aa/02/ab15b3aa572759df752491d5fa0f74128cd14e002e8e3257c1ab1587810b/cffi-1.15.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl"
},
{
"algorithm": "sha256",
"hash": "5635bd9cb9731e6d4a1132a498dd34f764034a8ce60cef4f5319c0541159392f",
"url": "https://files.pythonhosted.org/packages/af/da/9441d56d7dd19d07dcc40a2a5031a1f51c82a27cee3705edf53dadcac398/cffi-1.15.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl"
},
{
"algorithm": "sha256",
"hash": "39d39875251ca8f612b6f33e6b1195af86d1b3e60086068be9cc053aa4376e21",
"url": "https://files.pythonhosted.org/packages/e8/ff/c4b7a358526f231efa46a375c959506c87622fb4a2c5726e827c55e6adf2/cffi-1.15.1-cp310-cp310-macosx_10_9_x86_64.whl"
},
{
"algorithm": "sha256",
"hash": "285d29981935eb726a4399badae8f0ffdff4f5050eaa6d0cfc3f64b857b77185",
"url": "https://files.pythonhosted.org/packages/ea/be/c4ad40ad441ac847b67c7a37284ae3c58f39f3e638c6b0f85fb662233825/cffi-1.15.1-cp310-cp310-macosx_11_0_arm64.whl"
},
{
"algorithm": "sha256",
"hash": "3eb6971dcff08619f8d91607cfc726518b6fa2a9eba42856be181c6d0d9515fd",
"url": "https://files.pythonhosted.org/packages/ed/a3/c5f01988ddb70a187c3e6112152e01696188c9f8a4fa4c68aa330adbb179/cffi-1.15.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl"
},
{
"algorithm": "sha256",
"hash": "21157295583fe8943475029ed5abdcf71eb3911894724e360acff1d61c1d54bc",
"url": "https://files.pythonhosted.org/packages/ef/41/19da352d341963d29a33bdb28433ba94c05672fb16155f794fad3fd907b0/cffi-1.15.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl"
}
],
"project_name": "cffi",
"requires_dists": [
"pycparser"
],
"requires_python": null,
"version": "1.15.1"
},
{
"artifacts": [
{
"algorithm": "sha256",
"hash": "83e9a75d1911279afd89352c68b45348559d1fc0506b054b346651b5e7fee29f",
"url": "https://files.pythonhosted.org/packages/db/51/a507c856293ab05cdc1db77ff4bc1268ddd39f29e7dc4919aa497f0adbec/charset_normalizer-2.1.1-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "5a3d016c7c547f69d6f81fb0db9449ce888b418b5b9952cc5e6e66843e9dd845",
"url": "https://files.pythonhosted.org/packages/a1/34/44964211e5410b051e4b8d2869c470ae8a68ae274953b1c7de6d98bbcf94/charset-normalizer-2.1.1.tar.gz"
}
],
"project_name": "charset-normalizer",
"requires_dists": [
"unicodedata2; extra == \"unicode_backport\""
],
"requires_python": ">=3.6.0",
"version": "2.1.1"
},