-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathLOG
More file actions
2365 lines (2226 loc) · 311 KB
/
LOG
File metadata and controls
2365 lines (2226 loc) · 311 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
2023-01-25T14:58:39,134 Using pip 22.3 from /Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/site-packages/pip (python 3.11)
2023-01-25T14:58:39,135 Non-user install because site-packages writeable
2023-01-25T14:58:39,198 Created temporary directory: /private/tmp/pip-build-tracker-aoc5j9e_
2023-01-25T14:58:39,199 Initialized build tracking at /private/tmp/pip-build-tracker-aoc5j9e_
2023-01-25T14:58:39,199 Created build tracker: /private/tmp/pip-build-tracker-aoc5j9e_
2023-01-25T14:58:39,199 Entered build tracker: /private/tmp/pip-build-tracker-aoc5j9e_
2023-01-25T14:58:39,199 Created temporary directory: /private/tmp/pip-install-hsd5_zeu
2023-01-25T14:58:39,200 Created temporary directory: /private/tmp/pip-ephem-wheel-cache-rdkeffmf
2023-01-25T14:58:39,273 1 location(s) to search for versions of mpi4py:
2023-01-25T14:58:39,273 * https://pypi.org/simple/mpi4py/
2023-01-25T14:58:39,273 Fetching project page and analyzing links: https://pypi.org/simple/mpi4py/
2023-01-25T14:58:39,273 Getting page https://pypi.org/simple/mpi4py/
2023-01-25T14:58:39,274 Found index url https://pypi.org/simple
2023-01-25T14:58:39,346 Fetched page https://pypi.org/simple/mpi4py/ as application/vnd.pypi.simple.v1+json
2023-01-25T14:58:39,353 Found link https://files.pythonhosted.org/packages/66/95/408262f2c52448f785a419bf03aedea8312d33a576d3717b71cd22563f98/mpi4py-0.4.0rc1.tar.gz (from https://pypi.org/simple/mpi4py/), version: 0.4.0rc1
2023-01-25T14:58:39,353 Found link https://files.pythonhosted.org/packages/4a/ab/1a340996829b32708648a56095ecdd0610866ea8e95c56a44e6e65771bd5/mpi4py-0.4.0rc2.tar.gz (from https://pypi.org/simple/mpi4py/), version: 0.4.0rc2
2023-01-25T14:58:39,353 Found link https://files.pythonhosted.org/packages/22/6a/48228aae0c26d766649f8df95e038137f427dbfdb0111fdaa291afbfeac3/mpi4py-0.4.0rc3.tar.gz (from https://pypi.org/simple/mpi4py/), version: 0.4.0rc3
2023-01-25T14:58:39,353 Found link https://files.pythonhosted.org/packages/c4/a4/b1ce83dc46b0272ab1d572f2e03612e82cf42b5cae8e81fda7069afdba5b/mpi4py-0.4.0rc4.tar.gz (from https://pypi.org/simple/mpi4py/), version: 0.4.0rc4
2023-01-25T14:58:39,353 Found link https://files.pythonhosted.org/packages/0d/1e/665e5440ee9a04c2c9a922481e239374de7f7fb63e43d40c4a4a9b10d6cc/mpi4py-0.4.0.tar.gz (from https://pypi.org/simple/mpi4py/), version: 0.4.0
2023-01-25T14:58:39,354 Found link https://files.pythonhosted.org/packages/63/ad/6086e50d741edde21278a7465e207d573f8c2f68591611efb292c4c2d570/mpi4py-0.5.0.tar.gz (from https://pypi.org/simple/mpi4py/), version: 0.5.0
2023-01-25T14:58:39,354 Found link https://files.pythonhosted.org/packages/37/35/71c1f1d0a559442bd7bc5165944a4ea8bfd3ef2900778bddfd8d1c61b9c1/mpi4py-0.6.0.tar.gz (from https://pypi.org/simple/mpi4py/), version: 0.6.0
2023-01-25T14:58:39,354 Found link https://files.pythonhosted.org/packages/26/b4/1a9678ec113b5c654477354169131c88be3f65e665d7de7c5ef306f2f2a5/mpi4py-1.3.1.tar.gz (from https://pypi.org/simple/mpi4py/), version: 1.3.1
2023-01-25T14:58:39,370 Skipping link: none of the wheel's tags (cp26-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/da/b1/e9e65d04f4a701414975a975c99906eda61a40ad6c4d8d794aeb2746ce1a/mpi4py-2.0.0-cp26-none-win32.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T14:58:39,370 Skipping link: none of the wheel's tags (cp26-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/79/aa/f005fb538957d70b79000ac9bf871bc22c2966074078d6497f2959425442/mpi4py-2.0.0-cp26-none-win_amd64.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T14:58:39,371 Skipping link: none of the wheel's tags (cp27-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/2d/90/ebe9baee56cdaecb9c2979124d1b9670210f36af3bdd3506f4ff0954ff73/mpi4py-2.0.0-cp27-none-win32.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T14:58:39,371 Skipping link: none of the wheel's tags (cp27-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/15/51/6bf7a00ba213768ce9447e1f27fd80786d5f752cf15019d838390983f236/mpi4py-2.0.0-cp27-none-win_amd64.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T14:58:39,371 Skipping link: none of the wheel's tags (cp33-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e9/e7/5c7792992e56aacf8ae4ebb3538a06d518e304a6a295fae4bfe9111450cb/mpi4py-2.0.0-cp33-none-win32.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T14:58:39,372 Skipping link: none of the wheel's tags (cp33-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/78/a2/ef59cf02fc086da47deb555e6497a4b79079908782163e56200ae28c1952/mpi4py-2.0.0-cp33-none-win_amd64.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T14:58:39,372 Skipping link: none of the wheel's tags (cp34-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/93/dd/1453bb87ebe3aa803c6310f8e65213b55ed3068f7e0ec1c2cd39ac5d2461/mpi4py-2.0.0-cp34-none-win32.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T14:58:39,372 Skipping link: none of the wheel's tags (cp34-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/cd/b0/97855121edf6c5ae8d54db1762785f7d976b4b02d4565d7129d3b95ceed6/mpi4py-2.0.0-cp34-none-win_amd64.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T14:58:39,373 Skipping link: none of the wheel's tags (cp35-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/67/54/134470ec8bfb054be35f44746dd948115cf8678634fb1482d369d1bc767c/mpi4py-2.0.0-cp35-none-win32.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T14:58:39,373 Skipping link: none of the wheel's tags (cp35-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/0e/aa/d769bd7e110321b4d25bc2435432b0c6ed940cf6d149c2b33f3db305a7bd/mpi4py-2.0.0-cp35-none-win_amd64.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T14:58:39,373 Found link https://files.pythonhosted.org/packages/ee/b8/f443e1de0b6495479fc73c5863b7b5272a4ece5122e3589db6cd3bb57eeb/mpi4py-2.0.0.tar.gz (from https://pypi.org/simple/mpi4py/), version: 2.0.0
2023-01-25T14:58:39,373 Skipping link: none of the wheel's tags (cp27-cp27m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/61/0e/3e03d06001fde08925369465095407c1b7af28812992a204396bfdd03d63/mpi4py-3.0.0-cp27-cp27m-win32.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T14:58:39,374 Skipping link: none of the wheel's tags (cp27-cp27m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/4d/14/4df0ba0247a94c93a227d99f7d0ffb7a06b0d33bc73460c5ea16ead5b800/mpi4py-3.0.0-cp27-cp27m-win_amd64.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T14:58:39,374 Skipping link: none of the wheel's tags (cp33-cp33m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/55/7f/157c971c815562e43b5533c823bdd9661ffe682d90201d80ab6bae640ba8/mpi4py-3.0.0-cp33-cp33m-win32.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T14:58:39,374 Skipping link: none of the wheel's tags (cp33-cp33m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/75/d5/a2a890ca01871c4c2fc6c7548dedb0ff97947d649572c4a40aa847823631/mpi4py-3.0.0-cp33-cp33m-win_amd64.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T14:58:39,375 Skipping link: none of the wheel's tags (cp34-cp34m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a7/cc/2c93f81e035a8cb86fd0739bf7f71ef6e966ff75b7bda549d85c40080219/mpi4py-3.0.0-cp34-cp34m-win32.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T14:58:39,375 Skipping link: none of the wheel's tags (cp34-cp34m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/cd/b5/c41802679614f7b678be5db9a22ee8245f99791730bb661e4d86e3819b36/mpi4py-3.0.0-cp34-cp34m-win_amd64.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T14:58:39,375 Skipping link: none of the wheel's tags (cp35-cp35m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b3/12/df5501d54665bd75a383427c3197e97d646e0f0e4c6ba0b6d2e3fbd7542c/mpi4py-3.0.0-cp35-cp35m-win32.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T14:58:39,376 Skipping link: none of the wheel's tags (cp35-cp35m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d8/ff/b13a6d029b09af448c6b31ea498a0f8394ce06428f3ac7264ed3c79b144c/mpi4py-3.0.0-cp35-cp35m-win_amd64.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T14:58:39,376 Skipping link: none of the wheel's tags (cp36-cp36m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/61/e6/24643377d4a08ee4d60e1fd35828ba7105d2ee350162c2f4f28fbef30b48/mpi4py-3.0.0-cp36-cp36m-win32.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T14:58:39,376 Skipping link: none of the wheel's tags (cp36-cp36m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/06/b3/1996abb9a549a81c1b92750dd76147224b5265db3ce71005a0819aaa7591/mpi4py-3.0.0-cp36-cp36m-win_amd64.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T14:58:39,376 Found link https://files.pythonhosted.org/packages/31/27/1288918ac230cc9abc0da17d84d66f3db477757d90b3d6b070d709391a15/mpi4py-3.0.0.tar.gz (from https://pypi.org/simple/mpi4py/), version: 3.0.0
2023-01-25T14:58:39,377 Skipping link: none of the wheel's tags (cp27-cp27m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/7c/89/31d72b64129a56927d1c7e7a5ab1c602d4974b96c8989edd3aa697641ee0/mpi4py-3.0.1-cp27-cp27m-win32.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T14:58:39,377 Skipping link: none of the wheel's tags (cp27-cp27m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/0c/0d/b7c908468b664465797ae1dc9f21f3a9f30c3010bfdc649e1a3b4df91cb9/mpi4py-3.0.1-cp27-cp27m-win_amd64.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T14:58:39,377 Skipping link: none of the wheel's tags (cp33-cp33m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e0/fb/270e49448e01ceb9beed237137bb30615abf89a9832d7d9e9130e5eab1e2/mpi4py-3.0.1-cp33-cp33m-win32.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T14:58:39,378 Skipping link: none of the wheel's tags (cp33-cp33m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/5a/6b/ff079d3e231f7f79a854b090968f1b41757226e833f8db3e70df81032633/mpi4py-3.0.1-cp33-cp33m-win_amd64.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T14:58:39,378 Skipping link: none of the wheel's tags (cp34-cp34m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e1/20/17eab131820175ec3888c85258e0c5970ff2c95b583e2eb6ec5e8c0aa28b/mpi4py-3.0.1-cp34-cp34m-win32.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T14:58:39,378 Skipping link: none of the wheel's tags (cp34-cp34m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/81/eb/c67eb3e82356238ae11686b1612ef2ed2bbb482cae4b6964a9e615614f53/mpi4py-3.0.1-cp34-cp34m-win_amd64.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T14:58:39,378 Skipping link: none of the wheel's tags (cp35-cp35m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/df/aa/229b2a3a8e8f39f938f2c243ec49f449c0d71a3c81f4af0b5ab26ddeb85a/mpi4py-3.0.1-cp35-cp35m-win32.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T14:58:39,379 Skipping link: none of the wheel's tags (cp35-cp35m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c4/ac/de4df32fe9770a6b6c1ba051cc665208aa26c85045e9581c61f6226319d4/mpi4py-3.0.1-cp35-cp35m-win_amd64.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T14:58:39,379 Skipping link: none of the wheel's tags (cp36-cp36m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d2/c8/5ff70b94a73118a3abd3e4dcd79c569d74f397f341a1957533a051bc3210/mpi4py-3.0.1-cp36-cp36m-win32.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T14:58:39,379 Skipping link: none of the wheel's tags (cp36-cp36m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a9/db/366c845f0230c72950e82ad310af96e8e6b6975e3472cc1d33f62bea5832/mpi4py-3.0.1-cp36-cp36m-win_amd64.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T14:58:39,380 Skipping link: none of the wheel's tags (cp37-cp37m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c5/7f/4ae06216dbb5e98e2d9af1ab8f5a72e989f2ab97eb89b127e35c75a78fab/mpi4py-3.0.1-cp37-cp37m-win32.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T14:58:39,380 Skipping link: none of the wheel's tags (cp37-cp37m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b7/91/48776b0e0115a76628a9153ed121c3a6c82dbd1b6423eeaa89eb2d8b6c18/mpi4py-3.0.1-cp37-cp37m-win_amd64.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T14:58:39,380 Found link https://files.pythonhosted.org/packages/55/a2/c827b196070e161357b49287fa46d69f25641930fd5f854722319d431843/mpi4py-3.0.1.tar.gz (from https://pypi.org/simple/mpi4py/), version: 3.0.1
2023-01-25T14:58:39,380 Skipping link: none of the wheel's tags (cp27-cp27m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/5c/c8/8d088d88d6f7b79c419269a102a7b9f21c701f28576adec903b33832414f/mpi4py-3.0.2-cp27-cp27m-win32.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T14:58:39,381 Skipping link: none of the wheel's tags (cp27-cp27m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/31/1d/e459c995eb00ed707cb83dec4a41dcb904a69252c2f0dd7b4ecd11752855/mpi4py-3.0.2-cp27-cp27m-win_amd64.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T14:58:39,381 Skipping link: none of the wheel's tags (cp33-cp33m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/02/4f/dc4f1a93c39009bd91d3cdfba0ab1972dabfda560b071f02b17c8fe6eccc/mpi4py-3.0.2-cp33-cp33m-win32.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T14:58:39,381 Skipping link: none of the wheel's tags (cp33-cp33m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b0/d8/4dc0dfcd7e469f916410206674f7cba271fbad608019b7373c5b6e051854/mpi4py-3.0.2-cp33-cp33m-win_amd64.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T14:58:39,382 Skipping link: none of the wheel's tags (cp34-cp34m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/0e/d3/39231cb032bbbd4cf8897ec4cad966d203f8e5f9fddb3c82b109c7e60e79/mpi4py-3.0.2-cp34-cp34m-win32.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T14:58:39,382 Skipping link: none of the wheel's tags (cp34-cp34m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/25/66/39c53345fe3fad97ea9c33de376d2c79359775a43cc6ee53bcbcf09dd688/mpi4py-3.0.2-cp34-cp34m-win_amd64.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T14:58:39,382 Skipping link: none of the wheel's tags (cp35-cp35m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/5f/78/31734d54367ea93d65568580ecf6547eef7249334853e1eca7590404ae78/mpi4py-3.0.2-cp35-cp35m-win32.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T14:58:39,383 Skipping link: none of the wheel's tags (cp35-cp35m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/fb/a5/045e1a60e5444fd972a36897bb963ae32d6411d85e813bc592c5889f74f2/mpi4py-3.0.2-cp35-cp35m-win_amd64.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T14:58:39,383 Skipping link: none of the wheel's tags (cp36-cp36m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ed/bc/4427013f565c80afa6b86fcea69ec4959ffd9b017952b1bb2549fe36f1aa/mpi4py-3.0.2-cp36-cp36m-win32.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T14:58:39,383 Skipping link: none of the wheel's tags (cp36-cp36m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/9b/dc/064648c82b5ede755a9d7125d1460b3f89a8ab504465f7e707c403cf884d/mpi4py-3.0.2-cp36-cp36m-win_amd64.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T14:58:39,383 Skipping link: none of the wheel's tags (cp37-cp37m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d0/8d/692b3a22ad7c00373709783480263341a845cde0cbcb5cfb4aeee728cb4f/mpi4py-3.0.2-cp37-cp37m-win32.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T14:58:39,384 Skipping link: none of the wheel's tags (cp37-cp37m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ba/35/edded4db8a7f84e4079d80aa0d91d3453782d7dd0939717c78c7e263c6ef/mpi4py-3.0.2-cp37-cp37m-win_amd64.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T14:58:39,384 Found link https://files.pythonhosted.org/packages/04/f5/a615603ce4ab7f40b65dba63759455e3da610d9a155d4d4cece1d8fd6706/mpi4py-3.0.2.tar.gz (from https://pypi.org/simple/mpi4py/), version: 3.0.2
2023-01-25T14:58:39,384 Skipping link: none of the wheel's tags (cp27-cp27m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f6/31/8c82ff6ff8d4334c5cfd4221deae729468bba39058d8e0c3242b08d0f81f/mpi4py-3.0.3-cp27-cp27m-win32.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T14:58:39,385 Skipping link: none of the wheel's tags (cp27-cp27m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/00/49/ebd60034845ef7e48e8f5ac714b53f19d8602ccbf95efdf6686c22ea6a66/mpi4py-3.0.3-cp27-cp27m-win_amd64.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T14:58:39,385 Skipping link: none of the wheel's tags (cp33-cp33m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/53/cf/014ef551b282bf5a6f1dd7e530453904595d9ffce1c0830287afbb5d2fac/mpi4py-3.0.3-cp33-cp33m-win32.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T14:58:39,385 Skipping link: none of the wheel's tags (cp33-cp33m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/43/e9/0f9530d0f80b261e75059ff0169e674332f35ce7ed19cf5f16c12be16292/mpi4py-3.0.3-cp33-cp33m-win_amd64.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T14:58:39,385 Skipping link: none of the wheel's tags (cp34-cp34m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e6/ec/55a114f6982f9cbf134e0617af4f92f0b58e7ffe0a0b77af2ff5b2b8339b/mpi4py-3.0.3-cp34-cp34m-win32.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T14:58:39,386 Skipping link: none of the wheel's tags (cp34-cp34m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b0/a0/25cd4b1b40fc5e1957e3522d0cfec15f469afffb12343665e93cac65ba63/mpi4py-3.0.3-cp34-cp34m-win_amd64.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T14:58:39,386 Skipping link: none of the wheel's tags (cp35-cp35m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d8/18/900b97f626834be28218de744d70618c4c006fbfb42811b51a94be4eb346/mpi4py-3.0.3-cp35-cp35m-win32.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T14:58:39,386 Skipping link: none of the wheel's tags (cp35-cp35m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/75/db/339845c9506b078b0713fd386b3a3332c62ee7d6630a8cf13c57b14b7ec9/mpi4py-3.0.3-cp35-cp35m-win_amd64.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T14:58:39,387 Skipping link: none of the wheel's tags (cp36-cp36m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/05/35/a1dc40f7fc9ce1343c72c5cd6cc12f29c8120017103a878f3d638db3ad77/mpi4py-3.0.3-cp36-cp36m-win32.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T14:58:39,387 Skipping link: none of the wheel's tags (cp36-cp36m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/9c/3d/e3c65860d0e12ba1d75f27246fe13a24d18f8fe74aafc21b421e4ec8083f/mpi4py-3.0.3-cp36-cp36m-win_amd64.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T14:58:39,387 Skipping link: none of the wheel's tags (cp37-cp37m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/19/75/8b66f691ae989b25f403a15766ca36411e13928b7daaed3d18fb2efd7a68/mpi4py-3.0.3-cp37-cp37m-win32.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T14:58:39,387 Skipping link: none of the wheel's tags (cp37-cp37m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ba/ce/7f6f7916a364b43c9b924e7901143325e0d3290a5d1f499766a722662195/mpi4py-3.0.3-cp37-cp37m-win_amd64.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T14:58:39,388 Skipping link: none of the wheel's tags (cp38-cp38-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/8e/a7/f55f87e3fe2abae0f194d1c12d05199b67838d9e84cde1c9f05313a57db9/mpi4py-3.0.3-cp38-cp38-win32.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T14:58:39,388 Skipping link: none of the wheel's tags (cp38-cp38-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/46/da/9f487a1dda7b116fef40d75ed62d8b32fc39d7dcdf73f7232c5d96472922/mpi4py-3.0.3-cp38-cp38-win_amd64.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T14:58:39,388 Skipping link: none of the wheel's tags (cp39-cp39-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/7c/db/06d1d38366bba8441bd551d20f35f363613bcb14731bf03ca7ea1cd1a0af/mpi4py-3.0.3-cp39-cp39-win32.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T14:58:39,389 Skipping link: none of the wheel's tags (cp39-cp39-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e5/7d/435c177d3689f7a9e369010b9b8ca9a74618d6cb4bb909b39962e82b9778/mpi4py-3.0.3-cp39-cp39-win_amd64.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T14:58:39,389 Found link https://files.pythonhosted.org/packages/ec/8f/bbd8de5ba566dd77e408d8136e2bab7fdf2b97ce06cab830ba8b50a2f588/mpi4py-3.0.3.tar.gz (from https://pypi.org/simple/mpi4py/), version: 3.0.3
2023-01-25T14:58:39,389 Skipping link: none of the wheel's tags (cp27-cp27m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d7/c4/6663374a8b990d2d2d0891cd8d5e7ad740bd819f2aa62d74d633b666b9e1/mpi4py-3.1.0-cp27-cp27m-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*')
2023-01-25T14:58:39,389 Skipping link: none of the wheel's tags (cp27-cp27m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d3/6b/7c14f02bc0c50685325613219c1b581e5c6409c6f77f7290df697ec7460d/mpi4py-3.1.0-cp27-cp27m-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*')
2023-01-25T14:58:39,390 Skipping link: none of the wheel's tags (cp35-cp35m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/4f/a8/b6a48031f8e0ccdefac34b51354af7af217f0b87b989ef6a935addb86f24/mpi4py-3.1.0-cp35-cp35m-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*')
2023-01-25T14:58:39,390 Skipping link: none of the wheel's tags (cp35-cp35m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/9e/36/a694b62c407da8251b7e3035714f4af26c23c83c3ce39a89276425122ce7/mpi4py-3.1.0-cp35-cp35m-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*')
2023-01-25T14:58:39,390 Skipping link: none of the wheel's tags (cp36-cp36m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c0/91/e9058962b9c20c35d9a2ed830ad3a19c166888607b58b42ae71606d2585a/mpi4py-3.1.0-cp36-cp36m-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*')
2023-01-25T14:58:39,390 Skipping link: none of the wheel's tags (cp36-cp36m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/53/44/bcaa8f59642e7eecd86e939a5eb24b0f2a36d77332203aeebb976b6e8377/mpi4py-3.1.0-cp36-cp36m-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*')
2023-01-25T14:58:39,391 Skipping link: none of the wheel's tags (cp37-cp37m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c0/b9/f47268b0241aa26342bc2612793936e7795d1e807bbba965c3341325e3fe/mpi4py-3.1.0-cp37-cp37m-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*')
2023-01-25T14:58:39,391 Skipping link: none of the wheel's tags (cp37-cp37m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b4/2a/4f88775ea7e015254fdc188467de8c799e6c67c5ff6c90d98c0250515a38/mpi4py-3.1.0-cp37-cp37m-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*')
2023-01-25T14:58:39,391 Skipping link: none of the wheel's tags (cp38-cp38-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/60/76/8be976a152669c66d2a65ed2fbdbed560addc6b906d90eab4b07390407a7/mpi4py-3.1.0-cp38-cp38-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*')
2023-01-25T14:58:39,392 Skipping link: none of the wheel's tags (cp38-cp38-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d8/ba/82005266e5f71ed17cd116fa81da005e6fc5b97b3e1acba8e76d3ab14792/mpi4py-3.1.0-cp38-cp38-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*')
2023-01-25T14:58:39,392 Skipping link: none of the wheel's tags (cp39-cp39-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e2/15/aa999bbebdd3b9510b397a3c594147314ab196ffad1b19f3343bd1ff35dc/mpi4py-3.1.0-cp39-cp39-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*')
2023-01-25T14:58:39,392 Skipping link: none of the wheel's tags (cp39-cp39-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/99/3b/7e001212f8e528255770a476f33faa79fd79230cfe63a6e263ae77927f08/mpi4py-3.1.0-cp39-cp39-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*')
2023-01-25T14:58:39,393 Found link https://files.pythonhosted.org/packages/1a/a3/3a33c19379cb08cc1be16d1928a899e5b18151c7e8994d315a66017bc46f/mpi4py-3.1.0.tar.gz (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*'), version: 3.1.0
2023-01-25T14:58:39,393 Skipping link: none of the wheel's tags (cp27-cp27m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/0a/03/a17bc9221a1c41024a1c48693e5e8241c96981619f4044788afb82dfddaa/mpi4py-3.1.1-cp27-cp27m-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T14:58:39,393 Skipping link: none of the wheel's tags (cp27-cp27m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a2/3c/c8d416541436769204d0a3dbe9cd37af97cc7edd644e15dad6b54bc2da32/mpi4py-3.1.1-cp27-cp27m-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T14:58:39,393 Skipping link: none of the wheel's tags (cp35-cp35m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/70/1a/6ab872e470c3756aaaf3480eb04b9526395a55c8513cf3977a28cb549757/mpi4py-3.1.1-cp35-cp35m-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T14:58:39,394 Skipping link: none of the wheel's tags (cp35-cp35m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/39/8a/8da22c236456a8f0b5ee2d1086388240a21114c5a269ae809e33893a6c48/mpi4py-3.1.1-cp35-cp35m-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T14:58:39,394 Skipping link: none of the wheel's tags (cp36-cp36m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/cb/d5/40cf0f885f6549dcda4bd5ffd91bdb37ba45e210c4ad5a743b486184a77e/mpi4py-3.1.1-cp36-cp36m-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T14:58:39,394 Skipping link: none of the wheel's tags (cp36-cp36m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c8/d5/dca50c10745b0fe2636fa2cef09defcba6d6840e97cf71a570841bc1313c/mpi4py-3.1.1-cp36-cp36m-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T14:58:39,395 Skipping link: none of the wheel's tags (cp37-cp37m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c4/7a/515d0b6e8710c503c2c2c8bcc259442e7511fa3416c7e5f73560a337d5f3/mpi4py-3.1.1-cp37-cp37m-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T14:58:39,395 Skipping link: none of the wheel's tags (cp37-cp37m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/89/79/5d18ea597c7598657af5dd1d1c208a4b6e72f02ad80e37840a5172cc4620/mpi4py-3.1.1-cp37-cp37m-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T14:58:39,395 Skipping link: none of the wheel's tags (cp38-cp38-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/5e/95/019a7b07efae8a26392ffaead9beae61731f4f5c7703fc3c2a532cd9b42f/mpi4py-3.1.1-cp38-cp38-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T14:58:39,395 Skipping link: none of the wheel's tags (cp38-cp38-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/bf/1a/aeedf3fe2100a2e873bd0ed02bdf26161d4108b69d8f91d620a13674899d/mpi4py-3.1.1-cp38-cp38-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T14:58:39,396 Skipping link: none of the wheel's tags (cp39-cp39-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/22/27/741e0ea4bae5c2cff50a3f8d196e6c2093138a19d2d122df77a6d507f7a2/mpi4py-3.1.1-cp39-cp39-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T14:58:39,396 Skipping link: none of the wheel's tags (cp39-cp39-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/16/b7/d4e5c70f8a158345e8df6bbfdcf368bce9d1f0eb714d8776af375c526e45/mpi4py-3.1.1-cp39-cp39-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T14:58:39,396 Found link https://files.pythonhosted.org/packages/bd/d3/b1e686fcf2fe1677fa010f0a29a1b8a8cd3fd56161aacd59c5be252fe382/mpi4py-3.1.1.tar.gz (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*), version: 3.1.1
2023-01-25T14:58:39,397 Skipping link: none of the wheel's tags (cp27-cp27m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/99/d9/4f48becb4121752465b77cf381c8d6f82664840910e57db5d9a80cecd458/mpi4py-3.1.2-cp27-cp27m-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T14:58:39,397 Skipping link: none of the wheel's tags (cp27-cp27m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/65/fc/de84cbaa2892e029dba11947b87798e8ede50d8db20346eb56528dd1c195/mpi4py-3.1.2-cp27-cp27m-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T14:58:39,397 Skipping link: none of the wheel's tags (cp310-cp310-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/47/96/4c08b371a9ef8241c7642681fb931d16a4381ac413114a8c53fc9b2ae8e3/mpi4py-3.1.2-cp310-cp310-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T14:58:39,397 Skipping link: none of the wheel's tags (cp310-cp310-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b4/e4/5bee8f696d33e346c74f5b39daf9179ee585b900202a64d60d1b5d95d533/mpi4py-3.1.2-cp310-cp310-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T14:58:39,398 Skipping link: none of the wheel's tags (cp35-cp35m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c7/31/41ece2c30f4a1d9d34e8e0b061b9cc4b4119733a6fdeb4f1d29e5b5166a6/mpi4py-3.1.2-cp35-cp35m-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T14:58:39,398 Skipping link: none of the wheel's tags (cp35-cp35m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/83/2b/f5b99b255fd39ec32eaf0df40231137477c095833708c223db35aea0e549/mpi4py-3.1.2-cp35-cp35m-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T14:58:39,398 Skipping link: none of the wheel's tags (cp36-cp36m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d6/99/a51d0ce31b029a29d43c585b998981b5c95c612956bb84004363b676ed8d/mpi4py-3.1.2-cp36-cp36m-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T14:58:39,399 Skipping link: none of the wheel's tags (cp36-cp36m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ea/df/af64256188b3273753bcc1b86681439404753c82c5245cccc87b6775d4d3/mpi4py-3.1.2-cp36-cp36m-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T14:58:39,399 Skipping link: none of the wheel's tags (cp37-cp37m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/cb/66/6e8a18c1657f4e21bbc4e5ff765bd8a70cca25d6b00e23325ba8ea78651d/mpi4py-3.1.2-cp37-cp37m-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T14:58:39,399 Skipping link: none of the wheel's tags (cp37-cp37m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/01/3b/2899665c35b8b48237e19da48e41dc84d311532bf395682abc8faa1df1ad/mpi4py-3.1.2-cp37-cp37m-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T14:58:39,399 Skipping link: none of the wheel's tags (cp38-cp38-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f2/97/156308ac92844b3bb7904d8058b414a59c28b4fd1a9f5850e8d90d541288/mpi4py-3.1.2-cp38-cp38-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T14:58:39,400 Skipping link: none of the wheel's tags (cp38-cp38-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/23/11/5871e126206a88e78253b6e4483bd7a144d09bb880611471d65b932db74d/mpi4py-3.1.2-cp38-cp38-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T14:58:39,400 Skipping link: none of the wheel's tags (cp39-cp39-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d3/13/7d19eb6dca055880a01e30b47ff0901398ff43306009ec311d68bd6c23c6/mpi4py-3.1.2-cp39-cp39-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T14:58:39,400 Skipping link: none of the wheel's tags (cp39-cp39-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/68/4a/38fef7dd9e76d48f3eff90360058819a249696ff9d53fbe0ef730e3da931/mpi4py-3.1.2-cp39-cp39-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T14:58:39,400 Found link https://files.pythonhosted.org/packages/a6/5d/d58de70175c333255120a25abde95dd119af769bfa4c7ab4dd688b2af15f/mpi4py-3.1.2.tar.gz (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*), version: 3.1.2
2023-01-25T14:58:39,401 Skipping link: none of the wheel's tags (cp27-cp27m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/7d/07/f978a452be22baa2462085fff01f6ddffdea07c66d010de910e8cca71483/mpi4py-3.1.3-cp27-cp27m-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T14:58:39,401 Skipping link: none of the wheel's tags (cp27-cp27m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/62/b3/7231f50e490ea6c4882dce2891c678a5ad19854ec66cfff00ae12ab31a54/mpi4py-3.1.3-cp27-cp27m-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T14:58:39,401 Skipping link: none of the wheel's tags (cp310-cp310-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b0/59/74791219a67430010b9dc3d2c1d43a36c75254243d5a9958ea884ccc7552/mpi4py-3.1.3-cp310-cp310-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T14:58:39,402 Skipping link: none of the wheel's tags (cp310-cp310-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/88/b2/c03f6b97d379e06d77f2a3c3e9dac5f068cf9cd55ccb4afd8daf0d8f54cc/mpi4py-3.1.3-cp310-cp310-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T14:58:39,402 Skipping link: none of the wheel's tags (cp35-cp35m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/97/ff/b2e9411f301ab0be1752b09812c65407cdc09a7d136102ddd60e8b128cbc/mpi4py-3.1.3-cp35-cp35m-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T14:58:39,402 Skipping link: none of the wheel's tags (cp35-cp35m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f7/23/90e9454dcda243bef36bda3d09639c42acd9fc2531b6eb3cd298adbe38e8/mpi4py-3.1.3-cp35-cp35m-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T14:58:39,402 Skipping link: none of the wheel's tags (cp36-cp36m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/42/c7/fa16fc147712649628e15ac94630ab464d38e00a6e092f66241d028a2443/mpi4py-3.1.3-cp36-cp36m-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T14:58:39,403 Skipping link: none of the wheel's tags (cp36-cp36m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/08/b6/745fbef030505d8a430cc32da06c6ccde59a2911efa9489eb49c272dfc02/mpi4py-3.1.3-cp36-cp36m-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T14:58:39,403 Skipping link: none of the wheel's tags (cp37-cp37m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/48/f7/8305930561a2b4c12559888ee1066717c200a939c9d58aaafdb87d643ffd/mpi4py-3.1.3-cp37-cp37m-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T14:58:39,403 Skipping link: none of the wheel's tags (cp37-cp37m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/92/0c/72405d632c87e7722ec5b4c9774dfd812fcecdc8adcffd245344fc7fa615/mpi4py-3.1.3-cp37-cp37m-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T14:58:39,403 Skipping link: none of the wheel's tags (cp38-cp38-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/df/1d/c09b1cd769475506bd1fb04339731456eb179ce7e94e2cb4d47cca499a1f/mpi4py-3.1.3-cp38-cp38-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T14:58:39,404 Skipping link: none of the wheel's tags (cp38-cp38-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/dc/b3/6b4f40e38c01966b12f05f76195c53c346eb2115a9f581ddfefcb564f95a/mpi4py-3.1.3-cp38-cp38-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T14:58:39,404 Skipping link: none of the wheel's tags (cp39-cp39-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/11/4e/44c0903b27033c9f88671f0bfbdb33aee9c7198b4b5292be6bbcd3f0e778/mpi4py-3.1.3-cp39-cp39-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T14:58:39,404 Skipping link: none of the wheel's tags (cp39-cp39-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f6/28/1dc7e2726b5fd08a61ef3fa2320237e31df2e7ab91f58dcf829bc6d6054c/mpi4py-3.1.3-cp39-cp39-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T14:58:39,405 Found link https://files.pythonhosted.org/packages/20/50/d358fe2b56075163b75eca30c2faa6455c50b9978dd26f0fc4e3879b1062/mpi4py-3.1.3.tar.gz (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*), version: 3.1.3
2023-01-25T14:58:39,405 Skipping link: none of the wheel's tags (cp27-cp27m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/70/d3/6260334dee4eeee5b3cfdca13d43a9b83154ba02f98aff4729dde6726a75/mpi4py-3.1.4-cp27-cp27m-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T14:58:39,405 Skipping link: none of the wheel's tags (cp27-cp27m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/21/1b/2ceccb6806fb9777221be75d677337f80036f8ed7ef44ab7b42c1c786b36/mpi4py-3.1.4-cp27-cp27m-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T14:58:39,405 Skipping link: none of the wheel's tags (cp310-cp310-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/14/26/ed324d2c10ad987b58bf06cdb796974019b309aa8f57210fc7a299bb5afd/mpi4py-3.1.4-cp310-cp310-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T14:58:39,406 Skipping link: none of the wheel's tags (cp310-cp310-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/cc/dd/9af685a676c43d79d42f77e09d09e054a9a0b3952fe9842a51af0e7d8c06/mpi4py-3.1.4-cp310-cp310-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T14:58:39,406 Skipping link: none of the wheel's tags (cp311-cp311-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/02/9b/4f3ce5d2f319d4e5bd5637c883039d0c96cb238d9fab7e13532d1c8bc13e/mpi4py-3.1.4-cp311-cp311-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T14:58:39,406 Skipping link: none of the wheel's tags (cp311-cp311-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b9/31/e80c1fb71fac3203ab54c4115211cbec2b9d8575df895b202abaee9a65a1/mpi4py-3.1.4-cp311-cp311-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T14:58:39,406 Skipping link: none of the wheel's tags (cp35-cp35m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ba/dd/3f0796bc4986d722f2bbcc75c9cae0af220e0904022f5c0b328b96f98388/mpi4py-3.1.4-cp35-cp35m-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T14:58:39,407 Skipping link: none of the wheel's tags (cp35-cp35m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/5e/f6/b46ac69e986898eb790aa4a4626dea06a11b17f84b9d8442ca0e81799c58/mpi4py-3.1.4-cp35-cp35m-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T14:58:39,407 Skipping link: none of the wheel's tags (cp36-cp36m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/55/e0/c716e83ac8a2c3364d122a25561535e7c7f30ddb170407261e2b84c3db09/mpi4py-3.1.4-cp36-cp36m-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T14:58:39,407 Skipping link: none of the wheel's tags (cp36-cp36m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/24/21/22cb3e76962a977691f901452b64e7c18721808617be5d22cf936108d945/mpi4py-3.1.4-cp36-cp36m-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T14:58:39,407 Skipping link: none of the wheel's tags (cp37-cp37m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/04/e7/029680f73ac7bc675c697de812e587f8f8851c644cba6eabfd1ab6575271/mpi4py-3.1.4-cp37-cp37m-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T14:58:39,408 Skipping link: none of the wheel's tags (cp37-cp37m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a8/d7/6ba539e8233e14b29c66eca6199f0dcbe7b2b79b9496bd68dd1695d73bf7/mpi4py-3.1.4-cp37-cp37m-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T14:58:39,408 Skipping link: none of the wheel's tags (cp38-cp38-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/6c/8e/2e4b165e729a0bb64ae0aaf8457d6fda918229a84a746f97377ad1de81d9/mpi4py-3.1.4-cp38-cp38-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T14:58:39,408 Skipping link: none of the wheel's tags (cp38-cp38-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d1/68/65d808ea61a902a56ffccb1e0ee6a0dbb2765f72fed442eb8055c89662ac/mpi4py-3.1.4-cp38-cp38-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T14:58:39,408 Skipping link: none of the wheel's tags (cp39-cp39-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/5e/23/a96fbf1d3e559ef6612be31572a352ad0d63ed80a4d6f7b6e59553ba85b0/mpi4py-3.1.4-cp39-cp39-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T14:58:39,408 Skipping link: none of the wheel's tags (cp39-cp39-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/98/4e/5bfd29c67e42c2a86e231074db2751f86f0a939129964e3cadf3c6791d2d/mpi4py-3.1.4-cp39-cp39-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T14:58:39,409 Found link https://files.pythonhosted.org/packages/bc/f2/749af7fd0e7703ddca6cea525ab40f26c3ca6cbe6c23658441c6f9705860/mpi4py-3.1.4.tar.gz (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*), version: 3.1.4
2023-01-25T14:58:39,409 Skipping link: not a file: https://pypi.org/simple/mpi4py/
2023-01-25T14:58:39,410 Given no hashes to check 14 links for project 'mpi4py': discarding no candidates
2023-01-25T14:58:39,414 Collecting mpi4py
2023-01-25T14:58:39,414 Created temporary directory: /private/tmp/pip-unpack-xqcvwg7n
2023-01-25T14:58:39,450 Using cached mpi4py-3.1.4.tar.gz (2.5 MB)
2023-01-25T14:58:39,944 Added mpi4py from https://files.pythonhosted.org/packages/bc/f2/749af7fd0e7703ddca6cea525ab40f26c3ca6cbe6c23658441c6f9705860/mpi4py-3.1.4.tar.gz to build tracker '/private/tmp/pip-build-tracker-aoc5j9e_'
2023-01-25T14:58:39,949 Created temporary directory: /private/tmp/pip-build-env-hx7qjzry
2023-01-25T14:58:39,951 Running command pip subprocess to install build dependencies
2023-01-25T14:58:40,392 Using pip 22.3 from /Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/site-packages/pip (python 3.11)
2023-01-25T14:58:40,714 Collecting setuptools>=40.9.0
2023-01-25T14:58:40,720 Using cached setuptools-66.1.1-py3-none-any.whl (1.3 MB)
2023-01-25T14:58:40,784 Collecting wheel
2023-01-25T14:58:40,786 Using cached wheel-0.38.4-py3-none-any.whl (36 kB)
2023-01-25T14:58:40,889 Installing collected packages: wheel, setuptools
2023-01-25T14:58:40,985 Creating /private/tmp/pip-build-env-hx7qjzry/overlay/bin
2023-01-25T14:58:40,986 changing mode of /private/tmp/pip-build-env-hx7qjzry/overlay/bin/wheel to 755
2023-01-25T14:58:42,672 Successfully installed setuptools-66.1.1 wheel-0.38.4
2023-01-25T14:58:42,794 [notice] A new release of pip available: 22.3 -> 22.3.1
2023-01-25T14:58:42,794 [notice] To update, run: python3 -m pip install --upgrade pip
2023-01-25T14:58:42,881 Running command Getting requirements to build wheel
2023-01-25T14:58:43,598 running egg_info
2023-01-25T14:58:43,599 writing src/mpi4py.egg-info/PKG-INFO
2023-01-25T14:58:43,602 writing dependency_links to src/mpi4py.egg-info/dependency_links.txt
2023-01-25T14:58:43,603 writing top-level names to src/mpi4py.egg-info/top_level.txt
2023-01-25T14:58:43,613 reading manifest file 'src/mpi4py.egg-info/SOURCES.txt'
2023-01-25T14:58:43,620 reading manifest template 'MANIFEST.in'
2023-01-25T14:58:43,749 adding license file 'LICENSE.rst'
2023-01-25T14:58:43,758 writing manifest file 'src/mpi4py.egg-info/SOURCES.txt'
2023-01-25T14:58:43,796 Created temporary directory: /private/tmp/pip-modern-metadata-2i_ercvu
2023-01-25T14:58:43,797 Running command Preparing metadata (pyproject.toml)
2023-01-25T14:58:44,103 running dist_info
2023-01-25T14:58:44,104 creating /private/tmp/pip-modern-metadata-2i_ercvu/mpi4py.egg-info
2023-01-25T14:58:44,105 writing /private/tmp/pip-modern-metadata-2i_ercvu/mpi4py.egg-info/PKG-INFO
2023-01-25T14:58:44,106 writing dependency_links to /private/tmp/pip-modern-metadata-2i_ercvu/mpi4py.egg-info/dependency_links.txt
2023-01-25T14:58:44,106 writing top-level names to /private/tmp/pip-modern-metadata-2i_ercvu/mpi4py.egg-info/top_level.txt
2023-01-25T14:58:44,106 writing manifest file '/private/tmp/pip-modern-metadata-2i_ercvu/mpi4py.egg-info/SOURCES.txt'
2023-01-25T14:58:44,114 reading manifest file '/private/tmp/pip-modern-metadata-2i_ercvu/mpi4py.egg-info/SOURCES.txt'
2023-01-25T14:58:44,115 reading manifest template 'MANIFEST.in'
2023-01-25T14:58:44,237 adding license file 'LICENSE.rst'
2023-01-25T14:58:44,243 writing manifest file '/private/tmp/pip-modern-metadata-2i_ercvu/mpi4py.egg-info/SOURCES.txt'
2023-01-25T14:58:44,243 creating '/private/tmp/pip-modern-metadata-2i_ercvu/mpi4py-3.1.4.dist-info'
2023-01-25T14:58:44,338 Source in /private/tmp/pip-install-hsd5_zeu/mpi4py_aee0281e8cd94e24890752e58b3e208a has version 3.1.4, which satisfies requirement mpi4py from https://files.pythonhosted.org/packages/bc/f2/749af7fd0e7703ddca6cea525ab40f26c3ca6cbe6c23658441c6f9705860/mpi4py-3.1.4.tar.gz
2023-01-25T14:58:44,339 Removed mpi4py from https://files.pythonhosted.org/packages/bc/f2/749af7fd0e7703ddca6cea525ab40f26c3ca6cbe6c23658441c6f9705860/mpi4py-3.1.4.tar.gz from build tracker '/private/tmp/pip-build-tracker-aoc5j9e_'
2023-01-25T14:58:44,343 Created temporary directory: /private/tmp/pip-unpack-nks8zy4r
2023-01-25T14:58:44,343 Building wheels for collected packages: mpi4py
2023-01-25T14:58:44,344 Created temporary directory: /private/tmp/pip-wheel-adj14sc_
2023-01-25T14:58:44,344 Destination directory: /private/tmp/pip-wheel-adj14sc_
2023-01-25T14:58:44,345 Running command Building wheel for mpi4py (pyproject.toml)
2023-01-25T14:58:44,650 running bdist_wheel
2023-01-25T14:58:44,654 running build
2023-01-25T14:58:44,654 running build_src
2023-01-25T14:58:44,654 running build_py
2023-01-25T14:58:44,655 creating build
2023-01-25T14:58:44,655 creating build/lib.macosx-10.9-universal2-cpython-311
2023-01-25T14:58:44,655 creating build/lib.macosx-10.9-universal2-cpython-311/mpi4py
2023-01-25T14:58:44,656 copying src/mpi4py/run.py -> build/lib.macosx-10.9-universal2-cpython-311/mpi4py
2023-01-25T14:58:44,657 copying src/mpi4py/__init__.py -> build/lib.macosx-10.9-universal2-cpython-311/mpi4py
2023-01-25T14:58:44,658 copying src/mpi4py/bench.py -> build/lib.macosx-10.9-universal2-cpython-311/mpi4py
2023-01-25T14:58:44,659 copying src/mpi4py/__main__.py -> build/lib.macosx-10.9-universal2-cpython-311/mpi4py
2023-01-25T14:58:44,661 creating build/lib.macosx-10.9-universal2-cpython-311/mpi4py/futures
2023-01-25T14:58:44,662 copying src/mpi4py/futures/_base.py -> build/lib.macosx-10.9-universal2-cpython-311/mpi4py/futures
2023-01-25T14:58:44,668 copying src/mpi4py/futures/server.py -> build/lib.macosx-10.9-universal2-cpython-311/mpi4py/futures
2023-01-25T14:58:44,669 copying src/mpi4py/futures/__init__.py -> build/lib.macosx-10.9-universal2-cpython-311/mpi4py/futures
2023-01-25T14:58:44,670 copying src/mpi4py/futures/_core.py -> build/lib.macosx-10.9-universal2-cpython-311/mpi4py/futures
2023-01-25T14:58:44,673 copying src/mpi4py/futures/pool.py -> build/lib.macosx-10.9-universal2-cpython-311/mpi4py/futures
2023-01-25T14:58:44,679 copying src/mpi4py/futures/aplus.py -> build/lib.macosx-10.9-universal2-cpython-311/mpi4py/futures
2023-01-25T14:58:44,680 copying src/mpi4py/futures/__main__.py -> build/lib.macosx-10.9-universal2-cpython-311/mpi4py/futures
2023-01-25T14:58:44,682 copying src/mpi4py/futures/_lib.py -> build/lib.macosx-10.9-universal2-cpython-311/mpi4py/futures
2023-01-25T14:58:44,690 creating build/lib.macosx-10.9-universal2-cpython-311/mpi4py/util
2023-01-25T14:58:44,691 copying src/mpi4py/util/pkl5.py -> build/lib.macosx-10.9-universal2-cpython-311/mpi4py/util
2023-01-25T14:58:44,694 copying src/mpi4py/util/dtlib.py -> build/lib.macosx-10.9-universal2-cpython-311/mpi4py/util
2023-01-25T14:58:44,698 copying src/mpi4py/util/__init__.py -> build/lib.macosx-10.9-universal2-cpython-311/mpi4py/util
2023-01-25T14:58:44,703 copying src/mpi4py/py.typed -> build/lib.macosx-10.9-universal2-cpython-311/mpi4py
2023-01-25T14:58:44,705 copying src/mpi4py/__main__.pyi -> build/lib.macosx-10.9-universal2-cpython-311/mpi4py
2023-01-25T14:58:44,707 copying src/mpi4py/__init__.pyi -> build/lib.macosx-10.9-universal2-cpython-311/mpi4py
2023-01-25T14:58:44,708 copying src/mpi4py/run.pyi -> build/lib.macosx-10.9-universal2-cpython-311/mpi4py
2023-01-25T14:58:44,712 copying src/mpi4py/bench.pyi -> build/lib.macosx-10.9-universal2-cpython-311/mpi4py
2023-01-25T14:58:44,714 copying src/mpi4py/MPI.pyi -> build/lib.macosx-10.9-universal2-cpython-311/mpi4py
2023-01-25T14:58:44,717 copying src/mpi4py/dl.pyi -> build/lib.macosx-10.9-universal2-cpython-311/mpi4py
2023-01-25T14:58:44,720 copying src/mpi4py/__init__.pxd -> build/lib.macosx-10.9-universal2-cpython-311/mpi4py
2023-01-25T14:58:44,722 copying src/mpi4py/libmpi.pxd -> build/lib.macosx-10.9-universal2-cpython-311/mpi4py
2023-01-25T14:58:44,725 copying src/mpi4py/MPI.pxd -> build/lib.macosx-10.9-universal2-cpython-311/mpi4py
2023-01-25T14:58:44,726 creating build/lib.macosx-10.9-universal2-cpython-311/mpi4py/include
2023-01-25T14:58:44,727 creating build/lib.macosx-10.9-universal2-cpython-311/mpi4py/include/mpi4py
2023-01-25T14:58:44,727 copying src/mpi4py/include/mpi4py/mpi4py.MPI.h -> build/lib.macosx-10.9-universal2-cpython-311/mpi4py/include/mpi4py
2023-01-25T14:58:44,729 copying src/mpi4py/include/mpi4py/mpi4py.MPI_api.h -> build/lib.macosx-10.9-universal2-cpython-311/mpi4py/include/mpi4py
2023-01-25T14:58:44,732 copying src/mpi4py/include/mpi4py/mpi4py.h -> build/lib.macosx-10.9-universal2-cpython-311/mpi4py/include/mpi4py
2023-01-25T14:58:44,734 copying src/mpi4py/include/mpi4py/mpi4py.i -> build/lib.macosx-10.9-universal2-cpython-311/mpi4py/include/mpi4py
2023-01-25T14:58:44,736 copying src/mpi4py/include/mpi4py/mpi.pxi -> build/lib.macosx-10.9-universal2-cpython-311/mpi4py/include/mpi4py
2023-01-25T14:58:44,738 copying src/mpi4py/futures/__main__.pyi -> build/lib.macosx-10.9-universal2-cpython-311/mpi4py/futures
2023-01-25T14:58:44,740 copying src/mpi4py/futures/__init__.pyi -> build/lib.macosx-10.9-universal2-cpython-311/mpi4py/futures
2023-01-25T14:58:44,742 copying src/mpi4py/futures/_core.pyi -> build/lib.macosx-10.9-universal2-cpython-311/mpi4py/futures
2023-01-25T14:58:44,745 copying src/mpi4py/futures/aplus.pyi -> build/lib.macosx-10.9-universal2-cpython-311/mpi4py/futures
2023-01-25T14:58:44,747 copying src/mpi4py/futures/server.pyi -> build/lib.macosx-10.9-universal2-cpython-311/mpi4py/futures
2023-01-25T14:58:44,748 copying src/mpi4py/futures/pool.pyi -> build/lib.macosx-10.9-universal2-cpython-311/mpi4py/futures
2023-01-25T14:58:44,750 copying src/mpi4py/futures/_lib.pyi -> build/lib.macosx-10.9-universal2-cpython-311/mpi4py/futures
2023-01-25T14:58:44,753 copying src/mpi4py/util/__init__.pyi -> build/lib.macosx-10.9-universal2-cpython-311/mpi4py/util
2023-01-25T14:58:44,755 copying src/mpi4py/util/dtlib.pyi -> build/lib.macosx-10.9-universal2-cpython-311/mpi4py/util
2023-01-25T14:58:44,758 copying src/mpi4py/util/pkl5.pyi -> build/lib.macosx-10.9-universal2-cpython-311/mpi4py/util
2023-01-25T14:58:44,761 running build_clib
2023-01-25T14:58:44,774 MPI configuration: [mpi] from 'mpi.cfg'
2023-01-25T14:58:44,774 MPI C compiler: /usr/local/bin/mpicc
2023-01-25T14:58:44,774 MPI C++ compiler: /usr/local/bin/mpicxx
2023-01-25T14:58:44,774 MPI F compiler: /usr/local/bin/mpifort
2023-01-25T14:58:44,774 MPI F90 compiler: /usr/local/bin/mpif90
2023-01-25T14:58:44,774 MPI F77 compiler: /usr/local/bin/mpif77
2023-01-25T14:58:44,775 checking for library 'lmpe' ...
2023-01-25T14:58:44,776 /usr/local/bin/mpicc -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -arch arm64 -arch x86_64 -g -c _configtest.c -o _configtest.o
2023-01-25T14:58:44,791 xcrun: error: unrecognized option: -Wsign-compare
2023-01-25T14:58:44,791 Usage: xcrun [options] <tool name> ... arguments ...
2023-01-25T14:58:44,791 Find and execute the named command line tool from the active developer
2023-01-25T14:58:44,791 directory.
2023-01-25T14:58:44,791 The active developer directory can be set using `xcode-select`, or via the
2023-01-25T14:58:44,791 DEVELOPER_DIR environment variable. See the xcrun and xcode-select manual
2023-01-25T14:58:44,791 pages for more information.
2023-01-25T14:58:44,791 Options:
2023-01-25T14:58:44,791 -h, --help show this help message and exit
2023-01-25T14:58:44,791 --version show the xcrun version
2023-01-25T14:58:44,792 -v, --verbose show verbose logging output
2023-01-25T14:58:44,792 --sdk <sdk name> find the tool for the given SDK name
2023-01-25T14:58:44,792 --toolchain <name> find the tool for the given toolchain
2023-01-25T14:58:44,792 -l, --log show commands to be executed (with --run)
2023-01-25T14:58:44,792 -f, --find only find and print the tool path
2023-01-25T14:58:44,792 -r, --run find and execute the tool (the default behavior)
2023-01-25T14:58:44,792 -n, --no-cache do not use the lookup cache
2023-01-25T14:58:44,792 -k, --kill-cache invalidate all existing cache entries
2023-01-25T14:58:44,792 --show-sdk-path show selected SDK install path
2023-01-25T14:58:44,792 --show-sdk-version show selected SDK version
2023-01-25T14:58:44,792 --show-sdk-build-version show selected SDK build version
2023-01-25T14:58:44,792 --show-sdk-platform-path show selected SDK platform path
2023-01-25T14:58:44,792 --show-sdk-platform-version show selected SDK platform version
2023-01-25T14:58:44,792 failure.
2023-01-25T14:58:44,793 removing: _configtest.c _configtest.o
2023-01-25T14:58:44,793 building 'mpe' dylib library
2023-01-25T14:58:44,793 creating build/temp.macosx-10.9-universal2-cpython-311
2023-01-25T14:58:44,794 creating build/temp.macosx-10.9-universal2-cpython-311/src
2023-01-25T14:58:44,794 creating build/temp.macosx-10.9-universal2-cpython-311/src/lib-pmpi
2023-01-25T14:58:44,795 /usr/local/bin/mpicc -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -arch arm64 -arch x86_64 -g -c src/lib-pmpi/mpe.c -o build/temp.macosx-10.9-universal2-cpython-311/src/lib-pmpi/mpe.o
2023-01-25T14:58:44,809 xcrun: error: unrecognized option: -Wsign-compare
2023-01-25T14:58:44,809 Usage: xcrun [options] <tool name> ... arguments ...
2023-01-25T14:58:44,809 Find and execute the named command line tool from the active developer
2023-01-25T14:58:44,809 directory.
2023-01-25T14:58:44,809 The active developer directory can be set using `xcode-select`, or via the
2023-01-25T14:58:44,810 DEVELOPER_DIR environment variable. See the xcrun and xcode-select manual
2023-01-25T14:58:44,810 pages for more information.
2023-01-25T14:58:44,810 Options:
2023-01-25T14:58:44,810 -h, --help show this help message and exit
2023-01-25T14:58:44,810 --version show the xcrun version
2023-01-25T14:58:44,810 -v, --verbose show verbose logging output
2023-01-25T14:58:44,810 --sdk <sdk name> find the tool for the given SDK name
2023-01-25T14:58:44,810 --toolchain <name> find the tool for the given toolchain
2023-01-25T14:58:44,810 -l, --log show commands to be executed (with --run)
2023-01-25T14:58:44,810 -f, --find only find and print the tool path
2023-01-25T14:58:44,810 -r, --run find and execute the tool (the default behavior)
2023-01-25T14:58:44,810 -n, --no-cache do not use the lookup cache
2023-01-25T14:58:44,810 -k, --kill-cache invalidate all existing cache entries
2023-01-25T14:58:44,810 --show-sdk-path show selected SDK install path
2023-01-25T14:58:44,810 --show-sdk-version show selected SDK version
2023-01-25T14:58:44,810 --show-sdk-build-version show selected SDK build version
2023-01-25T14:58:44,810 --show-sdk-platform-path show selected SDK platform path
2023-01-25T14:58:44,810 --show-sdk-platform-version show selected SDK platform version
2023-01-25T14:58:44,811 warning: build_clib: command '/usr/local/bin/mpicc' failed with exit code 64
2023-01-25T14:58:44,811 warning: build_clib: building optional library "mpe" failed
2023-01-25T14:58:44,811 checking for library 'vt-mpi' ...
2023-01-25T14:58:44,812 /usr/local/bin/mpicc -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -arch arm64 -arch x86_64 -g -c _configtest.c -o _configtest.o
2023-01-25T14:58:44,827 xcrun: error: unrecognized option: -Wsign-compare
2023-01-25T14:58:44,827 Usage: xcrun [options] <tool name> ... arguments ...
2023-01-25T14:58:44,827 Find and execute the named command line tool from the active developer
2023-01-25T14:58:44,827 directory.
2023-01-25T14:58:44,827 The active developer directory can be set using `xcode-select`, or via the
2023-01-25T14:58:44,827 DEVELOPER_DIR environment variable. See the xcrun and xcode-select manual
2023-01-25T14:58:44,827 pages for more information.
2023-01-25T14:58:44,828 Options:
2023-01-25T14:58:44,828 -h, --help show this help message and exit
2023-01-25T14:58:44,828 --version show the xcrun version
2023-01-25T14:58:44,828 -v, --verbose show verbose logging output
2023-01-25T14:58:44,828 --sdk <sdk name> find the tool for the given SDK name
2023-01-25T14:58:44,828 --toolchain <name> find the tool for the given toolchain
2023-01-25T14:58:44,828 -l, --log show commands to be executed (with --run)
2023-01-25T14:58:44,828 -f, --find only find and print the tool path
2023-01-25T14:58:44,828 -r, --run find and execute the tool (the default behavior)
2023-01-25T14:58:44,828 -n, --no-cache do not use the lookup cache
2023-01-25T14:58:44,828 -k, --kill-cache invalidate all existing cache entries
2023-01-25T14:58:44,828 --show-sdk-path show selected SDK install path
2023-01-25T14:58:44,828 --show-sdk-version show selected SDK version
2023-01-25T14:58:44,828 --show-sdk-build-version show selected SDK build version
2023-01-25T14:58:44,828 --show-sdk-platform-path show selected SDK platform path
2023-01-25T14:58:44,828 --show-sdk-platform-version show selected SDK platform version
2023-01-25T14:58:44,829 failure.
2023-01-25T14:58:44,829 removing: _configtest.c _configtest.o
2023-01-25T14:58:44,829 checking for library 'vt.mpi' ...
2023-01-25T14:58:44,830 /usr/local/bin/mpicc -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -arch arm64 -arch x86_64 -g -c _configtest.c -o _configtest.o
2023-01-25T14:58:44,844 xcrun: error: unrecognized option: -Wsign-compare
2023-01-25T14:58:44,844 Usage: xcrun [options] <tool name> ... arguments ...
2023-01-25T14:58:44,844 Find and execute the named command line tool from the active developer
2023-01-25T14:58:44,844 directory.
2023-01-25T14:58:44,844 The active developer directory can be set using `xcode-select`, or via the
2023-01-25T14:58:44,844 DEVELOPER_DIR environment variable. See the xcrun and xcode-select manual
2023-01-25T14:58:44,844 pages for more information.
2023-01-25T14:58:44,844 Options:
2023-01-25T14:58:44,845 -h, --help show this help message and exit
2023-01-25T14:58:44,845 --version show the xcrun version
2023-01-25T14:58:44,845 -v, --verbose show verbose logging output
2023-01-25T14:58:44,845 --sdk <sdk name> find the tool for the given SDK name
2023-01-25T14:58:44,845 --toolchain <name> find the tool for the given toolchain
2023-01-25T14:58:44,845 -l, --log show commands to be executed (with --run)
2023-01-25T14:58:44,845 -f, --find only find and print the tool path
2023-01-25T14:58:44,845 -r, --run find and execute the tool (the default behavior)
2023-01-25T14:58:44,845 -n, --no-cache do not use the lookup cache
2023-01-25T14:58:44,845 -k, --kill-cache invalidate all existing cache entries
2023-01-25T14:58:44,845 --show-sdk-path show selected SDK install path
2023-01-25T14:58:44,845 --show-sdk-version show selected SDK version
2023-01-25T14:58:44,845 --show-sdk-build-version show selected SDK build version
2023-01-25T14:58:44,845 --show-sdk-platform-path show selected SDK platform path
2023-01-25T14:58:44,845 --show-sdk-platform-version show selected SDK platform version
2023-01-25T14:58:44,845 failure.
2023-01-25T14:58:44,846 removing: _configtest.c _configtest.o
2023-01-25T14:58:44,846 building 'vt' dylib library
2023-01-25T14:58:44,846 /usr/local/bin/mpicc -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -arch arm64 -arch x86_64 -g -c src/lib-pmpi/vt.c -o build/temp.macosx-10.9-universal2-cpython-311/src/lib-pmpi/vt.o
2023-01-25T14:58:44,860 xcrun: error: unrecognized option: -Wsign-compare
2023-01-25T14:58:44,861 Usage: xcrun [options] <tool name> ... arguments ...
2023-01-25T14:58:44,861 Find and execute the named command line tool from the active developer
2023-01-25T14:58:44,861 directory.
2023-01-25T14:58:44,861 The active developer directory can be set using `xcode-select`, or via the
2023-01-25T14:58:44,861 DEVELOPER_DIR environment variable. See the xcrun and xcode-select manual
2023-01-25T14:58:44,861 pages for more information.
2023-01-25T14:58:44,861 Options:
2023-01-25T14:58:44,861 -h, --help show this help message and exit
2023-01-25T14:58:44,861 --version show the xcrun version
2023-01-25T14:58:44,861 -v, --verbose show verbose logging output
2023-01-25T14:58:44,861 --sdk <sdk name> find the tool for the given SDK name
2023-01-25T14:58:44,861 --toolchain <name> find the tool for the given toolchain
2023-01-25T14:58:44,861 -l, --log show commands to be executed (with --run)
2023-01-25T14:58:44,861 -f, --find only find and print the tool path
2023-01-25T14:58:44,861 -r, --run find and execute the tool (the default behavior)
2023-01-25T14:58:44,862 -n, --no-cache do not use the lookup cache
2023-01-25T14:58:44,862 -k, --kill-cache invalidate all existing cache entries
2023-01-25T14:58:44,862 --show-sdk-path show selected SDK install path
2023-01-25T14:58:44,862 --show-sdk-version show selected SDK version
2023-01-25T14:58:44,862 --show-sdk-build-version show selected SDK build version
2023-01-25T14:58:44,862 --show-sdk-platform-path show selected SDK platform path
2023-01-25T14:58:44,862 --show-sdk-platform-version show selected SDK platform version
2023-01-25T14:58:44,862 warning: build_clib: command '/usr/local/bin/mpicc' failed with exit code 64
2023-01-25T14:58:44,862 warning: build_clib: building optional library "vt" failed
2023-01-25T14:58:44,863 checking for library 'vt-mpi' ...
2023-01-25T14:58:44,864 /usr/local/bin/mpicc -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -arch arm64 -arch x86_64 -g -c _configtest.c -o _configtest.o
2023-01-25T14:58:44,878 xcrun: error: unrecognized option: -Wsign-compare
2023-01-25T14:58:44,878 Usage: xcrun [options] <tool name> ... arguments ...
2023-01-25T14:58:44,878 Find and execute the named command line tool from the active developer
2023-01-25T14:58:44,878 directory.
2023-01-25T14:58:44,878 The active developer directory can be set using `xcode-select`, or via the
2023-01-25T14:58:44,878 DEVELOPER_DIR environment variable. See the xcrun and xcode-select manual
2023-01-25T14:58:44,878 pages for more information.
2023-01-25T14:58:44,878 Options:
2023-01-25T14:58:44,878 -h, --help show this help message and exit
2023-01-25T14:58:44,878 --version show the xcrun version
2023-01-25T14:58:44,878 -v, --verbose show verbose logging output
2023-01-25T14:58:44,879 --sdk <sdk name> find the tool for the given SDK name
2023-01-25T14:58:44,879 --toolchain <name> find the tool for the given toolchain
2023-01-25T14:58:44,879 -l, --log show commands to be executed (with --run)
2023-01-25T14:58:44,879 -f, --find only find and print the tool path
2023-01-25T14:58:44,879 -r, --run find and execute the tool (the default behavior)
2023-01-25T14:58:44,879 -n, --no-cache do not use the lookup cache
2023-01-25T14:58:44,879 -k, --kill-cache invalidate all existing cache entries
2023-01-25T14:58:44,879 --show-sdk-path show selected SDK install path
2023-01-25T14:58:44,879 --show-sdk-version show selected SDK version
2023-01-25T14:58:44,879 --show-sdk-build-version show selected SDK build version
2023-01-25T14:58:44,879 --show-sdk-platform-path show selected SDK platform path
2023-01-25T14:58:44,879 --show-sdk-platform-version show selected SDK platform version
2023-01-25T14:58:44,879 failure.
2023-01-25T14:58:44,880 removing: _configtest.c _configtest.o
2023-01-25T14:58:44,880 checking for library 'vt.mpi' ...
2023-01-25T14:58:44,881 /usr/local/bin/mpicc -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -arch arm64 -arch x86_64 -g -c _configtest.c -o _configtest.o
2023-01-25T14:58:44,895 xcrun: error: unrecognized option: -Wsign-compare
2023-01-25T14:58:44,895 Usage: xcrun [options] <tool name> ... arguments ...
2023-01-25T14:58:44,895 Find and execute the named command line tool from the active developer
2023-01-25T14:58:44,895 directory.
2023-01-25T14:58:44,895 The active developer directory can be set using `xcode-select`, or via the
2023-01-25T14:58:44,896 DEVELOPER_DIR environment variable. See the xcrun and xcode-select manual
2023-01-25T14:58:44,896 pages for more information.
2023-01-25T14:58:44,896 Options:
2023-01-25T14:58:44,896 -h, --help show this help message and exit
2023-01-25T14:58:44,896 --version show the xcrun version
2023-01-25T14:58:44,896 -v, --verbose show verbose logging output
2023-01-25T14:58:44,896 --sdk <sdk name> find the tool for the given SDK name
2023-01-25T14:58:44,896 --toolchain <name> find the tool for the given toolchain
2023-01-25T14:58:44,896 -l, --log show commands to be executed (with --run)
2023-01-25T14:58:44,896 -f, --find only find and print the tool path
2023-01-25T14:58:44,896 -r, --run find and execute the tool (the default behavior)
2023-01-25T14:58:44,896 -n, --no-cache do not use the lookup cache
2023-01-25T14:58:44,896 -k, --kill-cache invalidate all existing cache entries
2023-01-25T14:58:44,896 --show-sdk-path show selected SDK install path
2023-01-25T14:58:44,896 --show-sdk-version show selected SDK version
2023-01-25T14:58:44,896 --show-sdk-build-version show selected SDK build version
2023-01-25T14:58:44,896 --show-sdk-platform-path show selected SDK platform path
2023-01-25T14:58:44,896 --show-sdk-platform-version show selected SDK platform version
2023-01-25T14:58:44,897 failure.
2023-01-25T14:58:44,897 removing: _configtest.c _configtest.o
2023-01-25T14:58:44,897 building 'vt-mpi' dylib library
2023-01-25T14:58:44,898 /usr/local/bin/mpicc -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -arch arm64 -arch x86_64 -g -c src/lib-pmpi/vt-mpi.c -o build/temp.macosx-10.9-universal2-cpython-311/src/lib-pmpi/vt-mpi.o
2023-01-25T14:58:44,912 xcrun: error: unrecognized option: -Wsign-compare
2023-01-25T14:58:44,912 Usage: xcrun [options] <tool name> ... arguments ...
2023-01-25T14:58:44,912 Find and execute the named command line tool from the active developer
2023-01-25T14:58:44,912 directory.
2023-01-25T14:58:44,912 The active developer directory can be set using `xcode-select`, or via the
2023-01-25T14:58:44,912 DEVELOPER_DIR environment variable. See the xcrun and xcode-select manual
2023-01-25T14:58:44,912 pages for more information.
2023-01-25T14:58:44,912 Options:
2023-01-25T14:58:44,912 -h, --help show this help message and exit
2023-01-25T14:58:44,912 --version show the xcrun version
2023-01-25T14:58:44,912 -v, --verbose show verbose logging output
2023-01-25T14:58:44,912 --sdk <sdk name> find the tool for the given SDK name
2023-01-25T14:58:44,913 --toolchain <name> find the tool for the given toolchain
2023-01-25T14:58:44,913 -l, --log show commands to be executed (with --run)
2023-01-25T14:58:44,913 -f, --find only find and print the tool path
2023-01-25T14:58:44,913 -r, --run find and execute the tool (the default behavior)
2023-01-25T14:58:44,913 -n, --no-cache do not use the lookup cache
2023-01-25T14:58:44,913 -k, --kill-cache invalidate all existing cache entries
2023-01-25T14:58:44,913 --show-sdk-path show selected SDK install path
2023-01-25T14:58:44,913 --show-sdk-version show selected SDK version
2023-01-25T14:58:44,913 --show-sdk-build-version show selected SDK build version
2023-01-25T14:58:44,913 --show-sdk-platform-path show selected SDK platform path
2023-01-25T14:58:44,913 --show-sdk-platform-version show selected SDK platform version
2023-01-25T14:58:44,913 warning: build_clib: command '/usr/local/bin/mpicc' failed with exit code 64
2023-01-25T14:58:44,914 warning: build_clib: building optional library "vt-mpi" failed
2023-01-25T14:58:44,914 checking for library 'vt-hyb' ...
2023-01-25T14:58:44,915 /usr/local/bin/mpicc -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -arch arm64 -arch x86_64 -g -c _configtest.c -o _configtest.o
2023-01-25T14:58:44,929 xcrun: error: unrecognized option: -Wsign-compare
2023-01-25T14:58:44,929 Usage: xcrun [options] <tool name> ... arguments ...
2023-01-25T14:58:44,929 Find and execute the named command line tool from the active developer
2023-01-25T14:58:44,929 directory.
2023-01-25T14:58:44,929 The active developer directory can be set using `xcode-select`, or via the
2023-01-25T14:58:44,929 DEVELOPER_DIR environment variable. See the xcrun and xcode-select manual
2023-01-25T14:58:44,929 pages for more information.
2023-01-25T14:58:44,930 Options:
2023-01-25T14:58:44,930 -h, --help show this help message and exit
2023-01-25T14:58:44,930 --version show the xcrun version
2023-01-25T14:58:44,930 -v, --verbose show verbose logging output
2023-01-25T14:58:44,930 --sdk <sdk name> find the tool for the given SDK name
2023-01-25T14:58:44,930 --toolchain <name> find the tool for the given toolchain
2023-01-25T14:58:44,930 -l, --log show commands to be executed (with --run)
2023-01-25T14:58:44,930 -f, --find only find and print the tool path
2023-01-25T14:58:44,930 -r, --run find and execute the tool (the default behavior)
2023-01-25T14:58:44,930 -n, --no-cache do not use the lookup cache
2023-01-25T14:58:44,930 -k, --kill-cache invalidate all existing cache entries
2023-01-25T14:58:44,930 --show-sdk-path show selected SDK install path
2023-01-25T14:58:44,930 --show-sdk-version show selected SDK version
2023-01-25T14:58:44,930 --show-sdk-build-version show selected SDK build version
2023-01-25T14:58:44,930 --show-sdk-platform-path show selected SDK platform path
2023-01-25T14:58:44,930 --show-sdk-platform-version show selected SDK platform version
2023-01-25T14:58:44,931 failure.
2023-01-25T14:58:44,931 removing: _configtest.c _configtest.o
2023-01-25T14:58:44,931 checking for library 'vt.ompi' ...
2023-01-25T14:58:44,932 /usr/local/bin/mpicc -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -arch arm64 -arch x86_64 -g -c _configtest.c -o _configtest.o
2023-01-25T14:58:44,946 xcrun: error: unrecognized option: -Wsign-compare
2023-01-25T14:58:44,946 Usage: xcrun [options] <tool name> ... arguments ...
2023-01-25T14:58:44,946 Find and execute the named command line tool from the active developer
2023-01-25T14:58:44,946 directory.
2023-01-25T14:58:44,946 The active developer directory can be set using `xcode-select`, or via the
2023-01-25T14:58:44,946 DEVELOPER_DIR environment variable. See the xcrun and xcode-select manual
2023-01-25T14:58:44,946 pages for more information.
2023-01-25T14:58:44,946 Options:
2023-01-25T14:58:44,946 -h, --help show this help message and exit
2023-01-25T14:58:44,946 --version show the xcrun version
2023-01-25T14:58:44,946 -v, --verbose show verbose logging output
2023-01-25T14:58:44,946 --sdk <sdk name> find the tool for the given SDK name
2023-01-25T14:58:44,947 --toolchain <name> find the tool for the given toolchain
2023-01-25T14:58:44,947 -l, --log show commands to be executed (with --run)
2023-01-25T14:58:44,947 -f, --find only find and print the tool path
2023-01-25T14:58:44,947 -r, --run find and execute the tool (the default behavior)
2023-01-25T14:58:44,947 -n, --no-cache do not use the lookup cache
2023-01-25T14:58:44,947 -k, --kill-cache invalidate all existing cache entries
2023-01-25T14:58:44,947 --show-sdk-path show selected SDK install path
2023-01-25T14:58:44,947 --show-sdk-version show selected SDK version
2023-01-25T14:58:44,947 --show-sdk-build-version show selected SDK build version
2023-01-25T14:58:44,947 --show-sdk-platform-path show selected SDK platform path
2023-01-25T14:58:44,947 --show-sdk-platform-version show selected SDK platform version
2023-01-25T14:58:44,947 failure.
2023-01-25T14:58:44,947 removing: _configtest.c _configtest.o
2023-01-25T14:58:44,948 building 'vt-hyb' dylib library
2023-01-25T14:58:44,948 /usr/local/bin/mpicc -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -arch arm64 -arch x86_64 -g -c src/lib-pmpi/vt-hyb.c -o build/temp.macosx-10.9-universal2-cpython-311/src/lib-pmpi/vt-hyb.o
2023-01-25T14:58:44,962 xcrun: error: unrecognized option: -Wsign-compare
2023-01-25T14:58:44,962 Usage: xcrun [options] <tool name> ... arguments ...
2023-01-25T14:58:44,962 Find and execute the named command line tool from the active developer
2023-01-25T14:58:44,962 directory.
2023-01-25T14:58:44,963 The active developer directory can be set using `xcode-select`, or via the
2023-01-25T14:58:44,963 DEVELOPER_DIR environment variable. See the xcrun and xcode-select manual
2023-01-25T14:58:44,963 pages for more information.
2023-01-25T14:58:44,963 Options:
2023-01-25T14:58:44,963 -h, --help show this help message and exit
2023-01-25T14:58:44,963 --version show the xcrun version
2023-01-25T14:58:44,963 -v, --verbose show verbose logging output
2023-01-25T14:58:44,963 --sdk <sdk name> find the tool for the given SDK name
2023-01-25T14:58:44,963 --toolchain <name> find the tool for the given toolchain
2023-01-25T14:58:44,963 -l, --log show commands to be executed (with --run)
2023-01-25T14:58:44,963 -f, --find only find and print the tool path
2023-01-25T14:58:44,963 -r, --run find and execute the tool (the default behavior)
2023-01-25T14:58:44,963 -n, --no-cache do not use the lookup cache
2023-01-25T14:58:44,963 -k, --kill-cache invalidate all existing cache entries
2023-01-25T14:58:44,963 --show-sdk-path show selected SDK install path
2023-01-25T14:58:44,963 --show-sdk-version show selected SDK version
2023-01-25T14:58:44,963 --show-sdk-build-version show selected SDK build version
2023-01-25T14:58:44,963 --show-sdk-platform-path show selected SDK platform path
2023-01-25T14:58:44,963 --show-sdk-platform-version show selected SDK platform version
2023-01-25T14:58:44,964 warning: build_clib: command '/usr/local/bin/mpicc' failed with exit code 64
2023-01-25T14:58:44,964 warning: build_clib: building optional library "vt-hyb" failed
2023-01-25T14:58:44,964 running build_ext
2023-01-25T14:58:44,975 MPI configuration: [mpi] from 'mpi.cfg'
2023-01-25T14:58:44,976 MPI C compiler: /usr/local/bin/mpicc
2023-01-25T14:58:44,976 MPI C++ compiler: /usr/local/bin/mpicxx
2023-01-25T14:58:44,976 MPI F compiler: /usr/local/bin/mpifort
2023-01-25T14:58:44,976 MPI F90 compiler: /usr/local/bin/mpif90
2023-01-25T14:58:44,976 MPI F77 compiler: /usr/local/bin/mpif77
2023-01-25T14:58:44,976 checking for dlopen() availability ...
2023-01-25T14:58:44,976 checking for header 'dlfcn.h' ...
2023-01-25T14:58:44,977 clang -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -arch arm64 -arch x86_64 -g -I/Library/Frameworks/Python.framework/Versions/3.11/include/python3.11 -c _configtest.c -o _configtest.o
2023-01-25T14:58:45,018 In file included from _configtest.c:1:
2023-01-25T14:58:45,018 In file included from /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/dlfcn.h:37:
2023-01-25T14:58:45,018 /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/cdefs.h:807:2: error: Unsupported architecture
2023-01-25T14:58:45,018 #error Unsupported architecture
2023-01-25T14:58:45,018 ^
2023-01-25T14:58:45,023 1 error generated.
2023-01-25T14:58:45,026 failure.
2023-01-25T14:58:45,026 removing: _configtest.c _configtest.o
2023-01-25T14:58:45,026 failure.
2023-01-25T14:58:45,026 checking for library 'dl' ...
2023-01-25T14:58:45,027 clang -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -arch arm64 -arch x86_64 -g -I/Library/Frameworks/Python.framework/Versions/3.11/include/python3.11 -c _configtest.c -o _configtest.o
2023-01-25T14:58:45,105 clang -flat_namespace -undefined suppress _configtest.o -Lbuild/temp.macosx-10.9-universal2-cpython-311 -ldl -o _configtest
2023-01-25T14:58:45,160 success!
2023-01-25T14:58:45,160 removing: _configtest.c _configtest.o _configtest
2023-01-25T14:58:45,161 checking for function 'dlopen' ...
2023-01-25T14:58:45,162 clang -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -arch arm64 -arch x86_64 -g -I/Library/Frameworks/Python.framework/Versions/3.11/include/python3.11 -c _configtest.c -o _configtest.o
2023-01-25T14:58:45,240 clang _configtest.o -Lbuild/temp.macosx-10.9-universal2-cpython-311 -ldl -o _configtest
2023-01-25T14:58:45,294 success!
2023-01-25T14:58:45,295 removing: _configtest.c _configtest.o _configtest
2023-01-25T14:58:45,296 building 'mpi4py.dl' extension
2023-01-25T14:58:45,296 clang -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -arch arm64 -arch x86_64 -g -DHAVE_DLOPEN=1 -I/Library/Frameworks/Python.framework/Versions/3.11/include/python3.11 -c src/dynload.c -o build/temp.macosx-10.9-universal2-cpython-311/src/dynload.o
2023-01-25T14:58:45,341 In file included from src/dynload.c:5:
2023-01-25T14:58:45,341 In file included from /Library/Frameworks/Python.framework/Versions/3.11/include/python3.11/Python.h:23:
2023-01-25T14:58:45,341 In file included from /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/stdlib.h:62:
2023-01-25T14:58:45,341 /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/cdefs.h:807:2: error: Unsupported architecture
2023-01-25T14:58:45,341 #error Unsupported architecture
2023-01-25T14:58:45,341 ^
2023-01-25T14:58:45,342 In file included from src/dynload.c:5:
2023-01-25T14:58:45,342 In file included from /Library/Frameworks/Python.framework/Versions/3.11/include/python3.11/Python.h:23:
2023-01-25T14:58:45,342 In file included from /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/stdlib.h:64:
2023-01-25T14:58:45,342 In file included from /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_types.h:27:
2023-01-25T14:58:45,342 In file included from /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types.h:33:
2023-01-25T14:58:45,342 /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/machine/_types.h:34:2: error: architecture not supported
2023-01-25T14:58:45,342 #error architecture not supported
2023-01-25T14:58:45,342 ^
2023-01-25T14:58:45,342 In file included from src/dynload.c:5:
2023-01-25T14:58:45,342 In file included from /Library/Frameworks/Python.framework/Versions/3.11/include/python3.11/Python.h:23:
2023-01-25T14:58:45,342 In file included from /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/stdlib.h:64:
2023-01-25T14:58:45,342 In file included from /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_types.h:27:
2023-01-25T14:58:45,342 /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types.h:55:9: error: unknown type name '__int64_t'
2023-01-25T14:58:45,342 typedef __int64_t __darwin_blkcnt_t; /* total blocks */
2023-01-25T14:58:45,343 ^
2023-01-25T14:58:45,343 /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types.h:56:9: error: unknown type name '__int32_t'; did you mean '__int128_t'?
2023-01-25T14:58:45,343 typedef __int32_t __darwin_blksize_t; /* preferred block size */
2023-01-25T14:58:45,343 ^
2023-01-25T14:58:45,343 note: '__int128_t' declared here
2023-01-25T14:58:45,343 /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types.h:57:9: error: unknown type name '__int32_t'; did you mean '__int128_t'?
2023-01-25T14:58:45,343 typedef __int32_t __darwin_dev_t; /* dev_t */
2023-01-25T14:58:45,343 ^
2023-01-25T14:58:45,343 note: '__int128_t' declared here
2023-01-25T14:58:45,343 /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types.h:60:9: error: unknown type name '__uint32_t'; did you mean '__uint128_t'?
2023-01-25T14:58:45,343 typedef __uint32_t __darwin_gid_t; /* [???] process and group IDs */
2023-01-25T14:58:45,343 ^
2023-01-25T14:58:45,343 note: '__uint128_t' declared here
2023-01-25T14:58:45,343 /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types.h:61:9: error: unknown type name '__uint32_t'; did you mean '__uint128_t'?
2023-01-25T14:58:45,343 typedef __uint32_t __darwin_id_t; /* [XSI] pid_t, uid_t, or gid_t*/
2023-01-25T14:58:45,344 ^
2023-01-25T14:58:45,344 note: '__uint128_t' declared here
2023-01-25T14:58:45,344 /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types.h:62:9: error: unknown type name '__uint64_t'
2023-01-25T14:58:45,344 typedef __uint64_t __darwin_ino64_t; /* [???] Used for 64 bit inodes */
2023-01-25T14:58:45,344 ^
2023-01-25T14:58:45,345 /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types.h:68:9: error: unknown type name '__darwin_natural_t'
2023-01-25T14:58:45,345 typedef __darwin_natural_t __darwin_mach_port_name_t; /* Used by mach */
2023-01-25T14:58:45,345 ^
2023-01-25T14:58:45,345 /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types.h:70:9: error: unknown type name '__uint16_t'; did you mean '__uint128_t'?
2023-01-25T14:58:45,345 typedef __uint16_t __darwin_mode_t; /* [???] Some file attributes */
2023-01-25T14:58:45,345 ^
2023-01-25T14:58:45,345 note: '__uint128_t' declared here
2023-01-25T14:58:45,345 /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types.h:71:9: error: unknown type name '__int64_t'
2023-01-25T14:58:45,345 typedef __int64_t __darwin_off_t; /* [???] Used for file sizes */
2023-01-25T14:58:45,346 ^
2023-01-25T14:58:45,346 /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types.h:72:9: error: unknown type name '__int32_t'; did you mean '__int128_t'?
2023-01-25T14:58:45,346 typedef __int32_t __darwin_pid_t; /* [???] process and group IDs */
2023-01-25T14:58:45,346 ^
2023-01-25T14:58:45,346 note: '__int128_t' declared here
2023-01-25T14:58:45,346 /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types.h:73:9: error: unknown type name '__uint32_t'; did you mean '__uint128_t'?
2023-01-25T14:58:45,346 typedef __uint32_t __darwin_sigset_t; /* [???] signal set */
2023-01-25T14:58:45,346 ^
2023-01-25T14:58:45,346 note: '__uint128_t' declared here
2023-01-25T14:58:45,346 /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types.h:74:9: error: unknown type name '__int32_t'; did you mean '__int128_t'?
2023-01-25T14:58:45,346 typedef __int32_t __darwin_suseconds_t; /* [???] microseconds */
2023-01-25T14:58:45,346 ^
2023-01-25T14:58:45,346 note: '__int128_t' declared here
2023-01-25T14:58:45,347 /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types.h:75:9: error: unknown type name '__uint32_t'; did you mean '__uint128_t'?
2023-01-25T14:58:45,347 typedef __uint32_t __darwin_uid_t; /* [???] user IDs */
2023-01-25T14:58:45,347 ^
2023-01-25T14:58:45,347 note: '__uint128_t' declared here
2023-01-25T14:58:45,347 /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/_types.h:76:9: error: unknown type name '__uint32_t'; did you mean '__uint128_t'?
2023-01-25T14:58:45,347 typedef __uint32_t __darwin_useconds_t; /* [???] microseconds */
2023-01-25T14:58:45,347 ^
2023-01-25T14:58:45,347 note: '__uint128_t' declared here
2023-01-25T14:58:45,348 In file included from src/dynload.c:5:
2023-01-25T14:58:45,348 In file included from /Library/Frameworks/Python.framework/Versions/3.11/include/python3.11/Python.h:23:
2023-01-25T14:58:45,348 In file included from /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/stdlib.h:64:
2023-01-25T14:58:45,348 /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/_types.h:43:9: error: unknown type name '__uint32_t'; did you mean '__uint128_t'?
2023-01-25T14:58:45,348 typedef __uint32_t __darwin_wctype_t;
2023-01-25T14:58:45,348 ^
2023-01-25T14:58:45,348 note: '__uint128_t' declared here
2023-01-25T14:58:45,349 In file included from src/dynload.c:5:
2023-01-25T14:58:45,350 In file included from /Library/Frameworks/Python.framework/Versions/3.11/include/python3.11/Python.h:23:
2023-01-25T14:58:45,350 In file included from /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/stdlib.h:66:
2023-01-25T14:58:45,350 In file included from /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/wait.h:109:
2023-01-25T14:58:45,350 In file included from /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/signal.h:82:
2023-01-25T14:58:45,350 /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/machine/signal.h:34:2: error: architecture not supported
2023-01-25T14:58:45,350 #error architecture not supported
2023-01-25T14:58:45,350 ^
2023-01-25T14:58:45,350 In file included from src/dynload.c:5:
2023-01-25T14:58:45,350 In file included from /Library/Frameworks/Python.framework/Versions/3.11/include/python3.11/Python.h:23:
2023-01-25T14:58:45,350 In file included from /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/stdlib.h:66:
2023-01-25T14:58:45,350 In file included from /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/wait.h:109:
2023-01-25T14:58:45,350 In file included from /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/signal.h:146:
2023-01-25T14:58:45,350 /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/machine/_mcontext.h:31:2: error: architecture not supported
2023-01-25T14:58:45,350 #error architecture not supported
2023-01-25T14:58:45,350 ^
2023-01-25T14:58:45,351 fatal error: too many errors emitted, stopping now [-ferror-limit=]
2023-01-25T14:58:45,430 20 errors generated.
2023-01-25T14:58:45,433 warning: build_ext: command '/usr/bin/clang' failed with exit code 1
2023-01-25T14:58:45,433 warning: build_ext: building optional extension "mpi4py.dl" failed
2023-01-25T14:58:45,433 checking for MPI compile and link ...
2023-01-25T14:58:45,434 /usr/local/bin/mpicc -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -arch arm64 -arch x86_64 -g -I/Library/Frameworks/Python.framework/Versions/3.11/include/python3.11 -c _configtest.c -o _configtest.o
2023-01-25T14:58:45,448 xcrun: error: unrecognized option: -Wsign-compare
2023-01-25T14:58:45,448 Usage: xcrun [options] <tool name> ... arguments ...
2023-01-25T14:58:45,448 Find and execute the named command line tool from the active developer
2023-01-25T14:58:45,448 directory.
2023-01-25T14:58:45,448 The active developer directory can be set using `xcode-select`, or via the
2023-01-25T14:58:45,448 DEVELOPER_DIR environment variable. See the xcrun and xcode-select manual
2023-01-25T14:58:45,448 pages for more information.
2023-01-25T14:58:45,448 Options:
2023-01-25T14:58:45,448 -h, --help show this help message and exit
2023-01-25T14:58:45,448 --version show the xcrun version
2023-01-25T14:58:45,448 -v, --verbose show verbose logging output
2023-01-25T14:58:45,448 --sdk <sdk name> find the tool for the given SDK name
2023-01-25T14:58:45,449 --toolchain <name> find the tool for the given toolchain
2023-01-25T14:58:45,449 -l, --log show commands to be executed (with --run)
2023-01-25T14:58:45,449 -f, --find only find and print the tool path
2023-01-25T14:58:45,449 -r, --run find and execute the tool (the default behavior)
2023-01-25T14:58:45,449 -n, --no-cache do not use the lookup cache
2023-01-25T14:58:45,449 -k, --kill-cache invalidate all existing cache entries
2023-01-25T14:58:45,449 --show-sdk-path show selected SDK install path
2023-01-25T14:58:45,449 --show-sdk-version show selected SDK version
2023-01-25T14:58:45,449 --show-sdk-build-version show selected SDK build version
2023-01-25T14:58:45,449 --show-sdk-platform-path show selected SDK platform path
2023-01-25T14:58:45,449 --show-sdk-platform-version show selected SDK platform version
2023-01-25T14:58:45,449 failure.
2023-01-25T14:58:45,449 removing: _configtest.c _configtest.o
2023-01-25T14:58:45,451 error: Cannot compile MPI programs. Check your configuration!!!
2023-01-25T14:58:45,490 ERROR: [present-rich] Building wheel for mpi4py (pyproject.toml) exited with 1
2023-01-25T14:58:45,495 [bold magenta]full command[/]: [blue]/usr/local/bin/python3 /Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/site-packages/pip/_vendor/pep517/in_process/_in_process.py build_wheel /tmp/tmp1ae9ehqt[/]
2023-01-25T14:58:45,495 [bold magenta]cwd[/]: /private/tmp/pip-install-hsd5_zeu/mpi4py_aee0281e8cd94e24890752e58b3e208a
2023-01-25T14:58:45,496 ERROR: Failed building wheel for mpi4py
2023-01-25T14:58:45,497 Failed to build mpi4py
2023-01-25T14:58:45,498 ERROR: Could not build wheels for mpi4py, which is required to install pyproject.toml-based projects
2023-01-25T14:58:45,498 Exception information:
2023-01-25T14:58:45,498 Traceback (most recent call last):
2023-01-25T14:58:45,498 File "/Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/site-packages/pip/_internal/cli/base_command.py", line 160, in exc_logging_wrapper
2023-01-25T14:58:45,498 status = run_func(*args)
2023-01-25T14:58:45,498 ^^^^^^^^^^^^^^^
2023-01-25T14:58:45,498 File "/Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/site-packages/pip/_internal/cli/req_command.py", line 247, in wrapper
2023-01-25T14:58:45,498 return func(self, options, args)
2023-01-25T14:58:45,498 ^^^^^^^^^^^^^^^^^^^^^^^^^
2023-01-25T14:58:45,498 File "/Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/site-packages/pip/_internal/commands/install.py", line 464, in run
2023-01-25T14:58:45,498 raise InstallationError(
2023-01-25T14:58:45,498 pip._internal.exceptions.InstallationError: Could not build wheels for mpi4py, which is required to install pyproject.toml-based projects
2023-01-25T14:58:45,528 Remote version of pip: 22.3.1
2023-01-25T14:58:45,528 Local version of pip: 22.3
2023-01-25T14:58:45,531 Was pip installed by pip? True
2023-01-25T14:58:45,531 WARNING: [present-rich] UpgradePrompt(old='22.3', new='22.3.1')
2023-01-25T14:58:45,532 Removed build tracker: '/private/tmp/pip-build-tracker-aoc5j9e_'
2023-01-25T15:12:52,034 Using pip 22.3.1 from /Users/alexandra/ENV3/lib/python3.11/site-packages/pip (python 3.11)
2023-01-25T15:12:52,034 Non-user install because user site-packages disabled
2023-01-25T15:12:52,058 Created temporary directory: /private/tmp/pip-build-tracker-nvnnyxg6
2023-01-25T15:12:52,058 Initialized build tracking at /private/tmp/pip-build-tracker-nvnnyxg6
2023-01-25T15:12:52,059 Created build tracker: /private/tmp/pip-build-tracker-nvnnyxg6
2023-01-25T15:12:52,059 Entered build tracker: /private/tmp/pip-build-tracker-nvnnyxg6
2023-01-25T15:12:52,059 Created temporary directory: /private/tmp/pip-install-w2ko2tqp
2023-01-25T15:12:52,060 Created temporary directory: /private/tmp/pip-ephem-wheel-cache-nkqs8_pk
2023-01-25T15:12:52,073 1 location(s) to search for versions of mpi4py:
2023-01-25T15:12:52,073 * https://pypi.org/simple/mpi4py/
2023-01-25T15:12:52,073 Fetching project page and analyzing links: https://pypi.org/simple/mpi4py/
2023-01-25T15:12:52,073 Getting page https://pypi.org/simple/mpi4py/
2023-01-25T15:12:52,073 Found index url https://pypi.org/simple
2023-01-25T15:12:52,138 Fetched page https://pypi.org/simple/mpi4py/ as application/vnd.pypi.simple.v1+json
2023-01-25T15:12:52,145 Found link https://files.pythonhosted.org/packages/66/95/408262f2c52448f785a419bf03aedea8312d33a576d3717b71cd22563f98/mpi4py-0.4.0rc1.tar.gz (from https://pypi.org/simple/mpi4py/), version: 0.4.0rc1
2023-01-25T15:12:52,145 Found link https://files.pythonhosted.org/packages/4a/ab/1a340996829b32708648a56095ecdd0610866ea8e95c56a44e6e65771bd5/mpi4py-0.4.0rc2.tar.gz (from https://pypi.org/simple/mpi4py/), version: 0.4.0rc2
2023-01-25T15:12:52,146 Found link https://files.pythonhosted.org/packages/22/6a/48228aae0c26d766649f8df95e038137f427dbfdb0111fdaa291afbfeac3/mpi4py-0.4.0rc3.tar.gz (from https://pypi.org/simple/mpi4py/), version: 0.4.0rc3
2023-01-25T15:12:52,146 Found link https://files.pythonhosted.org/packages/c4/a4/b1ce83dc46b0272ab1d572f2e03612e82cf42b5cae8e81fda7069afdba5b/mpi4py-0.4.0rc4.tar.gz (from https://pypi.org/simple/mpi4py/), version: 0.4.0rc4
2023-01-25T15:12:52,146 Found link https://files.pythonhosted.org/packages/0d/1e/665e5440ee9a04c2c9a922481e239374de7f7fb63e43d40c4a4a9b10d6cc/mpi4py-0.4.0.tar.gz (from https://pypi.org/simple/mpi4py/), version: 0.4.0
2023-01-25T15:12:52,146 Found link https://files.pythonhosted.org/packages/63/ad/6086e50d741edde21278a7465e207d573f8c2f68591611efb292c4c2d570/mpi4py-0.5.0.tar.gz (from https://pypi.org/simple/mpi4py/), version: 0.5.0
2023-01-25T15:12:52,146 Found link https://files.pythonhosted.org/packages/37/35/71c1f1d0a559442bd7bc5165944a4ea8bfd3ef2900778bddfd8d1c61b9c1/mpi4py-0.6.0.tar.gz (from https://pypi.org/simple/mpi4py/), version: 0.6.0
2023-01-25T15:12:52,146 Found link https://files.pythonhosted.org/packages/26/b4/1a9678ec113b5c654477354169131c88be3f65e665d7de7c5ef306f2f2a5/mpi4py-1.3.1.tar.gz (from https://pypi.org/simple/mpi4py/), version: 1.3.1
2023-01-25T15:12:52,162 Skipping link: none of the wheel's tags (cp26-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/da/b1/e9e65d04f4a701414975a975c99906eda61a40ad6c4d8d794aeb2746ce1a/mpi4py-2.0.0-cp26-none-win32.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T15:12:52,162 Skipping link: none of the wheel's tags (cp26-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/79/aa/f005fb538957d70b79000ac9bf871bc22c2966074078d6497f2959425442/mpi4py-2.0.0-cp26-none-win_amd64.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T15:12:52,163 Skipping link: none of the wheel's tags (cp27-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/2d/90/ebe9baee56cdaecb9c2979124d1b9670210f36af3bdd3506f4ff0954ff73/mpi4py-2.0.0-cp27-none-win32.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T15:12:52,163 Skipping link: none of the wheel's tags (cp27-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/15/51/6bf7a00ba213768ce9447e1f27fd80786d5f752cf15019d838390983f236/mpi4py-2.0.0-cp27-none-win_amd64.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T15:12:52,163 Skipping link: none of the wheel's tags (cp33-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e9/e7/5c7792992e56aacf8ae4ebb3538a06d518e304a6a295fae4bfe9111450cb/mpi4py-2.0.0-cp33-none-win32.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T15:12:52,164 Skipping link: none of the wheel's tags (cp33-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/78/a2/ef59cf02fc086da47deb555e6497a4b79079908782163e56200ae28c1952/mpi4py-2.0.0-cp33-none-win_amd64.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T15:12:52,164 Skipping link: none of the wheel's tags (cp34-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/93/dd/1453bb87ebe3aa803c6310f8e65213b55ed3068f7e0ec1c2cd39ac5d2461/mpi4py-2.0.0-cp34-none-win32.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T15:12:52,164 Skipping link: none of the wheel's tags (cp34-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/cd/b0/97855121edf6c5ae8d54db1762785f7d976b4b02d4565d7129d3b95ceed6/mpi4py-2.0.0-cp34-none-win_amd64.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T15:12:52,164 Skipping link: none of the wheel's tags (cp35-none-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/67/54/134470ec8bfb054be35f44746dd948115cf8678634fb1482d369d1bc767c/mpi4py-2.0.0-cp35-none-win32.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T15:12:52,165 Skipping link: none of the wheel's tags (cp35-none-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/0e/aa/d769bd7e110321b4d25bc2435432b0c6ed940cf6d149c2b33f3db305a7bd/mpi4py-2.0.0-cp35-none-win_amd64.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T15:12:52,165 Found link https://files.pythonhosted.org/packages/ee/b8/f443e1de0b6495479fc73c5863b7b5272a4ece5122e3589db6cd3bb57eeb/mpi4py-2.0.0.tar.gz (from https://pypi.org/simple/mpi4py/), version: 2.0.0
2023-01-25T15:12:52,165 Skipping link: none of the wheel's tags (cp27-cp27m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/61/0e/3e03d06001fde08925369465095407c1b7af28812992a204396bfdd03d63/mpi4py-3.0.0-cp27-cp27m-win32.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T15:12:52,165 Skipping link: none of the wheel's tags (cp27-cp27m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/4d/14/4df0ba0247a94c93a227d99f7d0ffb7a06b0d33bc73460c5ea16ead5b800/mpi4py-3.0.0-cp27-cp27m-win_amd64.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T15:12:52,166 Skipping link: none of the wheel's tags (cp33-cp33m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/55/7f/157c971c815562e43b5533c823bdd9661ffe682d90201d80ab6bae640ba8/mpi4py-3.0.0-cp33-cp33m-win32.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T15:12:52,166 Skipping link: none of the wheel's tags (cp33-cp33m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/75/d5/a2a890ca01871c4c2fc6c7548dedb0ff97947d649572c4a40aa847823631/mpi4py-3.0.0-cp33-cp33m-win_amd64.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T15:12:52,166 Skipping link: none of the wheel's tags (cp34-cp34m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a7/cc/2c93f81e035a8cb86fd0739bf7f71ef6e966ff75b7bda549d85c40080219/mpi4py-3.0.0-cp34-cp34m-win32.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T15:12:52,167 Skipping link: none of the wheel's tags (cp34-cp34m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/cd/b5/c41802679614f7b678be5db9a22ee8245f99791730bb661e4d86e3819b36/mpi4py-3.0.0-cp34-cp34m-win_amd64.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T15:12:52,167 Skipping link: none of the wheel's tags (cp35-cp35m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b3/12/df5501d54665bd75a383427c3197e97d646e0f0e4c6ba0b6d2e3fbd7542c/mpi4py-3.0.0-cp35-cp35m-win32.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T15:12:52,167 Skipping link: none of the wheel's tags (cp35-cp35m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d8/ff/b13a6d029b09af448c6b31ea498a0f8394ce06428f3ac7264ed3c79b144c/mpi4py-3.0.0-cp35-cp35m-win_amd64.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T15:12:52,167 Skipping link: none of the wheel's tags (cp36-cp36m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/61/e6/24643377d4a08ee4d60e1fd35828ba7105d2ee350162c2f4f28fbef30b48/mpi4py-3.0.0-cp36-cp36m-win32.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T15:12:52,168 Skipping link: none of the wheel's tags (cp36-cp36m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/06/b3/1996abb9a549a81c1b92750dd76147224b5265db3ce71005a0819aaa7591/mpi4py-3.0.0-cp36-cp36m-win_amd64.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T15:12:52,168 Found link https://files.pythonhosted.org/packages/31/27/1288918ac230cc9abc0da17d84d66f3db477757d90b3d6b070d709391a15/mpi4py-3.0.0.tar.gz (from https://pypi.org/simple/mpi4py/), version: 3.0.0
2023-01-25T15:12:52,168 Skipping link: none of the wheel's tags (cp27-cp27m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/7c/89/31d72b64129a56927d1c7e7a5ab1c602d4974b96c8989edd3aa697641ee0/mpi4py-3.0.1-cp27-cp27m-win32.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T15:12:52,168 Skipping link: none of the wheel's tags (cp27-cp27m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/0c/0d/b7c908468b664465797ae1dc9f21f3a9f30c3010bfdc649e1a3b4df91cb9/mpi4py-3.0.1-cp27-cp27m-win_amd64.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T15:12:52,169 Skipping link: none of the wheel's tags (cp33-cp33m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e0/fb/270e49448e01ceb9beed237137bb30615abf89a9832d7d9e9130e5eab1e2/mpi4py-3.0.1-cp33-cp33m-win32.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T15:12:52,169 Skipping link: none of the wheel's tags (cp33-cp33m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/5a/6b/ff079d3e231f7f79a854b090968f1b41757226e833f8db3e70df81032633/mpi4py-3.0.1-cp33-cp33m-win_amd64.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T15:12:52,169 Skipping link: none of the wheel's tags (cp34-cp34m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e1/20/17eab131820175ec3888c85258e0c5970ff2c95b583e2eb6ec5e8c0aa28b/mpi4py-3.0.1-cp34-cp34m-win32.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T15:12:52,170 Skipping link: none of the wheel's tags (cp34-cp34m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/81/eb/c67eb3e82356238ae11686b1612ef2ed2bbb482cae4b6964a9e615614f53/mpi4py-3.0.1-cp34-cp34m-win_amd64.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T15:12:52,170 Skipping link: none of the wheel's tags (cp35-cp35m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/df/aa/229b2a3a8e8f39f938f2c243ec49f449c0d71a3c81f4af0b5ab26ddeb85a/mpi4py-3.0.1-cp35-cp35m-win32.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T15:12:52,170 Skipping link: none of the wheel's tags (cp35-cp35m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c4/ac/de4df32fe9770a6b6c1ba051cc665208aa26c85045e9581c61f6226319d4/mpi4py-3.0.1-cp35-cp35m-win_amd64.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T15:12:52,170 Skipping link: none of the wheel's tags (cp36-cp36m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d2/c8/5ff70b94a73118a3abd3e4dcd79c569d74f397f341a1957533a051bc3210/mpi4py-3.0.1-cp36-cp36m-win32.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T15:12:52,171 Skipping link: none of the wheel's tags (cp36-cp36m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a9/db/366c845f0230c72950e82ad310af96e8e6b6975e3472cc1d33f62bea5832/mpi4py-3.0.1-cp36-cp36m-win_amd64.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T15:12:52,171 Skipping link: none of the wheel's tags (cp37-cp37m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c5/7f/4ae06216dbb5e98e2d9af1ab8f5a72e989f2ab97eb89b127e35c75a78fab/mpi4py-3.0.1-cp37-cp37m-win32.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T15:12:52,171 Skipping link: none of the wheel's tags (cp37-cp37m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b7/91/48776b0e0115a76628a9153ed121c3a6c82dbd1b6423eeaa89eb2d8b6c18/mpi4py-3.0.1-cp37-cp37m-win_amd64.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T15:12:52,171 Found link https://files.pythonhosted.org/packages/55/a2/c827b196070e161357b49287fa46d69f25641930fd5f854722319d431843/mpi4py-3.0.1.tar.gz (from https://pypi.org/simple/mpi4py/), version: 3.0.1
2023-01-25T15:12:52,172 Skipping link: none of the wheel's tags (cp27-cp27m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/5c/c8/8d088d88d6f7b79c419269a102a7b9f21c701f28576adec903b33832414f/mpi4py-3.0.2-cp27-cp27m-win32.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T15:12:52,172 Skipping link: none of the wheel's tags (cp27-cp27m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/31/1d/e459c995eb00ed707cb83dec4a41dcb904a69252c2f0dd7b4ecd11752855/mpi4py-3.0.2-cp27-cp27m-win_amd64.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T15:12:52,172 Skipping link: none of the wheel's tags (cp33-cp33m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/02/4f/dc4f1a93c39009bd91d3cdfba0ab1972dabfda560b071f02b17c8fe6eccc/mpi4py-3.0.2-cp33-cp33m-win32.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T15:12:52,172 Skipping link: none of the wheel's tags (cp33-cp33m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b0/d8/4dc0dfcd7e469f916410206674f7cba271fbad608019b7373c5b6e051854/mpi4py-3.0.2-cp33-cp33m-win_amd64.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T15:12:52,173 Skipping link: none of the wheel's tags (cp34-cp34m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/0e/d3/39231cb032bbbd4cf8897ec4cad966d203f8e5f9fddb3c82b109c7e60e79/mpi4py-3.0.2-cp34-cp34m-win32.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T15:12:52,173 Skipping link: none of the wheel's tags (cp34-cp34m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/25/66/39c53345fe3fad97ea9c33de376d2c79359775a43cc6ee53bcbcf09dd688/mpi4py-3.0.2-cp34-cp34m-win_amd64.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T15:12:52,173 Skipping link: none of the wheel's tags (cp35-cp35m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/5f/78/31734d54367ea93d65568580ecf6547eef7249334853e1eca7590404ae78/mpi4py-3.0.2-cp35-cp35m-win32.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T15:12:52,174 Skipping link: none of the wheel's tags (cp35-cp35m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/fb/a5/045e1a60e5444fd972a36897bb963ae32d6411d85e813bc592c5889f74f2/mpi4py-3.0.2-cp35-cp35m-win_amd64.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T15:12:52,174 Skipping link: none of the wheel's tags (cp36-cp36m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ed/bc/4427013f565c80afa6b86fcea69ec4959ffd9b017952b1bb2549fe36f1aa/mpi4py-3.0.2-cp36-cp36m-win32.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T15:12:52,174 Skipping link: none of the wheel's tags (cp36-cp36m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/9b/dc/064648c82b5ede755a9d7125d1460b3f89a8ab504465f7e707c403cf884d/mpi4py-3.0.2-cp36-cp36m-win_amd64.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T15:12:52,174 Skipping link: none of the wheel's tags (cp37-cp37m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d0/8d/692b3a22ad7c00373709783480263341a845cde0cbcb5cfb4aeee728cb4f/mpi4py-3.0.2-cp37-cp37m-win32.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T15:12:52,175 Skipping link: none of the wheel's tags (cp37-cp37m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ba/35/edded4db8a7f84e4079d80aa0d91d3453782d7dd0939717c78c7e263c6ef/mpi4py-3.0.2-cp37-cp37m-win_amd64.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T15:12:52,175 Found link https://files.pythonhosted.org/packages/04/f5/a615603ce4ab7f40b65dba63759455e3da610d9a155d4d4cece1d8fd6706/mpi4py-3.0.2.tar.gz (from https://pypi.org/simple/mpi4py/), version: 3.0.2
2023-01-25T15:12:52,175 Skipping link: none of the wheel's tags (cp27-cp27m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f6/31/8c82ff6ff8d4334c5cfd4221deae729468bba39058d8e0c3242b08d0f81f/mpi4py-3.0.3-cp27-cp27m-win32.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T15:12:52,175 Skipping link: none of the wheel's tags (cp27-cp27m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/00/49/ebd60034845ef7e48e8f5ac714b53f19d8602ccbf95efdf6686c22ea6a66/mpi4py-3.0.3-cp27-cp27m-win_amd64.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T15:12:52,176 Skipping link: none of the wheel's tags (cp33-cp33m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/53/cf/014ef551b282bf5a6f1dd7e530453904595d9ffce1c0830287afbb5d2fac/mpi4py-3.0.3-cp33-cp33m-win32.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T15:12:52,176 Skipping link: none of the wheel's tags (cp33-cp33m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/43/e9/0f9530d0f80b261e75059ff0169e674332f35ce7ed19cf5f16c12be16292/mpi4py-3.0.3-cp33-cp33m-win_amd64.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T15:12:52,176 Skipping link: none of the wheel's tags (cp34-cp34m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e6/ec/55a114f6982f9cbf134e0617af4f92f0b58e7ffe0a0b77af2ff5b2b8339b/mpi4py-3.0.3-cp34-cp34m-win32.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T15:12:52,176 Skipping link: none of the wheel's tags (cp34-cp34m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b0/a0/25cd4b1b40fc5e1957e3522d0cfec15f469afffb12343665e93cac65ba63/mpi4py-3.0.3-cp34-cp34m-win_amd64.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T15:12:52,177 Skipping link: none of the wheel's tags (cp35-cp35m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d8/18/900b97f626834be28218de744d70618c4c006fbfb42811b51a94be4eb346/mpi4py-3.0.3-cp35-cp35m-win32.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T15:12:52,177 Skipping link: none of the wheel's tags (cp35-cp35m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/75/db/339845c9506b078b0713fd386b3a3332c62ee7d6630a8cf13c57b14b7ec9/mpi4py-3.0.3-cp35-cp35m-win_amd64.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T15:12:52,177 Skipping link: none of the wheel's tags (cp36-cp36m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/05/35/a1dc40f7fc9ce1343c72c5cd6cc12f29c8120017103a878f3d638db3ad77/mpi4py-3.0.3-cp36-cp36m-win32.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T15:12:52,177 Skipping link: none of the wheel's tags (cp36-cp36m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/9c/3d/e3c65860d0e12ba1d75f27246fe13a24d18f8fe74aafc21b421e4ec8083f/mpi4py-3.0.3-cp36-cp36m-win_amd64.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T15:12:52,178 Skipping link: none of the wheel's tags (cp37-cp37m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/19/75/8b66f691ae989b25f403a15766ca36411e13928b7daaed3d18fb2efd7a68/mpi4py-3.0.3-cp37-cp37m-win32.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T15:12:52,178 Skipping link: none of the wheel's tags (cp37-cp37m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ba/ce/7f6f7916a364b43c9b924e7901143325e0d3290a5d1f499766a722662195/mpi4py-3.0.3-cp37-cp37m-win_amd64.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T15:12:52,178 Skipping link: none of the wheel's tags (cp38-cp38-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/8e/a7/f55f87e3fe2abae0f194d1c12d05199b67838d9e84cde1c9f05313a57db9/mpi4py-3.0.3-cp38-cp38-win32.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T15:12:52,178 Skipping link: none of the wheel's tags (cp38-cp38-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/46/da/9f487a1dda7b116fef40d75ed62d8b32fc39d7dcdf73f7232c5d96472922/mpi4py-3.0.3-cp38-cp38-win_amd64.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T15:12:52,179 Skipping link: none of the wheel's tags (cp39-cp39-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/7c/db/06d1d38366bba8441bd551d20f35f363613bcb14731bf03ca7ea1cd1a0af/mpi4py-3.0.3-cp39-cp39-win32.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T15:12:52,179 Skipping link: none of the wheel's tags (cp39-cp39-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e5/7d/435c177d3689f7a9e369010b9b8ca9a74618d6cb4bb909b39962e82b9778/mpi4py-3.0.3-cp39-cp39-win_amd64.whl (from https://pypi.org/simple/mpi4py/)
2023-01-25T15:12:52,179 Found link https://files.pythonhosted.org/packages/ec/8f/bbd8de5ba566dd77e408d8136e2bab7fdf2b97ce06cab830ba8b50a2f588/mpi4py-3.0.3.tar.gz (from https://pypi.org/simple/mpi4py/), version: 3.0.3
2023-01-25T15:12:52,179 Skipping link: none of the wheel's tags (cp27-cp27m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d7/c4/6663374a8b990d2d2d0891cd8d5e7ad740bd819f2aa62d74d633b666b9e1/mpi4py-3.1.0-cp27-cp27m-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*')
2023-01-25T15:12:52,180 Skipping link: none of the wheel's tags (cp27-cp27m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d3/6b/7c14f02bc0c50685325613219c1b581e5c6409c6f77f7290df697ec7460d/mpi4py-3.1.0-cp27-cp27m-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*')
2023-01-25T15:12:52,180 Skipping link: none of the wheel's tags (cp35-cp35m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/4f/a8/b6a48031f8e0ccdefac34b51354af7af217f0b87b989ef6a935addb86f24/mpi4py-3.1.0-cp35-cp35m-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*')
2023-01-25T15:12:52,180 Skipping link: none of the wheel's tags (cp35-cp35m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/9e/36/a694b62c407da8251b7e3035714f4af26c23c83c3ce39a89276425122ce7/mpi4py-3.1.0-cp35-cp35m-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*')
2023-01-25T15:12:52,180 Skipping link: none of the wheel's tags (cp36-cp36m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c0/91/e9058962b9c20c35d9a2ed830ad3a19c166888607b58b42ae71606d2585a/mpi4py-3.1.0-cp36-cp36m-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*')
2023-01-25T15:12:52,181 Skipping link: none of the wheel's tags (cp36-cp36m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/53/44/bcaa8f59642e7eecd86e939a5eb24b0f2a36d77332203aeebb976b6e8377/mpi4py-3.1.0-cp36-cp36m-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*')
2023-01-25T15:12:52,181 Skipping link: none of the wheel's tags (cp37-cp37m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c0/b9/f47268b0241aa26342bc2612793936e7795d1e807bbba965c3341325e3fe/mpi4py-3.1.0-cp37-cp37m-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*')
2023-01-25T15:12:52,181 Skipping link: none of the wheel's tags (cp37-cp37m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b4/2a/4f88775ea7e015254fdc188467de8c799e6c67c5ff6c90d98c0250515a38/mpi4py-3.1.0-cp37-cp37m-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*')
2023-01-25T15:12:52,181 Skipping link: none of the wheel's tags (cp38-cp38-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/60/76/8be976a152669c66d2a65ed2fbdbed560addc6b906d90eab4b07390407a7/mpi4py-3.1.0-cp38-cp38-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*')
2023-01-25T15:12:52,182 Skipping link: none of the wheel's tags (cp38-cp38-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d8/ba/82005266e5f71ed17cd116fa81da005e6fc5b97b3e1acba8e76d3ab14792/mpi4py-3.1.0-cp38-cp38-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*')
2023-01-25T15:12:52,182 Skipping link: none of the wheel's tags (cp39-cp39-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e2/15/aa999bbebdd3b9510b397a3c594147314ab196ffad1b19f3343bd1ff35dc/mpi4py-3.1.0-cp39-cp39-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*')
2023-01-25T15:12:52,182 Skipping link: none of the wheel's tags (cp39-cp39-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/99/3b/7e001212f8e528255770a476f33faa79fd79230cfe63a6e263ae77927f08/mpi4py-3.1.0-cp39-cp39-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*')
2023-01-25T15:12:52,183 Found link https://files.pythonhosted.org/packages/1a/a3/3a33c19379cb08cc1be16d1928a899e5b18151c7e8994d315a66017bc46f/mpi4py-3.1.0.tar.gz (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*'), version: 3.1.0
2023-01-25T15:12:52,183 Skipping link: none of the wheel's tags (cp27-cp27m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/0a/03/a17bc9221a1c41024a1c48693e5e8241c96981619f4044788afb82dfddaa/mpi4py-3.1.1-cp27-cp27m-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T15:12:52,183 Skipping link: none of the wheel's tags (cp27-cp27m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a2/3c/c8d416541436769204d0a3dbe9cd37af97cc7edd644e15dad6b54bc2da32/mpi4py-3.1.1-cp27-cp27m-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T15:12:52,183 Skipping link: none of the wheel's tags (cp35-cp35m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/70/1a/6ab872e470c3756aaaf3480eb04b9526395a55c8513cf3977a28cb549757/mpi4py-3.1.1-cp35-cp35m-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T15:12:52,184 Skipping link: none of the wheel's tags (cp35-cp35m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/39/8a/8da22c236456a8f0b5ee2d1086388240a21114c5a269ae809e33893a6c48/mpi4py-3.1.1-cp35-cp35m-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T15:12:52,184 Skipping link: none of the wheel's tags (cp36-cp36m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/cb/d5/40cf0f885f6549dcda4bd5ffd91bdb37ba45e210c4ad5a743b486184a77e/mpi4py-3.1.1-cp36-cp36m-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T15:12:52,184 Skipping link: none of the wheel's tags (cp36-cp36m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c8/d5/dca50c10745b0fe2636fa2cef09defcba6d6840e97cf71a570841bc1313c/mpi4py-3.1.1-cp36-cp36m-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T15:12:52,184 Skipping link: none of the wheel's tags (cp37-cp37m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c4/7a/515d0b6e8710c503c2c2c8bcc259442e7511fa3416c7e5f73560a337d5f3/mpi4py-3.1.1-cp37-cp37m-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T15:12:52,185 Skipping link: none of the wheel's tags (cp37-cp37m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/89/79/5d18ea597c7598657af5dd1d1c208a4b6e72f02ad80e37840a5172cc4620/mpi4py-3.1.1-cp37-cp37m-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T15:12:52,185 Skipping link: none of the wheel's tags (cp38-cp38-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/5e/95/019a7b07efae8a26392ffaead9beae61731f4f5c7703fc3c2a532cd9b42f/mpi4py-3.1.1-cp38-cp38-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T15:12:52,185 Skipping link: none of the wheel's tags (cp38-cp38-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/bf/1a/aeedf3fe2100a2e873bd0ed02bdf26161d4108b69d8f91d620a13674899d/mpi4py-3.1.1-cp38-cp38-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T15:12:52,185 Skipping link: none of the wheel's tags (cp39-cp39-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/22/27/741e0ea4bae5c2cff50a3f8d196e6c2093138a19d2d122df77a6d507f7a2/mpi4py-3.1.1-cp39-cp39-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T15:12:52,186 Skipping link: none of the wheel's tags (cp39-cp39-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/16/b7/d4e5c70f8a158345e8df6bbfdcf368bce9d1f0eb714d8776af375c526e45/mpi4py-3.1.1-cp39-cp39-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T15:12:52,186 Found link https://files.pythonhosted.org/packages/bd/d3/b1e686fcf2fe1677fa010f0a29a1b8a8cd3fd56161aacd59c5be252fe382/mpi4py-3.1.1.tar.gz (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*), version: 3.1.1
2023-01-25T15:12:52,186 Skipping link: none of the wheel's tags (cp27-cp27m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/99/d9/4f48becb4121752465b77cf381c8d6f82664840910e57db5d9a80cecd458/mpi4py-3.1.2-cp27-cp27m-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T15:12:52,187 Skipping link: none of the wheel's tags (cp27-cp27m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/65/fc/de84cbaa2892e029dba11947b87798e8ede50d8db20346eb56528dd1c195/mpi4py-3.1.2-cp27-cp27m-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T15:12:52,187 Skipping link: none of the wheel's tags (cp310-cp310-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/47/96/4c08b371a9ef8241c7642681fb931d16a4381ac413114a8c53fc9b2ae8e3/mpi4py-3.1.2-cp310-cp310-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T15:12:52,187 Skipping link: none of the wheel's tags (cp310-cp310-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b4/e4/5bee8f696d33e346c74f5b39daf9179ee585b900202a64d60d1b5d95d533/mpi4py-3.1.2-cp310-cp310-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T15:12:52,187 Skipping link: none of the wheel's tags (cp35-cp35m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c7/31/41ece2c30f4a1d9d34e8e0b061b9cc4b4119733a6fdeb4f1d29e5b5166a6/mpi4py-3.1.2-cp35-cp35m-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T15:12:52,188 Skipping link: none of the wheel's tags (cp35-cp35m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/83/2b/f5b99b255fd39ec32eaf0df40231137477c095833708c223db35aea0e549/mpi4py-3.1.2-cp35-cp35m-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T15:12:52,188 Skipping link: none of the wheel's tags (cp36-cp36m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d6/99/a51d0ce31b029a29d43c585b998981b5c95c612956bb84004363b676ed8d/mpi4py-3.1.2-cp36-cp36m-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T15:12:52,188 Skipping link: none of the wheel's tags (cp36-cp36m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ea/df/af64256188b3273753bcc1b86681439404753c82c5245cccc87b6775d4d3/mpi4py-3.1.2-cp36-cp36m-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T15:12:52,188 Skipping link: none of the wheel's tags (cp37-cp37m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/cb/66/6e8a18c1657f4e21bbc4e5ff765bd8a70cca25d6b00e23325ba8ea78651d/mpi4py-3.1.2-cp37-cp37m-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T15:12:52,189 Skipping link: none of the wheel's tags (cp37-cp37m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/01/3b/2899665c35b8b48237e19da48e41dc84d311532bf395682abc8faa1df1ad/mpi4py-3.1.2-cp37-cp37m-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T15:12:52,189 Skipping link: none of the wheel's tags (cp38-cp38-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f2/97/156308ac92844b3bb7904d8058b414a59c28b4fd1a9f5850e8d90d541288/mpi4py-3.1.2-cp38-cp38-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T15:12:52,189 Skipping link: none of the wheel's tags (cp38-cp38-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/23/11/5871e126206a88e78253b6e4483bd7a144d09bb880611471d65b932db74d/mpi4py-3.1.2-cp38-cp38-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T15:12:52,189 Skipping link: none of the wheel's tags (cp39-cp39-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d3/13/7d19eb6dca055880a01e30b47ff0901398ff43306009ec311d68bd6c23c6/mpi4py-3.1.2-cp39-cp39-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T15:12:52,190 Skipping link: none of the wheel's tags (cp39-cp39-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/68/4a/38fef7dd9e76d48f3eff90360058819a249696ff9d53fbe0ef730e3da931/mpi4py-3.1.2-cp39-cp39-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T15:12:52,190 Found link https://files.pythonhosted.org/packages/a6/5d/d58de70175c333255120a25abde95dd119af769bfa4c7ab4dd688b2af15f/mpi4py-3.1.2.tar.gz (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*), version: 3.1.2
2023-01-25T15:12:52,190 Skipping link: none of the wheel's tags (cp27-cp27m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/7d/07/f978a452be22baa2462085fff01f6ddffdea07c66d010de910e8cca71483/mpi4py-3.1.3-cp27-cp27m-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T15:12:52,190 Skipping link: none of the wheel's tags (cp27-cp27m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/62/b3/7231f50e490ea6c4882dce2891c678a5ad19854ec66cfff00ae12ab31a54/mpi4py-3.1.3-cp27-cp27m-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T15:12:52,191 Skipping link: none of the wheel's tags (cp310-cp310-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b0/59/74791219a67430010b9dc3d2c1d43a36c75254243d5a9958ea884ccc7552/mpi4py-3.1.3-cp310-cp310-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T15:12:52,191 Skipping link: none of the wheel's tags (cp310-cp310-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/88/b2/c03f6b97d379e06d77f2a3c3e9dac5f068cf9cd55ccb4afd8daf0d8f54cc/mpi4py-3.1.3-cp310-cp310-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T15:12:52,191 Skipping link: none of the wheel's tags (cp35-cp35m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/97/ff/b2e9411f301ab0be1752b09812c65407cdc09a7d136102ddd60e8b128cbc/mpi4py-3.1.3-cp35-cp35m-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T15:12:52,191 Skipping link: none of the wheel's tags (cp35-cp35m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f7/23/90e9454dcda243bef36bda3d09639c42acd9fc2531b6eb3cd298adbe38e8/mpi4py-3.1.3-cp35-cp35m-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T15:12:52,192 Skipping link: none of the wheel's tags (cp36-cp36m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/42/c7/fa16fc147712649628e15ac94630ab464d38e00a6e092f66241d028a2443/mpi4py-3.1.3-cp36-cp36m-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T15:12:52,192 Skipping link: none of the wheel's tags (cp36-cp36m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/08/b6/745fbef030505d8a430cc32da06c6ccde59a2911efa9489eb49c272dfc02/mpi4py-3.1.3-cp36-cp36m-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T15:12:52,192 Skipping link: none of the wheel's tags (cp37-cp37m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/48/f7/8305930561a2b4c12559888ee1066717c200a939c9d58aaafdb87d643ffd/mpi4py-3.1.3-cp37-cp37m-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T15:12:52,192 Skipping link: none of the wheel's tags (cp37-cp37m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/92/0c/72405d632c87e7722ec5b4c9774dfd812fcecdc8adcffd245344fc7fa615/mpi4py-3.1.3-cp37-cp37m-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T15:12:52,193 Skipping link: none of the wheel's tags (cp38-cp38-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/df/1d/c09b1cd769475506bd1fb04339731456eb179ce7e94e2cb4d47cca499a1f/mpi4py-3.1.3-cp38-cp38-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T15:12:52,193 Skipping link: none of the wheel's tags (cp38-cp38-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/dc/b3/6b4f40e38c01966b12f05f76195c53c346eb2115a9f581ddfefcb564f95a/mpi4py-3.1.3-cp38-cp38-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T15:12:52,193 Skipping link: none of the wheel's tags (cp39-cp39-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/11/4e/44c0903b27033c9f88671f0bfbdb33aee9c7198b4b5292be6bbcd3f0e778/mpi4py-3.1.3-cp39-cp39-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T15:12:52,193 Skipping link: none of the wheel's tags (cp39-cp39-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f6/28/1dc7e2726b5fd08a61ef3fa2320237e31df2e7ab91f58dcf829bc6d6054c/mpi4py-3.1.3-cp39-cp39-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T15:12:52,194 Found link https://files.pythonhosted.org/packages/20/50/d358fe2b56075163b75eca30c2faa6455c50b9978dd26f0fc4e3879b1062/mpi4py-3.1.3.tar.gz (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*), version: 3.1.3
2023-01-25T15:12:52,194 Skipping link: none of the wheel's tags (cp27-cp27m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/70/d3/6260334dee4eeee5b3cfdca13d43a9b83154ba02f98aff4729dde6726a75/mpi4py-3.1.4-cp27-cp27m-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T15:12:52,194 Skipping link: none of the wheel's tags (cp27-cp27m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/21/1b/2ceccb6806fb9777221be75d677337f80036f8ed7ef44ab7b42c1c786b36/mpi4py-3.1.4-cp27-cp27m-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T15:12:52,194 Skipping link: none of the wheel's tags (cp310-cp310-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/14/26/ed324d2c10ad987b58bf06cdb796974019b309aa8f57210fc7a299bb5afd/mpi4py-3.1.4-cp310-cp310-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T15:12:52,195 Skipping link: none of the wheel's tags (cp310-cp310-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/cc/dd/9af685a676c43d79d42f77e09d09e054a9a0b3952fe9842a51af0e7d8c06/mpi4py-3.1.4-cp310-cp310-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T15:12:52,195 Skipping link: none of the wheel's tags (cp311-cp311-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/02/9b/4f3ce5d2f319d4e5bd5637c883039d0c96cb238d9fab7e13532d1c8bc13e/mpi4py-3.1.4-cp311-cp311-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T15:12:52,195 Skipping link: none of the wheel's tags (cp311-cp311-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b9/31/e80c1fb71fac3203ab54c4115211cbec2b9d8575df895b202abaee9a65a1/mpi4py-3.1.4-cp311-cp311-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T15:12:52,195 Skipping link: none of the wheel's tags (cp35-cp35m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ba/dd/3f0796bc4986d722f2bbcc75c9cae0af220e0904022f5c0b328b96f98388/mpi4py-3.1.4-cp35-cp35m-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T15:12:52,196 Skipping link: none of the wheel's tags (cp35-cp35m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/5e/f6/b46ac69e986898eb790aa4a4626dea06a11b17f84b9d8442ca0e81799c58/mpi4py-3.1.4-cp35-cp35m-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T15:12:52,196 Skipping link: none of the wheel's tags (cp36-cp36m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/55/e0/c716e83ac8a2c3364d122a25561535e7c7f30ddb170407261e2b84c3db09/mpi4py-3.1.4-cp36-cp36m-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T15:12:52,196 Skipping link: none of the wheel's tags (cp36-cp36m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/24/21/22cb3e76962a977691f901452b64e7c18721808617be5d22cf936108d945/mpi4py-3.1.4-cp36-cp36m-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T15:12:52,196 Skipping link: none of the wheel's tags (cp37-cp37m-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/04/e7/029680f73ac7bc675c697de812e587f8f8851c644cba6eabfd1ab6575271/mpi4py-3.1.4-cp37-cp37m-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T15:12:52,197 Skipping link: none of the wheel's tags (cp37-cp37m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a8/d7/6ba539e8233e14b29c66eca6199f0dcbe7b2b79b9496bd68dd1695d73bf7/mpi4py-3.1.4-cp37-cp37m-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T15:12:52,197 Skipping link: none of the wheel's tags (cp38-cp38-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/6c/8e/2e4b165e729a0bb64ae0aaf8457d6fda918229a84a746f97377ad1de81d9/mpi4py-3.1.4-cp38-cp38-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T15:12:52,197 Skipping link: none of the wheel's tags (cp38-cp38-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d1/68/65d808ea61a902a56ffccb1e0ee6a0dbb2765f72fed442eb8055c89662ac/mpi4py-3.1.4-cp38-cp38-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T15:12:52,197 Skipping link: none of the wheel's tags (cp39-cp39-win32) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/5e/23/a96fbf1d3e559ef6612be31572a352ad0d63ed80a4d6f7b6e59553ba85b0/mpi4py-3.1.4-cp39-cp39-win32.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T15:12:52,198 Skipping link: none of the wheel's tags (cp39-cp39-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/98/4e/5bfd29c67e42c2a86e231074db2751f86f0a939129964e3cadf3c6791d2d/mpi4py-3.1.4-cp39-cp39-win_amd64.whl (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*)
2023-01-25T15:12:52,198 Found link https://files.pythonhosted.org/packages/bc/f2/749af7fd0e7703ddca6cea525ab40f26c3ca6cbe6c23658441c6f9705860/mpi4py-3.1.4.tar.gz (from https://pypi.org/simple/mpi4py/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*), version: 3.1.4
2023-01-25T15:12:52,198 Skipping link: not a file: https://pypi.org/simple/mpi4py/
2023-01-25T15:12:52,199 Given no hashes to check 14 links for project 'mpi4py': discarding no candidates
2023-01-25T15:12:52,203 Collecting mpi4py
2023-01-25T15:12:52,203 Created temporary directory: /private/tmp/pip-unpack-pxeo5b5e
2023-01-25T15:12:52,230 Using cached mpi4py-3.1.4.tar.gz (2.5 MB)
2023-01-25T15:12:52,713 Added mpi4py from https://files.pythonhosted.org/packages/bc/f2/749af7fd0e7703ddca6cea525ab40f26c3ca6cbe6c23658441c6f9705860/mpi4py-3.1.4.tar.gz to build tracker '/private/tmp/pip-build-tracker-nvnnyxg6'
2023-01-25T15:12:52,718 Created temporary directory: /private/tmp/pip-build-env-mef6w9_n
2023-01-25T15:12:52,719 Running command pip subprocess to install build dependencies
2023-01-25T15:12:53,154 Using pip 22.3.1 from /Users/alexandra/ENV3/lib/python3.11/site-packages/pip (python 3.11)
2023-01-25T15:12:53,488 Collecting setuptools>=40.9.0
2023-01-25T15:12:53,494 Using cached setuptools-66.1.1-py3-none-any.whl (1.3 MB)
2023-01-25T15:12:53,559 Collecting wheel
2023-01-25T15:12:53,563 Using cached wheel-0.38.4-py3-none-any.whl (36 kB)
2023-01-25T15:12:53,667 Installing collected packages: wheel, setuptools
2023-01-25T15:12:53,761 Creating /private/tmp/pip-build-env-mef6w9_n/overlay/bin
2023-01-25T15:12:53,762 changing mode of /private/tmp/pip-build-env-mef6w9_n/overlay/bin/wheel to 755
2023-01-25T15:12:55,372 Successfully installed setuptools-66.1.1 wheel-0.38.4
2023-01-25T15:12:55,467 Running command Getting requirements to build wheel
2023-01-25T15:12:56,219 running egg_info
2023-01-25T15:12:56,220 writing src/mpi4py.egg-info/PKG-INFO
2023-01-25T15:12:56,225 writing dependency_links to src/mpi4py.egg-info/dependency_links.txt
2023-01-25T15:12:56,226 writing top-level names to src/mpi4py.egg-info/top_level.txt
2023-01-25T15:12:56,237 reading manifest file 'src/mpi4py.egg-info/SOURCES.txt'
2023-01-25T15:12:56,246 reading manifest template 'MANIFEST.in'
2023-01-25T15:12:56,376 adding license file 'LICENSE.rst'
2023-01-25T15:12:56,385 writing manifest file 'src/mpi4py.egg-info/SOURCES.txt'
2023-01-25T15:12:56,425 Created temporary directory: /private/tmp/pip-modern-metadata-7ehjiez2
2023-01-25T15:12:56,426 Running command Preparing metadata (pyproject.toml)
2023-01-25T15:12:56,735 running dist_info
2023-01-25T15:12:56,736 creating /private/tmp/pip-modern-metadata-7ehjiez2/mpi4py.egg-info
2023-01-25T15:12:56,737 writing /private/tmp/pip-modern-metadata-7ehjiez2/mpi4py.egg-info/PKG-INFO
2023-01-25T15:12:56,738 writing dependency_links to /private/tmp/pip-modern-metadata-7ehjiez2/mpi4py.egg-info/dependency_links.txt
2023-01-25T15:12:56,738 writing top-level names to /private/tmp/pip-modern-metadata-7ehjiez2/mpi4py.egg-info/top_level.txt
2023-01-25T15:12:56,739 writing manifest file '/private/tmp/pip-modern-metadata-7ehjiez2/mpi4py.egg-info/SOURCES.txt'
2023-01-25T15:12:56,747 reading manifest file '/private/tmp/pip-modern-metadata-7ehjiez2/mpi4py.egg-info/SOURCES.txt'
2023-01-25T15:12:56,748 reading manifest template 'MANIFEST.in'
2023-01-25T15:12:56,870 adding license file 'LICENSE.rst'
2023-01-25T15:12:56,876 writing manifest file '/private/tmp/pip-modern-metadata-7ehjiez2/mpi4py.egg-info/SOURCES.txt'
2023-01-25T15:12:56,876 creating '/private/tmp/pip-modern-metadata-7ehjiez2/mpi4py-3.1.4.dist-info'
2023-01-25T15:12:56,985 Source in /private/tmp/pip-install-w2ko2tqp/mpi4py_ae5e7b5de2544e06810d2f1de1b1623e has version 3.1.4, which satisfies requirement mpi4py from https://files.pythonhosted.org/packages/bc/f2/749af7fd0e7703ddca6cea525ab40f26c3ca6cbe6c23658441c6f9705860/mpi4py-3.1.4.tar.gz
2023-01-25T15:12:56,986 Removed mpi4py from https://files.pythonhosted.org/packages/bc/f2/749af7fd0e7703ddca6cea525ab40f26c3ca6cbe6c23658441c6f9705860/mpi4py-3.1.4.tar.gz from build tracker '/private/tmp/pip-build-tracker-nvnnyxg6'
2023-01-25T15:12:56,989 Created temporary directory: /private/tmp/pip-unpack-r8q0lfug
2023-01-25T15:12:56,989 Building wheels for collected packages: mpi4py
2023-01-25T15:12:56,991 Created temporary directory: /private/tmp/pip-wheel-h0me5qbs
2023-01-25T15:12:56,991 Destination directory: /private/tmp/pip-wheel-h0me5qbs
2023-01-25T15:12:56,992 Running command Building wheel for mpi4py (pyproject.toml)
2023-01-25T15:12:57,312 running bdist_wheel
2023-01-25T15:12:57,316 running build
2023-01-25T15:12:57,316 running build_src