-
Notifications
You must be signed in to change notification settings - Fork 1
/
update.log.bak
5340 lines (5264 loc) · 619 KB
/
update.log.bak
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
--------------- Starting update ---------------
Updating: Sat Mar 10 16:31:46 EST 2018
commit 1dce1e83250e96c455de5f1bfdd0c98308f020b1
Author: Alexander Vyushkov <[email protected]>
Date: Sat Mar 10 16:31:20 2018 -0500
Fixed migrations broken by 2to3
Already up-to-date.
Removing .pyc files
Requirement already satisfied (use --upgrade to upgrade): Django==1.11.9 in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/base.txt (line 1))
Requirement already satisfied (use --upgrade to upgrade): requests==2.7.0 in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/base.txt (line 2))
Requirement already satisfied (use --upgrade to upgrade): django-bootstrap3==8.2.3 in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/base.txt (line 3))
Requirement already satisfied (use --upgrade to upgrade): django-registration==2.2 in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/base.txt (line 4))
Requirement already satisfied (use --upgrade to upgrade): gunicorn in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/base.txt (line 5))
Requirement already satisfied (use --upgrade to upgrade): lxml in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/base.txt (line 6))
Requirement already satisfied (use --upgrade to upgrade): mock==2.0.0 in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/base.txt (line 7))
Requirement already satisfied (use --upgrade to upgrade): vecnet.openmalaria from git+git://github.com/vecnet/vecnet.openmalaria.git@python3#egg=vecnet.openmalaria in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/base.txt (line 8))
Requirement already satisfied (use --upgrade to upgrade): factory-boy==2.8.1 in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/base.txt (line 9))
Requirement already satisfied (use --upgrade to upgrade): html2text==2016.9.19 in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/base.txt (line 10))
Requirement already satisfied (use --upgrade to upgrade): django-crontab==0.7.1 in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/base.txt (line 11))
Requirement already satisfied (use --upgrade to upgrade): psycopg2 in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/production.txt (line 2))
Requirement already satisfied (use --upgrade to upgrade): m2crypto==0.29.0 in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/production.txt (line 3))
Requirement already satisfied (use --upgrade to upgrade): django-auth-pubtkt==2.0.1 in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/production.txt (line 4))
Requirement already satisfied (use --upgrade to upgrade): pytz in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from Django==1.11.9->-r requirements/base.txt (line 1))
Requirement already satisfied (use --upgrade to upgrade): pbr>=0.11 in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from mock==2.0.0->-r requirements/base.txt (line 7))
Requirement already satisfied (use --upgrade to upgrade): six>=1.9 in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from mock==2.0.0->-r requirements/base.txt (line 7))
Requirement already satisfied (use --upgrade to upgrade): Faker>=0.7.0 in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from factory-boy==2.8.1->-r requirements/base.txt (line 9))
Requirement already satisfied (use --upgrade to upgrade): text-unidecode in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from Faker>=0.7.0->factory-boy==2.8.1->-r requirements/base.txt (line 9))
Requirement already satisfied (use --upgrade to upgrade): python-dateutil>=2.4 in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from Faker>=0.7.0->factory-boy==2.8.1->-r requirements/base.txt (line 9))
All migrations has been applied, no DB backup
manage.py: Using settings: website.settings.qa as defined in config_local.py file. DJANGO_SETTINGS_MODULE is ignored.
Operations to perform:
Apply all migrations: admin, auth, big_brother, contenttypes, email, sessions, sites, ts_om, website
Running migrations:
No migrations to apply.
Your models have changes that are not yet reflected in a migration, and so won't be applied.
Run 'manage.py makemigrations' to make new migrations, and then re-run 'manage.py migrate' to apply them.
manage.py: Using settings: website.settings.qa as defined in config_local.py file. DJANGO_SETTINGS_MODULE is ignored.
0 static files copied to '/opt/portal/om-qa.vecnet.org/apache/static', 412 unmodified.
manage.py: Using settings: website.settings.qa as defined in config_local.py file. DJANGO_SETTINGS_MODULE is ignored.
manage.py: Using settings: website.settings.qa as defined in config_local.py file. DJANGO_SETTINGS_MODULE is ignored.
--------------- Update complete ---------------
--------------- Starting update ---------------
Updating: Sat Mar 10 16:31:31 EST 2018
commit 5841d53fa36f1f53c9d9616c86c84b93c6c12534
Author: Alexander Vyushkov <[email protected]>
Date: Sat Mar 10 15:48:35 2018 -0500
bumped django-auth-pubtkt version
Updating 5841d53..1dce1e8
Fast-forward
website/apps/big_brother/migrations/0001_initial.py | 2 +-
.../apps/email/migrations/0002_auto_20170512_1552.py | 2 +-
website/apps/ts_om/migrations/0001_initial.py | 18 +++++++++---------
website/apps/ts_om/migrations/0001_scenario_name.py | 2 +-
4 files changed, 12 insertions(+), 12 deletions(-)
Removing .pyc files
Requirement already satisfied (use --upgrade to upgrade): Django==1.11.9 in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/base.txt (line 1))
Requirement already satisfied (use --upgrade to upgrade): requests==2.7.0 in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/base.txt (line 2))
Requirement already satisfied (use --upgrade to upgrade): django-bootstrap3==8.2.3 in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/base.txt (line 3))
Requirement already satisfied (use --upgrade to upgrade): django-registration==2.2 in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/base.txt (line 4))
Requirement already satisfied (use --upgrade to upgrade): gunicorn in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/base.txt (line 5))
Requirement already satisfied (use --upgrade to upgrade): lxml in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/base.txt (line 6))
Requirement already satisfied (use --upgrade to upgrade): mock==2.0.0 in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/base.txt (line 7))
Requirement already satisfied (use --upgrade to upgrade): vecnet.openmalaria from git+git://github.com/vecnet/vecnet.openmalaria.git@python3#egg=vecnet.openmalaria in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/base.txt (line 8))
Requirement already satisfied (use --upgrade to upgrade): factory-boy==2.8.1 in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/base.txt (line 9))
Requirement already satisfied (use --upgrade to upgrade): html2text==2016.9.19 in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/base.txt (line 10))
Requirement already satisfied (use --upgrade to upgrade): django-crontab==0.7.1 in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/base.txt (line 11))
Requirement already satisfied (use --upgrade to upgrade): psycopg2 in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/production.txt (line 2))
Requirement already satisfied (use --upgrade to upgrade): m2crypto==0.29.0 in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/production.txt (line 3))
Requirement already satisfied (use --upgrade to upgrade): django-auth-pubtkt==2.0.1 in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/production.txt (line 4))
Requirement already satisfied (use --upgrade to upgrade): pytz in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from Django==1.11.9->-r requirements/base.txt (line 1))
Requirement already satisfied (use --upgrade to upgrade): pbr>=0.11 in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from mock==2.0.0->-r requirements/base.txt (line 7))
Requirement already satisfied (use --upgrade to upgrade): six>=1.9 in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from mock==2.0.0->-r requirements/base.txt (line 7))
Requirement already satisfied (use --upgrade to upgrade): Faker>=0.7.0 in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from factory-boy==2.8.1->-r requirements/base.txt (line 9))
Requirement already satisfied (use --upgrade to upgrade): python-dateutil>=2.4 in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from Faker>=0.7.0->factory-boy==2.8.1->-r requirements/base.txt (line 9))
Requirement already satisfied (use --upgrade to upgrade): text-unidecode in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from Faker>=0.7.0->factory-boy==2.8.1->-r requirements/base.txt (line 9))
All migrations has been applied, no DB backup
manage.py: Using settings: website.settings.qa as defined in config_local.py file. DJANGO_SETTINGS_MODULE is ignored.
Operations to perform:
Apply all migrations: admin, auth, big_brother, contenttypes, email, sessions, sites, ts_om, website
Running migrations:
No migrations to apply.
Your models have changes that are not yet reflected in a migration, and so won't be applied.
Run 'manage.py makemigrations' to make new migrations, and then re-run 'manage.py migrate' to apply them.
manage.py: Using settings: website.settings.qa as defined in config_local.py file. DJANGO_SETTINGS_MODULE is ignored.
0 static files copied to '/opt/portal/om-qa.vecnet.org/apache/static', 412 unmodified.
manage.py: Using settings: website.settings.qa as defined in config_local.py file. DJANGO_SETTINGS_MODULE is ignored.
manage.py: Using settings: website.settings.qa as defined in config_local.py file. DJANGO_SETTINGS_MODULE is ignored.
--------------- Update complete ---------------
--------------- Starting update ---------------
Updating: Sat Mar 10 15:48:47 EST 2018
commit c138879f690bbec5c8c4a97a96f026dce7832e69
Author: Alexander Vyushkov <[email protected]>
Date: Sat Mar 10 15:01:16 2018 -0500
Updated dependencies for production
Updating c138879..5841d53
Fast-forward
requirements/production.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Removing .pyc files
Requirement already satisfied (use --upgrade to upgrade): Django==1.11.9 in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/base.txt (line 1))
Requirement already satisfied (use --upgrade to upgrade): requests==2.7.0 in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/base.txt (line 2))
Requirement already satisfied (use --upgrade to upgrade): django-bootstrap3==8.2.3 in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/base.txt (line 3))
Requirement already satisfied (use --upgrade to upgrade): django-registration==2.2 in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/base.txt (line 4))
Requirement already satisfied (use --upgrade to upgrade): gunicorn in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/base.txt (line 5))
Requirement already satisfied (use --upgrade to upgrade): lxml in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/base.txt (line 6))
Requirement already satisfied (use --upgrade to upgrade): mock==2.0.0 in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/base.txt (line 7))
Requirement already satisfied (use --upgrade to upgrade): vecnet.openmalaria from git+git://github.com/vecnet/vecnet.openmalaria.git@python3#egg=vecnet.openmalaria in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/base.txt (line 8))
Requirement already satisfied (use --upgrade to upgrade): factory-boy==2.8.1 in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/base.txt (line 9))
Requirement already satisfied (use --upgrade to upgrade): html2text==2016.9.19 in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/base.txt (line 10))
Requirement already satisfied (use --upgrade to upgrade): django-crontab==0.7.1 in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/base.txt (line 11))
Requirement already satisfied (use --upgrade to upgrade): psycopg2 in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/production.txt (line 2))
Requirement already satisfied (use --upgrade to upgrade): m2crypto==0.29.0 in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/production.txt (line 3))
Requirement already satisfied (use --upgrade to upgrade): django-auth-pubtkt==2.0.1 in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/production.txt (line 4))
Requirement already satisfied (use --upgrade to upgrade): pytz in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from Django==1.11.9->-r requirements/base.txt (line 1))
Requirement already satisfied (use --upgrade to upgrade): six>=1.9 in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from mock==2.0.0->-r requirements/base.txt (line 7))
Requirement already satisfied (use --upgrade to upgrade): pbr>=0.11 in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from mock==2.0.0->-r requirements/base.txt (line 7))
Requirement already satisfied (use --upgrade to upgrade): Faker>=0.7.0 in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from factory-boy==2.8.1->-r requirements/base.txt (line 9))
Requirement already satisfied (use --upgrade to upgrade): text-unidecode in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from Faker>=0.7.0->factory-boy==2.8.1->-r requirements/base.txt (line 9))
Requirement already satisfied (use --upgrade to upgrade): python-dateutil>=2.4 in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from Faker>=0.7.0->factory-boy==2.8.1->-r requirements/base.txt (line 9))
All migrations has been applied, no DB backup
manage.py: Using settings: website.settings.qa as defined in config_local.py file. DJANGO_SETTINGS_MODULE is ignored.
Operations to perform:
Apply all migrations: admin, auth, big_brother, contenttypes, email, sessions, sites, ts_om, website
Running migrations:
No migrations to apply.
Your models have changes that are not yet reflected in a migration, and so won't be applied.
Run 'manage.py makemigrations' to make new migrations, and then re-run 'manage.py migrate' to apply them.
manage.py: Using settings: website.settings.qa as defined in config_local.py file. DJANGO_SETTINGS_MODULE is ignored.
0 static files copied to '/opt/portal/om-qa.vecnet.org/apache/static', 412 unmodified.
manage.py: Using settings: website.settings.qa as defined in config_local.py file. DJANGO_SETTINGS_MODULE is ignored.
manage.py: Using settings: website.settings.qa as defined in config_local.py file. DJANGO_SETTINGS_MODULE is ignored.
--------------- Update complete ---------------
--------------- Starting update ---------------
Updating: Sat Mar 10 15:16:31 EST 2018
commit c138879f690bbec5c8c4a97a96f026dce7832e69
Author: Alexander Vyushkov <[email protected]>
Date: Sat Mar 10 15:01:16 2018 -0500
Updated dependencies for production
Already up-to-date.
Removing .pyc files
Requirement already satisfied (use --upgrade to upgrade): Django==1.11.9 in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/base.txt (line 1))
Requirement already satisfied (use --upgrade to upgrade): requests==2.7.0 in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/base.txt (line 2))
Requirement already satisfied (use --upgrade to upgrade): django-bootstrap3==8.2.3 in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/base.txt (line 3))
Requirement already satisfied (use --upgrade to upgrade): django-registration==2.2 in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/base.txt (line 4))
Requirement already satisfied (use --upgrade to upgrade): gunicorn in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/base.txt (line 5))
Requirement already satisfied (use --upgrade to upgrade): lxml in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/base.txt (line 6))
Requirement already satisfied (use --upgrade to upgrade): mock==2.0.0 in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/base.txt (line 7))
Requirement already satisfied (use --upgrade to upgrade): vecnet.openmalaria from git+git://github.com/vecnet/vecnet.openmalaria.git@python3#egg=vecnet.openmalaria in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/base.txt (line 8))
Requirement already satisfied (use --upgrade to upgrade): factory-boy==2.8.1 in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/base.txt (line 9))
Requirement already satisfied (use --upgrade to upgrade): html2text==2016.9.19 in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/base.txt (line 10))
Requirement already satisfied (use --upgrade to upgrade): django-crontab==0.7.1 in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/base.txt (line 11))
Requirement already satisfied (use --upgrade to upgrade): psycopg2 in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/production.txt (line 2))
Requirement already satisfied (use --upgrade to upgrade): m2crypto==0.29.0 in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/production.txt (line 3))
Collecting django-auth-pubtkt==2.0.0 (from -r requirements/production.txt (line 4))
Using cached django-auth-pubtkt-2.0.0.tar.gz
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "<string>", line 20, in <module>
File "/tmp/pip-build-wqvixare/django-auth-pubtkt/setup.py", line 20, in <module>
long_description=read('README.md'),
File "/tmp/pip-build-wqvixare/django-auth-pubtkt/setup.py", line 8, in read
return open(os.path.join(os.path.dirname(__file__), fname)).read()
FileNotFoundError: [Errno 2] No such file or directory: '/tmp/pip-build-wqvixare/django-auth-pubtkt/README.md'
----------------------------------------
All migrations has been applied, no DB backup
manage.py: Using settings: website.settings.qa as defined in config_local.py file. DJANGO_SETTINGS_MODULE is ignored.
manage.py: Using settings: website.settings.qa as defined in config_local.py file. DJANGO_SETTINGS_MODULE is ignored.
Copying '/opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages/django/contrib/admin/static/admin/css/base.css'
Copying '/opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages/django/contrib/admin/static/admin/css/changelists.css'
Copying '/opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages/django/contrib/admin/static/admin/css/dashboard.css'
Copying '/opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages/django/contrib/admin/static/admin/css/fonts.css'
Copying '/opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages/django/contrib/admin/static/admin/css/forms.css'
Copying '/opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages/django/contrib/admin/static/admin/css/login.css'
Copying '/opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages/django/contrib/admin/static/admin/css/rtl.css'
Copying '/opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages/django/contrib/admin/static/admin/css/widgets.css'
Copying '/opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages/django/contrib/admin/static/admin/fonts/LICENSE.txt'
Copying '/opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages/django/contrib/admin/static/admin/fonts/README.txt'
Copying '/opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages/django/contrib/admin/static/admin/fonts/Roboto-Bold-webfont.woff'
Copying '/opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages/django/contrib/admin/static/admin/fonts/Roboto-Light-webfont.woff'
Copying '/opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages/django/contrib/admin/static/admin/fonts/Roboto-Regular-webfont.woff'
Copying '/opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages/django/contrib/admin/static/admin/img/LICENSE'
Copying '/opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages/django/contrib/admin/static/admin/img/README.txt'
Copying '/opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages/django/contrib/admin/static/admin/img/calendar-icons.svg'
Copying '/opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages/django/contrib/admin/static/admin/img/icon-addlink.svg'
Copying '/opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages/django/contrib/admin/static/admin/img/icon-alert.svg'
Copying '/opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages/django/contrib/admin/static/admin/img/icon-calendar.svg'
Copying '/opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages/django/contrib/admin/static/admin/img/icon-changelink.svg'
Copying '/opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages/django/contrib/admin/static/admin/img/icon-clock.svg'
Copying '/opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages/django/contrib/admin/static/admin/img/icon-deletelink.svg'
Copying '/opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages/django/contrib/admin/static/admin/img/icon-no.svg'
Copying '/opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages/django/contrib/admin/static/admin/img/icon-unknown-alt.svg'
Copying '/opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages/django/contrib/admin/static/admin/img/icon-unknown.svg'
Copying '/opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages/django/contrib/admin/static/admin/img/icon-yes.svg'
Copying '/opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages/django/contrib/admin/static/admin/img/inline-delete.svg'
Copying '/opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages/django/contrib/admin/static/admin/img/search.svg'
Copying '/opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages/django/contrib/admin/static/admin/img/selector-icons.svg'
Copying '/opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages/django/contrib/admin/static/admin/img/sorting-icons.svg'
Copying '/opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages/django/contrib/admin/static/admin/img/tooltag-add.svg'
Copying '/opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages/django/contrib/admin/static/admin/img/tooltag-arrowright.svg'
Copying '/opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages/django/contrib/admin/static/admin/img/gis/move_vertex_off.svg'
Copying '/opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages/django/contrib/admin/static/admin/img/gis/move_vertex_on.svg'
Copying '/opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages/django/contrib/admin/static/admin/js/SelectBox.js'
Copying '/opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages/django/contrib/admin/static/admin/js/SelectFilter2.js'
Copying '/opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages/django/contrib/admin/static/admin/js/actions.js'
Copying '/opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages/django/contrib/admin/static/admin/js/actions.min.js'
Copying '/opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages/django/contrib/admin/static/admin/js/calendar.js'
Copying '/opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages/django/contrib/admin/static/admin/js/cancel.js'
Copying '/opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages/django/contrib/admin/static/admin/js/change_form.js'
Copying '/opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages/django/contrib/admin/static/admin/js/collapse.js'
Copying '/opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages/django/contrib/admin/static/admin/js/collapse.min.js'
Copying '/opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages/django/contrib/admin/static/admin/js/core.js'
Copying '/opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages/django/contrib/admin/static/admin/js/inlines.js'
Copying '/opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages/django/contrib/admin/static/admin/js/inlines.min.js'
Copying '/opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages/django/contrib/admin/static/admin/js/jquery.init.js'
Copying '/opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages/django/contrib/admin/static/admin/js/popup_response.js'
Copying '/opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages/django/contrib/admin/static/admin/js/prepopulate.js'
Copying '/opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages/django/contrib/admin/static/admin/js/prepopulate.min.js'
Copying '/opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages/django/contrib/admin/static/admin/js/prepopulate_init.js'
Copying '/opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages/django/contrib/admin/static/admin/js/timeparse.js'
Copying '/opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages/django/contrib/admin/static/admin/js/urlify.js'
Copying '/opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages/django/contrib/admin/static/admin/js/admin/DateTimeShortcuts.js'
Copying '/opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages/django/contrib/admin/static/admin/js/admin/RelatedObjectLookups.js'
Copying '/opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages/django/contrib/admin/static/admin/js/vendor/jquery/LICENSE-JQUERY.txt'
Copying '/opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages/django/contrib/admin/static/admin/js/vendor/jquery/jquery.js'
Copying '/opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages/django/contrib/admin/static/admin/js/vendor/jquery/jquery.min.js'
Copying '/opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages/django/contrib/admin/static/admin/js/vendor/xregexp/LICENSE-XREGEXP.txt'
Copying '/opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages/django/contrib/admin/static/admin/js/vendor/xregexp/xregexp.js'
Copying '/opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages/django/contrib/admin/static/admin/js/vendor/xregexp/xregexp.min.js'
Copying '/opt/portal/om-qa.vecnet.org/website/static/css/main.css'
Copying '/opt/portal/om-qa.vecnet.org/website/apps/ts_om/static/ts_om/css/ts2.css'
Copying '/opt/portal/om-qa.vecnet.org/website/apps/ts_om/static/ts_om/img/how-it-works.png'
64 static files copied to '/opt/portal/om-qa.vecnet.org/apache/static', 348 unmodified.
manage.py: Using settings: website.settings.qa as defined in config_local.py file. DJANGO_SETTINGS_MODULE is ignored.
manage.py: Using settings: website.settings.qa as defined in config_local.py file. DJANGO_SETTINGS_MODULE is ignored.
--------------- Update complete ---------------
--------------- Starting update ---------------
Updating: Sat Mar 10 15:12:20 EST 2018
commit c138879f690bbec5c8c4a97a96f026dce7832e69
Author: Alexander Vyushkov <[email protected]>
Date: Sat Mar 10 15:01:16 2018 -0500
Updated dependencies for production
Already up-to-date.
Removing .pyc files
Requirement already satisfied (use --upgrade to upgrade): Django==1.11.9 in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/base.txt (line 1))
Requirement already satisfied (use --upgrade to upgrade): requests==2.7.0 in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/base.txt (line 2))
Requirement already satisfied (use --upgrade to upgrade): django-bootstrap3==8.2.3 in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/base.txt (line 3))
Requirement already satisfied (use --upgrade to upgrade): django-registration==2.2 in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/base.txt (line 4))
Requirement already satisfied (use --upgrade to upgrade): gunicorn in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/base.txt (line 5))
Requirement already satisfied (use --upgrade to upgrade): lxml in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/base.txt (line 6))
Requirement already satisfied (use --upgrade to upgrade): mock==2.0.0 in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/base.txt (line 7))
Requirement already satisfied (use --upgrade to upgrade): vecnet.openmalaria from git+git://github.com/vecnet/vecnet.openmalaria.git@python3#egg=vecnet.openmalaria in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/base.txt (line 8))
Requirement already satisfied (use --upgrade to upgrade): factory-boy==2.8.1 in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/base.txt (line 9))
Requirement already satisfied (use --upgrade to upgrade): html2text==2016.9.19 in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/base.txt (line 10))
Requirement already satisfied (use --upgrade to upgrade): django-crontab==0.7.1 in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/base.txt (line 11))
Requirement already satisfied (use --upgrade to upgrade): psycopg2 in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/production.txt (line 2))
Requirement already satisfied (use --upgrade to upgrade): m2crypto==0.29.0 in /opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages (from -r requirements/production.txt (line 3))
Collecting django-auth-pubtkt==2.0.0 (from -r requirements/production.txt (line 4))
Downloading django-auth-pubtkt-2.0.0.tar.gz
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "<string>", line 20, in <module>
File "/tmp/pip-build-rkyqh49q/django-auth-pubtkt/setup.py", line 20, in <module>
long_description=read('README.md'),
File "/tmp/pip-build-rkyqh49q/django-auth-pubtkt/setup.py", line 8, in read
return open(os.path.join(os.path.dirname(__file__), fname)).read()
FileNotFoundError: [Errno 2] No such file or directory: '/tmp/pip-build-rkyqh49q/django-auth-pubtkt/README.md'
----------------------------------------
All migrations has been applied, no DB backup
manage.py: Using settings: website.settings.qa as defined in config_local.py file. DJANGO_SETTINGS_MODULE is ignored.
manage.py: Using settings: website.settings.qa as defined in config_local.py file. DJANGO_SETTINGS_MODULE is ignored.
manage.py: Using settings: website.settings.qa as defined in config_local.py file. DJANGO_SETTINGS_MODULE is ignored.
manage.py: Using settings: website.settings.qa as defined in config_local.py file. DJANGO_SETTINGS_MODULE is ignored.
--------------- Update complete ---------------
--------------- Starting update ---------------
Updating: Sat Mar 10 15:04:59 EST 2018
commit f96cfacc3c23d9a044e141478e6ce302329ba370
Author: Alexander Vyushkov <[email protected]>
Date: Thu Aug 10 22:41:14 2017 -0400
Increased font on index page
Updating f96cfac..22b30f9
Fast-forward
.coveragerc | 5 +-
.gitattributes | 3 +-
NOTICE.txt | 2 +-
README.md | 46 +-
binaries/om/readme.txt | 3 +
chef/README.txt | 4 +
chef/chef.rb | 88 +++
install_centos.sh | 29 +
requirements/base.txt | 2 +-
run.py | 6 +-
scripts/scenario_schema_error.xml | 631 +++++++++++++++++++++
scripts/validate_example.py | 19 +
website/__init__.py | 3 +
website/apps/ts_om/cron.py | 4 +-
website/apps/ts_om/static/ts_om/css/ts2.css | 3 +
.../apps/ts_om/static/ts_om/img/how-it-works.png | Bin 54253 -> 53066 bytes
website/apps/ts_om/templates/ts_om/base.html | 5 -
.../templates/ts_om/emails/new_users_report.html | 8 +-
.../ts_om/tests/commands/test_submit_scenario.py | 29 +
website/apps/ts_om/tests/test_cron.py | 3 +-
.../ts_om/tests/views/test_ScenarioStartView.py | 13 +-
.../ts_om/tests/views/test_update_scenario_view.py | 14 +-
website/apps/ts_om/views/ScenarioValidationView.py | 3 +-
.../ts_om_edit/templates/ts_om_edit/summary.html | 18 +-
.../tests/forms/test_update_interventions_form.py | 20 +-
.../tests/forms/test_update_monitoring_form.py | 68 +++
.../tests/views/test_ScenarioInterventionsView.py | 8 +-
.../tests/views/test_ScenarioSummaryView.py | 7 +
website/apps/ts_om_edit/utils.py | 17 +-
.../ts_om_edit/views/ScenarioInterventionsView.py | 14 +-
.../apps/ts_om_edit/views/ScenarioSummaryView.py | 2 +-
.../ts_om_viz/tests/views/test_SimulationView.py | 8 +
website/apps/ts_om_viz/views/SimulationView.py | 2 +-
website/context_processors.py | 16 +-
website/settings/aws.py | 40 +-
website/settings/base.py | 13 +-
website/settings/docker.py | 5 -
website/settings/local.py | 1 +
website/settings/production.py | 7 +-
website/settings/qa.py | 6 +-
website/static/css/main.css | 2 +-
website/templates/base.html | 58 +-
website/templates/footers/footer_cloud.html | 6 +
website/templates/footers/footer_vecnet.html | 7 +
website/templates/headers/header_cloud.html | 29 +
website/templates/headers/header_vecnet.html | 51 ++
website/templates/index.html | 58 +-
website/templates/navbar.html | 21 -
.../templates/registration/registration_form.html | 23 +-
website/templatetags/querystring.py | 37 --
website/tests/context_processors/__init__.py | 4 +
website/tests/context_processors/test_site_url.py | 37 ++
website/tests/test_get_site_url.py | 24 +
website/tests/test_middleware.py | 31 +
website/utils.py | 20 +
55 files changed, 1321 insertions(+), 262 deletions(-)
create mode 100644 chef/README.txt
create mode 100644 chef/chef.rb
create mode 100644 install_centos.sh
create mode 100644 scripts/scenario_schema_error.xml
create mode 100644 scripts/validate_example.py
create mode 100644 website/apps/ts_om/tests/commands/test_submit_scenario.py
create mode 100644 website/apps/ts_om_edit/tests/forms/test_update_monitoring_form.py
create mode 100644 website/templates/footers/footer_cloud.html
create mode 100644 website/templates/footers/footer_vecnet.html
create mode 100644 website/templates/headers/header_cloud.html
create mode 100644 website/templates/headers/header_vecnet.html
delete mode 100644 website/templates/navbar.html
delete mode 100644 website/templatetags/querystring.py
create mode 100644 website/tests/context_processors/__init__.py
create mode 100644 website/tests/context_processors/test_site_url.py
create mode 100644 website/tests/test_get_site_url.py
create mode 100644 website/tests/test_middleware.py
create mode 100644 website/utils.py
Removing .pyc files
Collecting Django==1.11.9 (from -r requirements/base.txt (line 1))
Using cached Django-1.11.9-py2.py3-none-any.whl
Collecting requests==2.7.0 (from -r requirements/base.txt (line 2))
Using cached requests-2.7.0-py2.py3-none-any.whl
Collecting django-bootstrap3==8.2.3 (from -r requirements/base.txt (line 3))
Using cached django-bootstrap3-8.2.3.tar.gz
Collecting django-registration==2.2 (from -r requirements/base.txt (line 4))
Using cached django-registration-2.2.tar.gz
Collecting gunicorn (from -r requirements/base.txt (line 5))
Using cached gunicorn-19.7.1-py2.py3-none-any.whl
Collecting lxml (from -r requirements/base.txt (line 6))
Downloading lxml-4.1.1.tar.gz (2.4MB)
Collecting mock==2.0.0 (from -r requirements/base.txt (line 7))
Using cached mock-2.0.0-py2.py3-none-any.whl
Collecting vecnet.openmalaria==0.9.2 (from -r requirements/base.txt (line 8))
Using cached vecnet.openmalaria-0.9.2.tar.gz
Collecting vecnet.simulation (from -r requirements/base.txt (line 9))
Using cached vecnet.simulation-0.2.zip
Collecting factory-boy==2.8.1 (from -r requirements/base.txt (line 10))
Using cached factory_boy-2.8.1-py2.py3-none-any.whl
Collecting html2text==2016.9.19 (from -r requirements/base.txt (line 11))
Using cached html2text-2016.9.19.tar.gz
Collecting django-crontab==0.7.1 (from -r requirements/base.txt (line 12))
Collecting psycopg2 (from -r requirements/production.txt (line 2))
Downloading psycopg2-2.7.4.tar.gz (425kB)
Collecting django-auth-pubtkt==1.1.2 (from -r requirements/production.txt (line 3))
Using cached django-auth-pubtkt-1.1.2.zip
Collecting pytz (from Django==1.11.9->-r requirements/base.txt (line 1))
Using cached pytz-2018.3-py2.py3-none-any.whl
Collecting pbr>=0.11 (from mock==2.0.0->-r requirements/base.txt (line 7))
Downloading pbr-3.1.1-py2.py3-none-any.whl (99kB)
Collecting six>=1.9 (from mock==2.0.0->-r requirements/base.txt (line 7))
Using cached six-1.11.0-py2.py3-none-any.whl
Collecting Faker>=0.7.0 (from factory-boy==2.8.1->-r requirements/base.txt (line 10))
Downloading Faker-0.8.11-py2.py3-none-any.whl (722kB)
Collecting M2Crypto (from django-auth-pubtkt==1.1.2->-r requirements/production.txt (line 3))
Using cached M2Crypto-0.29.0.tar.gz
Collecting text-unidecode (from Faker>=0.7.0->factory-boy==2.8.1->-r requirements/base.txt (line 10))
Downloading text_unidecode-1.2-py2.py3-none-any.whl (77kB)
Collecting python-dateutil>=2.4 (from Faker>=0.7.0->factory-boy==2.8.1->-r requirements/base.txt (line 10))
Using cached python_dateutil-2.6.1-py2.py3-none-any.whl
Building wheels for collected packages: django-bootstrap3, django-registration, lxml, vecnet.openmalaria, vecnet.simulation, html2text, psycopg2, django-auth-pubtkt, M2Crypto
Running setup.py bdist_wheel for django-bootstrap3
Stored in directory: /home/avyushko/.cache/pip/wheels/fe/60/82/f5857cd6d0278eece835eb8674d090b87e557f163842bb4da0
Running setup.py bdist_wheel for django-registration
Stored in directory: /home/avyushko/.cache/pip/wheels/22/37/33/ec6097143333995df00af2d90aa6079f65f873c083a4954176
Running setup.py bdist_wheel for lxml
Complete output from command /opt/venvs/om-qa.vecnet.org/bin/python3.5 -c "import setuptools;__file__='/tmp/pip-build-k2mu1059/lxml/setup.py';exec(compile(open(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" bdist_wheel -d /tmp/tmpwwrlcdi_pip-wheel-:
Building lxml version 4.1.1.
Building without Cython.
Using build configuration of libxslt 1.1.28
Building against libxml2/libxslt in the following directory: /usr/lib64
running bdist_wheel
running build
running build_py
creating build
creating build/lib.linux-x86_64-3.5
creating build/lib.linux-x86_64-3.5/lxml
copying src/lxml/sax.py -> build/lib.linux-x86_64-3.5/lxml
copying src/lxml/_elementpath.py -> build/lib.linux-x86_64-3.5/lxml
copying src/lxml/builder.py -> build/lib.linux-x86_64-3.5/lxml
copying src/lxml/ElementInclude.py -> build/lib.linux-x86_64-3.5/lxml
copying src/lxml/__init__.py -> build/lib.linux-x86_64-3.5/lxml
copying src/lxml/usedoctest.py -> build/lib.linux-x86_64-3.5/lxml
copying src/lxml/cssselect.py -> build/lib.linux-x86_64-3.5/lxml
copying src/lxml/pyclasslookup.py -> build/lib.linux-x86_64-3.5/lxml
copying src/lxml/doctestcompare.py -> build/lib.linux-x86_64-3.5/lxml
creating build/lib.linux-x86_64-3.5/lxml/includes
copying src/lxml/includes/__init__.py -> build/lib.linux-x86_64-3.5/lxml/includes
creating build/lib.linux-x86_64-3.5/lxml/html
copying src/lxml/html/diff.py -> build/lib.linux-x86_64-3.5/lxml/html
copying src/lxml/html/ElementSoup.py -> build/lib.linux-x86_64-3.5/lxml/html
copying src/lxml/html/html5parser.py -> build/lib.linux-x86_64-3.5/lxml/html
copying src/lxml/html/builder.py -> build/lib.linux-x86_64-3.5/lxml/html
copying src/lxml/html/__init__.py -> build/lib.linux-x86_64-3.5/lxml/html
copying src/lxml/html/usedoctest.py -> build/lib.linux-x86_64-3.5/lxml/html
copying src/lxml/html/_setmixin.py -> build/lib.linux-x86_64-3.5/lxml/html
copying src/lxml/html/clean.py -> build/lib.linux-x86_64-3.5/lxml/html
copying src/lxml/html/soupparser.py -> build/lib.linux-x86_64-3.5/lxml/html
copying src/lxml/html/_html5builder.py -> build/lib.linux-x86_64-3.5/lxml/html
copying src/lxml/html/_diffcommand.py -> build/lib.linux-x86_64-3.5/lxml/html
copying src/lxml/html/formfill.py -> build/lib.linux-x86_64-3.5/lxml/html
copying src/lxml/html/defs.py -> build/lib.linux-x86_64-3.5/lxml/html
creating build/lib.linux-x86_64-3.5/lxml/isoschematron
copying src/lxml/isoschematron/__init__.py -> build/lib.linux-x86_64-3.5/lxml/isoschematron
copying src/lxml/etree.h -> build/lib.linux-x86_64-3.5/lxml
copying src/lxml/etree_api.h -> build/lib.linux-x86_64-3.5/lxml
copying src/lxml/lxml.etree.h -> build/lib.linux-x86_64-3.5/lxml
copying src/lxml/lxml.etree_api.h -> build/lib.linux-x86_64-3.5/lxml
copying src/lxml/includes/etreepublic.pxd -> build/lib.linux-x86_64-3.5/lxml/includes
copying src/lxml/includes/xinclude.pxd -> build/lib.linux-x86_64-3.5/lxml/includes
copying src/lxml/includes/xmlerror.pxd -> build/lib.linux-x86_64-3.5/lxml/includes
copying src/lxml/includes/htmlparser.pxd -> build/lib.linux-x86_64-3.5/lxml/includes
copying src/lxml/includes/config.pxd -> build/lib.linux-x86_64-3.5/lxml/includes
copying src/lxml/includes/__init__.pxd -> build/lib.linux-x86_64-3.5/lxml/includes
copying src/lxml/includes/xmlschema.pxd -> build/lib.linux-x86_64-3.5/lxml/includes
copying src/lxml/includes/uri.pxd -> build/lib.linux-x86_64-3.5/lxml/includes
copying src/lxml/includes/xslt.pxd -> build/lib.linux-x86_64-3.5/lxml/includes
copying src/lxml/includes/tree.pxd -> build/lib.linux-x86_64-3.5/lxml/includes
copying src/lxml/includes/xmlparser.pxd -> build/lib.linux-x86_64-3.5/lxml/includes
copying src/lxml/includes/dtdvalid.pxd -> build/lib.linux-x86_64-3.5/lxml/includes
copying src/lxml/includes/xpath.pxd -> build/lib.linux-x86_64-3.5/lxml/includes
copying src/lxml/includes/relaxng.pxd -> build/lib.linux-x86_64-3.5/lxml/includes
copying src/lxml/includes/c14n.pxd -> build/lib.linux-x86_64-3.5/lxml/includes
copying src/lxml/includes/schematron.pxd -> build/lib.linux-x86_64-3.5/lxml/includes
copying src/lxml/includes/etree_defs.h -> build/lib.linux-x86_64-3.5/lxml/includes
copying src/lxml/includes/lxml-version.h -> build/lib.linux-x86_64-3.5/lxml/includes
creating build/lib.linux-x86_64-3.5/lxml/isoschematron/resources
creating build/lib.linux-x86_64-3.5/lxml/isoschematron/resources/rng
copying src/lxml/isoschematron/resources/rng/iso-schematron.rng -> build/lib.linux-x86_64-3.5/lxml/isoschematron/resources/rng
creating build/lib.linux-x86_64-3.5/lxml/isoschematron/resources/xsl
copying src/lxml/isoschematron/resources/xsl/RNG2Schtrn.xsl -> build/lib.linux-x86_64-3.5/lxml/isoschematron/resources/xsl
copying src/lxml/isoschematron/resources/xsl/XSD2Schtrn.xsl -> build/lib.linux-x86_64-3.5/lxml/isoschematron/resources/xsl
creating build/lib.linux-x86_64-3.5/lxml/isoschematron/resources/xsl/iso-schematron-xslt1
copying src/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_dsdl_include.xsl -> build/lib.linux-x86_64-3.5/lxml/isoschematron/resources/xsl/iso-schematron-xslt1
copying src/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_abstract_expand.xsl -> build/lib.linux-x86_64-3.5/lxml/isoschematron/resources/xsl/iso-schematron-xslt1
copying src/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_schematron_skeleton_for_xslt1.xsl -> build/lib.linux-x86_64-3.5/lxml/isoschematron/resources/xsl/iso-schematron-xslt1
copying src/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_schematron_message.xsl -> build/lib.linux-x86_64-3.5/lxml/isoschematron/resources/xsl/iso-schematron-xslt1
copying src/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_svrl_for_xslt1.xsl -> build/lib.linux-x86_64-3.5/lxml/isoschematron/resources/xsl/iso-schematron-xslt1
copying src/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/readme.txt -> build/lib.linux-x86_64-3.5/lxml/isoschematron/resources/xsl/iso-schematron-xslt1
running build_ext
building 'lxml.etree' extension
creating build/temp.linux-x86_64-3.5
creating build/temp.linux-x86_64-3.5/src
creating build/temp.linux-x86_64-3.5/src/lxml
gcc -pthread -Wno-unused-result -Wsign-compare -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DCYTHON_CLINE_IN_TRACEBACK=1 -I/usr/include/libxml2 -Isrc -Isrc/lxml/includes -I/usr/include/python3.5m -c src/lxml/etree.c -o build/temp.linux-x86_64-3.5/src/lxml/etree.o -w
gcc -pthread -shared -Wl,-z,relro build/temp.linux-x86_64-3.5/src/lxml/etree.o -L/usr/lib64 -L/usr/lib64 -lxslt -lexslt -lxml2 -lrt -lz -lm -lpython3.5m -o build/lib.linux-x86_64-3.5/lxml/etree.cpython-35m-x86_64-linux-gnu.so
building 'lxml.objectify' extension
gcc -pthread -Wno-unused-result -Wsign-compare -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DCYTHON_CLINE_IN_TRACEBACK=1 -I/usr/include/libxml2 -Isrc -Isrc/lxml/includes -I/usr/include/python3.5m -c src/lxml/objectify.c -o build/temp.linux-x86_64-3.5/src/lxml/objectify.o -w
gcc -pthread -shared -Wl,-z,relro build/temp.linux-x86_64-3.5/src/lxml/objectify.o -L/usr/lib64 -L/usr/lib64 -lxslt -lexslt -lxml2 -lrt -lz -lm -lpython3.5m -o build/lib.linux-x86_64-3.5/lxml/objectify.cpython-35m-x86_64-linux-gnu.so
building 'lxml.builder' extension
gcc -pthread -Wno-unused-result -Wsign-compare -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DCYTHON_CLINE_IN_TRACEBACK=1 -I/usr/include/libxml2 -Isrc -Isrc/lxml/includes -I/usr/include/python3.5m -c src/lxml/builder.c -o build/temp.linux-x86_64-3.5/src/lxml/builder.o -w
gcc -pthread -shared -Wl,-z,relro build/temp.linux-x86_64-3.5/src/lxml/builder.o -L/usr/lib64 -L/usr/lib64 -lxslt -lexslt -lxml2 -lrt -lz -lm -lpython3.5m -o build/lib.linux-x86_64-3.5/lxml/builder.cpython-35m-x86_64-linux-gnu.so
building 'lxml._elementpath' extension
gcc -pthread -Wno-unused-result -Wsign-compare -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DCYTHON_CLINE_IN_TRACEBACK=1 -I/usr/include/libxml2 -Isrc -Isrc/lxml/includes -I/usr/include/python3.5m -c src/lxml/_elementpath.c -o build/temp.linux-x86_64-3.5/src/lxml/_elementpath.o -w
gcc -pthread -shared -Wl,-z,relro build/temp.linux-x86_64-3.5/src/lxml/_elementpath.o -L/usr/lib64 -L/usr/lib64 -lxslt -lexslt -lxml2 -lrt -lz -lm -lpython3.5m -o build/lib.linux-x86_64-3.5/lxml/_elementpath.cpython-35m-x86_64-linux-gnu.so
building 'lxml.html.diff' extension
creating build/temp.linux-x86_64-3.5/src/lxml/html
gcc -pthread -Wno-unused-result -Wsign-compare -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DCYTHON_CLINE_IN_TRACEBACK=1 -I/usr/include/libxml2 -Isrc -Isrc/lxml/includes -I/usr/include/python3.5m -c src/lxml/html/diff.c -o build/temp.linux-x86_64-3.5/src/lxml/html/diff.o -w
gcc -pthread -shared -Wl,-z,relro build/temp.linux-x86_64-3.5/src/lxml/html/diff.o -L/usr/lib64 -L/usr/lib64 -lxslt -lexslt -lxml2 -lrt -lz -lm -lpython3.5m -o build/lib.linux-x86_64-3.5/lxml/html/diff.cpython-35m-x86_64-linux-gnu.so
building 'lxml.html.clean' extension
gcc -pthread -Wno-unused-result -Wsign-compare -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DCYTHON_CLINE_IN_TRACEBACK=1 -I/usr/include/libxml2 -Isrc -Isrc/lxml/includes -I/usr/include/python3.5m -c src/lxml/html/clean.c -o build/temp.linux-x86_64-3.5/src/lxml/html/clean.o -w
gcc -pthread -shared -Wl,-z,relro build/temp.linux-x86_64-3.5/src/lxml/html/clean.o -L/usr/lib64 -L/usr/lib64 -lxslt -lexslt -lxml2 -lrt -lz -lm -lpython3.5m -o build/lib.linux-x86_64-3.5/lxml/html/clean.cpython-35m-x86_64-linux-gnu.so
installing to build/bdist.linux-x86_64/wheel
running install
running install_lib
creating build/bdist.linux-x86_64
creating build/bdist.linux-x86_64/wheel
creating build/bdist.linux-x86_64/wheel/lxml
copying build/lib.linux-x86_64-3.5/lxml/sax.py -> build/bdist.linux-x86_64/wheel/lxml
copying build/lib.linux-x86_64-3.5/lxml/_elementpath.py -> build/bdist.linux-x86_64/wheel/lxml
copying build/lib.linux-x86_64-3.5/lxml/builder.py -> build/bdist.linux-x86_64/wheel/lxml
copying build/lib.linux-x86_64-3.5/lxml/ElementInclude.py -> build/bdist.linux-x86_64/wheel/lxml
copying build/lib.linux-x86_64-3.5/lxml/__init__.py -> build/bdist.linux-x86_64/wheel/lxml
copying build/lib.linux-x86_64-3.5/lxml/usedoctest.py -> build/bdist.linux-x86_64/wheel/lxml
copying build/lib.linux-x86_64-3.5/lxml/cssselect.py -> build/bdist.linux-x86_64/wheel/lxml
copying build/lib.linux-x86_64-3.5/lxml/pyclasslookup.py -> build/bdist.linux-x86_64/wheel/lxml
copying build/lib.linux-x86_64-3.5/lxml/doctestcompare.py -> build/bdist.linux-x86_64/wheel/lxml
creating build/bdist.linux-x86_64/wheel/lxml/includes
copying build/lib.linux-x86_64-3.5/lxml/includes/__init__.py -> build/bdist.linux-x86_64/wheel/lxml/includes
copying build/lib.linux-x86_64-3.5/lxml/includes/etreepublic.pxd -> build/bdist.linux-x86_64/wheel/lxml/includes
copying build/lib.linux-x86_64-3.5/lxml/includes/xinclude.pxd -> build/bdist.linux-x86_64/wheel/lxml/includes
copying build/lib.linux-x86_64-3.5/lxml/includes/xmlerror.pxd -> build/bdist.linux-x86_64/wheel/lxml/includes
copying build/lib.linux-x86_64-3.5/lxml/includes/htmlparser.pxd -> build/bdist.linux-x86_64/wheel/lxml/includes
copying build/lib.linux-x86_64-3.5/lxml/includes/config.pxd -> build/bdist.linux-x86_64/wheel/lxml/includes
copying build/lib.linux-x86_64-3.5/lxml/includes/__init__.pxd -> build/bdist.linux-x86_64/wheel/lxml/includes
copying build/lib.linux-x86_64-3.5/lxml/includes/xmlschema.pxd -> build/bdist.linux-x86_64/wheel/lxml/includes
copying build/lib.linux-x86_64-3.5/lxml/includes/uri.pxd -> build/bdist.linux-x86_64/wheel/lxml/includes
copying build/lib.linux-x86_64-3.5/lxml/includes/xslt.pxd -> build/bdist.linux-x86_64/wheel/lxml/includes
copying build/lib.linux-x86_64-3.5/lxml/includes/tree.pxd -> build/bdist.linux-x86_64/wheel/lxml/includes
copying build/lib.linux-x86_64-3.5/lxml/includes/xmlparser.pxd -> build/bdist.linux-x86_64/wheel/lxml/includes
copying build/lib.linux-x86_64-3.5/lxml/includes/dtdvalid.pxd -> build/bdist.linux-x86_64/wheel/lxml/includes
copying build/lib.linux-x86_64-3.5/lxml/includes/xpath.pxd -> build/bdist.linux-x86_64/wheel/lxml/includes
copying build/lib.linux-x86_64-3.5/lxml/includes/relaxng.pxd -> build/bdist.linux-x86_64/wheel/lxml/includes
copying build/lib.linux-x86_64-3.5/lxml/includes/c14n.pxd -> build/bdist.linux-x86_64/wheel/lxml/includes
copying build/lib.linux-x86_64-3.5/lxml/includes/schematron.pxd -> build/bdist.linux-x86_64/wheel/lxml/includes
copying build/lib.linux-x86_64-3.5/lxml/includes/etree_defs.h -> build/bdist.linux-x86_64/wheel/lxml/includes
copying build/lib.linux-x86_64-3.5/lxml/includes/lxml-version.h -> build/bdist.linux-x86_64/wheel/lxml/includes
creating build/bdist.linux-x86_64/wheel/lxml/html
copying build/lib.linux-x86_64-3.5/lxml/html/diff.py -> build/bdist.linux-x86_64/wheel/lxml/html
copying build/lib.linux-x86_64-3.5/lxml/html/ElementSoup.py -> build/bdist.linux-x86_64/wheel/lxml/html
copying build/lib.linux-x86_64-3.5/lxml/html/html5parser.py -> build/bdist.linux-x86_64/wheel/lxml/html
copying build/lib.linux-x86_64-3.5/lxml/html/builder.py -> build/bdist.linux-x86_64/wheel/lxml/html
copying build/lib.linux-x86_64-3.5/lxml/html/__init__.py -> build/bdist.linux-x86_64/wheel/lxml/html
copying build/lib.linux-x86_64-3.5/lxml/html/usedoctest.py -> build/bdist.linux-x86_64/wheel/lxml/html
copying build/lib.linux-x86_64-3.5/lxml/html/_setmixin.py -> build/bdist.linux-x86_64/wheel/lxml/html
copying build/lib.linux-x86_64-3.5/lxml/html/clean.py -> build/bdist.linux-x86_64/wheel/lxml/html
copying build/lib.linux-x86_64-3.5/lxml/html/soupparser.py -> build/bdist.linux-x86_64/wheel/lxml/html
copying build/lib.linux-x86_64-3.5/lxml/html/_html5builder.py -> build/bdist.linux-x86_64/wheel/lxml/html
copying build/lib.linux-x86_64-3.5/lxml/html/_diffcommand.py -> build/bdist.linux-x86_64/wheel/lxml/html
copying build/lib.linux-x86_64-3.5/lxml/html/formfill.py -> build/bdist.linux-x86_64/wheel/lxml/html
copying build/lib.linux-x86_64-3.5/lxml/html/defs.py -> build/bdist.linux-x86_64/wheel/lxml/html
copying build/lib.linux-x86_64-3.5/lxml/html/diff.cpython-35m-x86_64-linux-gnu.so -> build/bdist.linux-x86_64/wheel/lxml/html
copying build/lib.linux-x86_64-3.5/lxml/html/clean.cpython-35m-x86_64-linux-gnu.so -> build/bdist.linux-x86_64/wheel/lxml/html
creating build/bdist.linux-x86_64/wheel/lxml/isoschematron
copying build/lib.linux-x86_64-3.5/lxml/isoschematron/__init__.py -> build/bdist.linux-x86_64/wheel/lxml/isoschematron
creating build/bdist.linux-x86_64/wheel/lxml/isoschematron/resources
creating build/bdist.linux-x86_64/wheel/lxml/isoschematron/resources/rng
copying build/lib.linux-x86_64-3.5/lxml/isoschematron/resources/rng/iso-schematron.rng -> build/bdist.linux-x86_64/wheel/lxml/isoschematron/resources/rng
creating build/bdist.linux-x86_64/wheel/lxml/isoschematron/resources/xsl
copying build/lib.linux-x86_64-3.5/lxml/isoschematron/resources/xsl/RNG2Schtrn.xsl -> build/bdist.linux-x86_64/wheel/lxml/isoschematron/resources/xsl
copying build/lib.linux-x86_64-3.5/lxml/isoschematron/resources/xsl/XSD2Schtrn.xsl -> build/bdist.linux-x86_64/wheel/lxml/isoschematron/resources/xsl
creating build/bdist.linux-x86_64/wheel/lxml/isoschematron/resources/xsl/iso-schematron-xslt1
copying build/lib.linux-x86_64-3.5/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_dsdl_include.xsl -> build/bdist.linux-x86_64/wheel/lxml/isoschematron/resources/xsl/iso-schematron-xslt1
copying build/lib.linux-x86_64-3.5/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_abstract_expand.xsl -> build/bdist.linux-x86_64/wheel/lxml/isoschematron/resources/xsl/iso-schematron-xslt1
copying build/lib.linux-x86_64-3.5/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_schematron_skeleton_for_xslt1.xsl -> build/bdist.linux-x86_64/wheel/lxml/isoschematron/resources/xsl/iso-schematron-xslt1
copying build/lib.linux-x86_64-3.5/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_schematron_message.xsl -> build/bdist.linux-x86_64/wheel/lxml/isoschematron/resources/xsl/iso-schematron-xslt1
copying build/lib.linux-x86_64-3.5/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_svrl_for_xslt1.xsl -> build/bdist.linux-x86_64/wheel/lxml/isoschematron/resources/xsl/iso-schematron-xslt1
copying build/lib.linux-x86_64-3.5/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/readme.txt -> build/bdist.linux-x86_64/wheel/lxml/isoschematron/resources/xsl/iso-schematron-xslt1
copying build/lib.linux-x86_64-3.5/lxml/etree.h -> build/bdist.linux-x86_64/wheel/lxml
copying build/lib.linux-x86_64-3.5/lxml/etree_api.h -> build/bdist.linux-x86_64/wheel/lxml
copying build/lib.linux-x86_64-3.5/lxml/lxml.etree.h -> build/bdist.linux-x86_64/wheel/lxml
copying build/lib.linux-x86_64-3.5/lxml/lxml.etree_api.h -> build/bdist.linux-x86_64/wheel/lxml
copying build/lib.linux-x86_64-3.5/lxml/etree.cpython-35m-x86_64-linux-gnu.so -> build/bdist.linux-x86_64/wheel/lxml
copying build/lib.linux-x86_64-3.5/lxml/objectify.cpython-35m-x86_64-linux-gnu.so -> build/bdist.linux-x86_64/wheel/lxml
copying build/lib.linux-x86_64-3.5/lxml/builder.cpython-35m-x86_64-linux-gnu.so -> build/bdist.linux-x86_64/wheel/lxml
copying build/lib.linux-x86_64-3.5/lxml/_elementpath.cpython-35m-x86_64-linux-gnu.so -> build/bdist.linux-x86_64/wheel/lxml
running install_egg_info
running egg_info
writing requirements to src/lxml.egg-info/requires.txt
writing src/lxml.egg-info/PKG-INFO
writing top-level names to src/lxml.egg-info/top_level.txt
writing dependency_links to src/lxml.egg-info/dependency_links.txt
warning: manifest_maker: standard file '-c' not found
reading manifest file 'src/lxml.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
warning: no files found matching '*.html' under directory 'doc'
writing manifest file 'src/lxml.egg-info/SOURCES.txt'
Copying src/lxml.egg-info to build/bdist.linux-x86_64/wheel/lxml-4.1.1-py3.5.egg-info
running install_scripts
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "/tmp/pip-build-k2mu1059/lxml/setup.py", line 240, in <module>
**setup_extra_options()
File "/usr/lib64/python3.5/distutils/core.py", line 148, in setup
dist.run_commands()
File "/usr/lib64/python3.5/distutils/dist.py", line 955, in run_commands
self.run_command(cmd)
File "/usr/lib64/python3.5/distutils/dist.py", line 974, in run_command
cmd_obj.run()
File "/opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages/wheel/bdist_wheel.py", line 213, in run
archive_basename = self.get_archive_basename()
File "/opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages/wheel/bdist_wheel.py", line 161, in get_archive_basename
impl_tag, abi_tag, plat_tag = self.get_tag()
File "/opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages/wheel/bdist_wheel.py", line 155, in get_tag
assert tag == supported_tags[0]
AssertionError
----------------------------------------
Running setup.py bdist_wheel for vecnet.openmalaria
Stored in directory: /home/avyushko/.cache/pip/wheels/f0/47/3d/6017e6e8038ef48272eb17b6fe2d8979f3720b426697a3089d
Running setup.py bdist_wheel for vecnet.simulation
Stored in directory: /home/avyushko/.cache/pip/wheels/b7/e0/10/9a0f4dd37ae095201da2789938ee3828e430166222caada36e
Running setup.py bdist_wheel for html2text
Stored in directory: /home/avyushko/.cache/pip/wheels/96/13/e0/25f9de1c524662d264bb143dde112812b72789bc8058dc4f57
Running setup.py bdist_wheel for psycopg2
Complete output from command /opt/venvs/om-qa.vecnet.org/bin/python3.5 -c "import setuptools;__file__='/tmp/pip-build-k2mu1059/psycopg2/setup.py';exec(compile(open(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" bdist_wheel -d /tmp/tmp0mwlbpptpip-wheel-:
running bdist_wheel
running build
running build_py
creating build
creating build/lib.linux-x86_64-3.5
creating build/lib.linux-x86_64-3.5/psycopg2
copying lib/pool.py -> build/lib.linux-x86_64-3.5/psycopg2
copying lib/errorcodes.py -> build/lib.linux-x86_64-3.5/psycopg2
copying lib/sql.py -> build/lib.linux-x86_64-3.5/psycopg2
copying lib/extras.py -> build/lib.linux-x86_64-3.5/psycopg2
copying lib/_ipaddress.py -> build/lib.linux-x86_64-3.5/psycopg2
copying lib/_range.py -> build/lib.linux-x86_64-3.5/psycopg2
copying lib/__init__.py -> build/lib.linux-x86_64-3.5/psycopg2
copying lib/extensions.py -> build/lib.linux-x86_64-3.5/psycopg2
copying lib/psycopg1.py -> build/lib.linux-x86_64-3.5/psycopg2
copying lib/tz.py -> build/lib.linux-x86_64-3.5/psycopg2
copying lib/_json.py -> build/lib.linux-x86_64-3.5/psycopg2
creating build/lib.linux-x86_64-3.5/psycopg2/tests
copying tests/test_async_keyword.py -> build/lib.linux-x86_64-3.5/psycopg2/tests
copying tests/test_quote.py -> build/lib.linux-x86_64-3.5/psycopg2/tests
copying tests/test_lobject.py -> build/lib.linux-x86_64-3.5/psycopg2/tests
copying tests/test_green.py -> build/lib.linux-x86_64-3.5/psycopg2/tests
copying tests/test_connection.py -> build/lib.linux-x86_64-3.5/psycopg2/tests
copying tests/test_sql.py -> build/lib.linux-x86_64-3.5/psycopg2/tests
copying tests/test_errcodes.py -> build/lib.linux-x86_64-3.5/psycopg2/tests
copying tests/test_bug_gc.py -> build/lib.linux-x86_64-3.5/psycopg2/tests
copying tests/test_cancel.py -> build/lib.linux-x86_64-3.5/psycopg2/tests
copying tests/dbapi20_tpc.py -> build/lib.linux-x86_64-3.5/psycopg2/tests
copying tests/test_fast_executemany.py -> build/lib.linux-x86_64-3.5/psycopg2/tests
copying tests/__init__.py -> build/lib.linux-x86_64-3.5/psycopg2/tests
copying tests/test_dates.py -> build/lib.linux-x86_64-3.5/psycopg2/tests
copying tests/test_bugX000.py -> build/lib.linux-x86_64-3.5/psycopg2/tests
copying tests/testconfig.py -> build/lib.linux-x86_64-3.5/psycopg2/tests
copying tests/test_async.py -> build/lib.linux-x86_64-3.5/psycopg2/tests
copying tests/test_copy.py -> build/lib.linux-x86_64-3.5/psycopg2/tests
copying tests/test_ipaddress.py -> build/lib.linux-x86_64-3.5/psycopg2/tests
copying tests/test_extras_dictcursor.py -> build/lib.linux-x86_64-3.5/psycopg2/tests
copying tests/test_psycopg2_dbapi20.py -> build/lib.linux-x86_64-3.5/psycopg2/tests
copying tests/test_types_basic.py -> build/lib.linux-x86_64-3.5/psycopg2/tests
copying tests/test_transaction.py -> build/lib.linux-x86_64-3.5/psycopg2/tests
copying tests/test_types_extras.py -> build/lib.linux-x86_64-3.5/psycopg2/tests
copying tests/test_replication.py -> build/lib.linux-x86_64-3.5/psycopg2/tests
copying tests/test_notify.py -> build/lib.linux-x86_64-3.5/psycopg2/tests
copying tests/test_module.py -> build/lib.linux-x86_64-3.5/psycopg2/tests
copying tests/test_cursor.py -> build/lib.linux-x86_64-3.5/psycopg2/tests
copying tests/testutils.py -> build/lib.linux-x86_64-3.5/psycopg2/tests
copying tests/test_with.py -> build/lib.linux-x86_64-3.5/psycopg2/tests
copying tests/dbapi20.py -> build/lib.linux-x86_64-3.5/psycopg2/tests
Skipping optional fixer: buffer
Skipping optional fixer: idioms
Skipping optional fixer: set_literal
Skipping optional fixer: ws_comma
running build_ext
building 'psycopg2._psycopg' extension
creating build/temp.linux-x86_64-3.5
creating build/temp.linux-x86_64-3.5/psycopg
gcc -pthread -Wno-unused-result -Wsign-compare -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DPSYCOPG_DEFAULT_PYDATETIME=1 -DPSYCOPG_VERSION="2.7.4 (dt dec pq3 ext)" -DPG_VERSION_NUM=90223 -I/usr/include/python3.5m -I. -I/usr/include -I/usr/include/pgsql/server -c psycopg/psycopgmodule.c -o build/temp.linux-x86_64-3.5/psycopg/psycopgmodule.o -Wdeclaration-after-statement
gcc -pthread -Wno-unused-result -Wsign-compare -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DPSYCOPG_DEFAULT_PYDATETIME=1 -DPSYCOPG_VERSION="2.7.4 (dt dec pq3 ext)" -DPG_VERSION_NUM=90223 -I/usr/include/python3.5m -I. -I/usr/include -I/usr/include/pgsql/server -c psycopg/green.c -o build/temp.linux-x86_64-3.5/psycopg/green.o -Wdeclaration-after-statement
gcc -pthread -Wno-unused-result -Wsign-compare -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DPSYCOPG_DEFAULT_PYDATETIME=1 -DPSYCOPG_VERSION="2.7.4 (dt dec pq3 ext)" -DPG_VERSION_NUM=90223 -I/usr/include/python3.5m -I. -I/usr/include -I/usr/include/pgsql/server -c psycopg/pqpath.c -o build/temp.linux-x86_64-3.5/psycopg/pqpath.o -Wdeclaration-after-statement
gcc -pthread -Wno-unused-result -Wsign-compare -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DPSYCOPG_DEFAULT_PYDATETIME=1 -DPSYCOPG_VERSION="2.7.4 (dt dec pq3 ext)" -DPG_VERSION_NUM=90223 -I/usr/include/python3.5m -I. -I/usr/include -I/usr/include/pgsql/server -c psycopg/utils.c -o build/temp.linux-x86_64-3.5/psycopg/utils.o -Wdeclaration-after-statement
gcc -pthread -Wno-unused-result -Wsign-compare -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DPSYCOPG_DEFAULT_PYDATETIME=1 -DPSYCOPG_VERSION="2.7.4 (dt dec pq3 ext)" -DPG_VERSION_NUM=90223 -I/usr/include/python3.5m -I. -I/usr/include -I/usr/include/pgsql/server -c psycopg/bytes_format.c -o build/temp.linux-x86_64-3.5/psycopg/bytes_format.o -Wdeclaration-after-statement
gcc -pthread -Wno-unused-result -Wsign-compare -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DPSYCOPG_DEFAULT_PYDATETIME=1 -DPSYCOPG_VERSION="2.7.4 (dt dec pq3 ext)" -DPG_VERSION_NUM=90223 -I/usr/include/python3.5m -I. -I/usr/include -I/usr/include/pgsql/server -c psycopg/libpq_support.c -o build/temp.linux-x86_64-3.5/psycopg/libpq_support.o -Wdeclaration-after-statement
gcc -pthread -Wno-unused-result -Wsign-compare -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DPSYCOPG_DEFAULT_PYDATETIME=1 -DPSYCOPG_VERSION="2.7.4 (dt dec pq3 ext)" -DPG_VERSION_NUM=90223 -I/usr/include/python3.5m -I. -I/usr/include -I/usr/include/pgsql/server -c psycopg/win32_support.c -o build/temp.linux-x86_64-3.5/psycopg/win32_support.o -Wdeclaration-after-statement
gcc -pthread -Wno-unused-result -Wsign-compare -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DPSYCOPG_DEFAULT_PYDATETIME=1 -DPSYCOPG_VERSION="2.7.4 (dt dec pq3 ext)" -DPG_VERSION_NUM=90223 -I/usr/include/python3.5m -I. -I/usr/include -I/usr/include/pgsql/server -c psycopg/solaris_support.c -o build/temp.linux-x86_64-3.5/psycopg/solaris_support.o -Wdeclaration-after-statement
gcc -pthread -Wno-unused-result -Wsign-compare -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DPSYCOPG_DEFAULT_PYDATETIME=1 -DPSYCOPG_VERSION="2.7.4 (dt dec pq3 ext)" -DPG_VERSION_NUM=90223 -I/usr/include/python3.5m -I. -I/usr/include -I/usr/include/pgsql/server -c psycopg/connection_int.c -o build/temp.linux-x86_64-3.5/psycopg/connection_int.o -Wdeclaration-after-statement
gcc -pthread -Wno-unused-result -Wsign-compare -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DPSYCOPG_DEFAULT_PYDATETIME=1 -DPSYCOPG_VERSION="2.7.4 (dt dec pq3 ext)" -DPG_VERSION_NUM=90223 -I/usr/include/python3.5m -I. -I/usr/include -I/usr/include/pgsql/server -c psycopg/connection_type.c -o build/temp.linux-x86_64-3.5/psycopg/connection_type.o -Wdeclaration-after-statement
gcc -pthread -Wno-unused-result -Wsign-compare -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DPSYCOPG_DEFAULT_PYDATETIME=1 -DPSYCOPG_VERSION="2.7.4 (dt dec pq3 ext)" -DPG_VERSION_NUM=90223 -I/usr/include/python3.5m -I. -I/usr/include -I/usr/include/pgsql/server -c psycopg/cursor_int.c -o build/temp.linux-x86_64-3.5/psycopg/cursor_int.o -Wdeclaration-after-statement
gcc -pthread -Wno-unused-result -Wsign-compare -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DPSYCOPG_DEFAULT_PYDATETIME=1 -DPSYCOPG_VERSION="2.7.4 (dt dec pq3 ext)" -DPG_VERSION_NUM=90223 -I/usr/include/python3.5m -I. -I/usr/include -I/usr/include/pgsql/server -c psycopg/cursor_type.c -o build/temp.linux-x86_64-3.5/psycopg/cursor_type.o -Wdeclaration-after-statement
gcc -pthread -Wno-unused-result -Wsign-compare -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DPSYCOPG_DEFAULT_PYDATETIME=1 -DPSYCOPG_VERSION="2.7.4 (dt dec pq3 ext)" -DPG_VERSION_NUM=90223 -I/usr/include/python3.5m -I. -I/usr/include -I/usr/include/pgsql/server -c psycopg/replication_connection_type.c -o build/temp.linux-x86_64-3.5/psycopg/replication_connection_type.o -Wdeclaration-after-statement
gcc -pthread -Wno-unused-result -Wsign-compare -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DPSYCOPG_DEFAULT_PYDATETIME=1 -DPSYCOPG_VERSION="2.7.4 (dt dec pq3 ext)" -DPG_VERSION_NUM=90223 -I/usr/include/python3.5m -I. -I/usr/include -I/usr/include/pgsql/server -c psycopg/replication_cursor_type.c -o build/temp.linux-x86_64-3.5/psycopg/replication_cursor_type.o -Wdeclaration-after-statement
gcc -pthread -Wno-unused-result -Wsign-compare -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DPSYCOPG_DEFAULT_PYDATETIME=1 -DPSYCOPG_VERSION="2.7.4 (dt dec pq3 ext)" -DPG_VERSION_NUM=90223 -I/usr/include/python3.5m -I. -I/usr/include -I/usr/include/pgsql/server -c psycopg/replication_message_type.c -o build/temp.linux-x86_64-3.5/psycopg/replication_message_type.o -Wdeclaration-after-statement
gcc -pthread -Wno-unused-result -Wsign-compare -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DPSYCOPG_DEFAULT_PYDATETIME=1 -DPSYCOPG_VERSION="2.7.4 (dt dec pq3 ext)" -DPG_VERSION_NUM=90223 -I/usr/include/python3.5m -I. -I/usr/include -I/usr/include/pgsql/server -c psycopg/diagnostics_type.c -o build/temp.linux-x86_64-3.5/psycopg/diagnostics_type.o -Wdeclaration-after-statement
gcc -pthread -Wno-unused-result -Wsign-compare -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DPSYCOPG_DEFAULT_PYDATETIME=1 -DPSYCOPG_VERSION="2.7.4 (dt dec pq3 ext)" -DPG_VERSION_NUM=90223 -I/usr/include/python3.5m -I. -I/usr/include -I/usr/include/pgsql/server -c psycopg/error_type.c -o build/temp.linux-x86_64-3.5/psycopg/error_type.o -Wdeclaration-after-statement
gcc -pthread -Wno-unused-result -Wsign-compare -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DPSYCOPG_DEFAULT_PYDATETIME=1 -DPSYCOPG_VERSION="2.7.4 (dt dec pq3 ext)" -DPG_VERSION_NUM=90223 -I/usr/include/python3.5m -I. -I/usr/include -I/usr/include/pgsql/server -c psycopg/lobject_int.c -o build/temp.linux-x86_64-3.5/psycopg/lobject_int.o -Wdeclaration-after-statement
gcc -pthread -Wno-unused-result -Wsign-compare -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DPSYCOPG_DEFAULT_PYDATETIME=1 -DPSYCOPG_VERSION="2.7.4 (dt dec pq3 ext)" -DPG_VERSION_NUM=90223 -I/usr/include/python3.5m -I. -I/usr/include -I/usr/include/pgsql/server -c psycopg/lobject_type.c -o build/temp.linux-x86_64-3.5/psycopg/lobject_type.o -Wdeclaration-after-statement
gcc -pthread -Wno-unused-result -Wsign-compare -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DPSYCOPG_DEFAULT_PYDATETIME=1 -DPSYCOPG_VERSION="2.7.4 (dt dec pq3 ext)" -DPG_VERSION_NUM=90223 -I/usr/include/python3.5m -I. -I/usr/include -I/usr/include/pgsql/server -c psycopg/notify_type.c -o build/temp.linux-x86_64-3.5/psycopg/notify_type.o -Wdeclaration-after-statement
gcc -pthread -Wno-unused-result -Wsign-compare -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DPSYCOPG_DEFAULT_PYDATETIME=1 -DPSYCOPG_VERSION="2.7.4 (dt dec pq3 ext)" -DPG_VERSION_NUM=90223 -I/usr/include/python3.5m -I. -I/usr/include -I/usr/include/pgsql/server -c psycopg/xid_type.c -o build/temp.linux-x86_64-3.5/psycopg/xid_type.o -Wdeclaration-after-statement
gcc -pthread -Wno-unused-result -Wsign-compare -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DPSYCOPG_DEFAULT_PYDATETIME=1 -DPSYCOPG_VERSION="2.7.4 (dt dec pq3 ext)" -DPG_VERSION_NUM=90223 -I/usr/include/python3.5m -I. -I/usr/include -I/usr/include/pgsql/server -c psycopg/adapter_asis.c -o build/temp.linux-x86_64-3.5/psycopg/adapter_asis.o -Wdeclaration-after-statement
gcc -pthread -Wno-unused-result -Wsign-compare -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DPSYCOPG_DEFAULT_PYDATETIME=1 -DPSYCOPG_VERSION="2.7.4 (dt dec pq3 ext)" -DPG_VERSION_NUM=90223 -I/usr/include/python3.5m -I. -I/usr/include -I/usr/include/pgsql/server -c psycopg/adapter_binary.c -o build/temp.linux-x86_64-3.5/psycopg/adapter_binary.o -Wdeclaration-after-statement
gcc -pthread -Wno-unused-result -Wsign-compare -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DPSYCOPG_DEFAULT_PYDATETIME=1 -DPSYCOPG_VERSION="2.7.4 (dt dec pq3 ext)" -DPG_VERSION_NUM=90223 -I/usr/include/python3.5m -I. -I/usr/include -I/usr/include/pgsql/server -c psycopg/adapter_datetime.c -o build/temp.linux-x86_64-3.5/psycopg/adapter_datetime.o -Wdeclaration-after-statement
gcc -pthread -Wno-unused-result -Wsign-compare -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DPSYCOPG_DEFAULT_PYDATETIME=1 -DPSYCOPG_VERSION="2.7.4 (dt dec pq3 ext)" -DPG_VERSION_NUM=90223 -I/usr/include/python3.5m -I. -I/usr/include -I/usr/include/pgsql/server -c psycopg/adapter_list.c -o build/temp.linux-x86_64-3.5/psycopg/adapter_list.o -Wdeclaration-after-statement
gcc -pthread -Wno-unused-result -Wsign-compare -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DPSYCOPG_DEFAULT_PYDATETIME=1 -DPSYCOPG_VERSION="2.7.4 (dt dec pq3 ext)" -DPG_VERSION_NUM=90223 -I/usr/include/python3.5m -I. -I/usr/include -I/usr/include/pgsql/server -c psycopg/adapter_pboolean.c -o build/temp.linux-x86_64-3.5/psycopg/adapter_pboolean.o -Wdeclaration-after-statement
gcc -pthread -Wno-unused-result -Wsign-compare -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DPSYCOPG_DEFAULT_PYDATETIME=1 -DPSYCOPG_VERSION="2.7.4 (dt dec pq3 ext)" -DPG_VERSION_NUM=90223 -I/usr/include/python3.5m -I. -I/usr/include -I/usr/include/pgsql/server -c psycopg/adapter_pdecimal.c -o build/temp.linux-x86_64-3.5/psycopg/adapter_pdecimal.o -Wdeclaration-after-statement
gcc -pthread -Wno-unused-result -Wsign-compare -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DPSYCOPG_DEFAULT_PYDATETIME=1 -DPSYCOPG_VERSION="2.7.4 (dt dec pq3 ext)" -DPG_VERSION_NUM=90223 -I/usr/include/python3.5m -I. -I/usr/include -I/usr/include/pgsql/server -c psycopg/adapter_pint.c -o build/temp.linux-x86_64-3.5/psycopg/adapter_pint.o -Wdeclaration-after-statement
gcc -pthread -Wno-unused-result -Wsign-compare -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DPSYCOPG_DEFAULT_PYDATETIME=1 -DPSYCOPG_VERSION="2.7.4 (dt dec pq3 ext)" -DPG_VERSION_NUM=90223 -I/usr/include/python3.5m -I. -I/usr/include -I/usr/include/pgsql/server -c psycopg/adapter_pfloat.c -o build/temp.linux-x86_64-3.5/psycopg/adapter_pfloat.o -Wdeclaration-after-statement
gcc -pthread -Wno-unused-result -Wsign-compare -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DPSYCOPG_DEFAULT_PYDATETIME=1 -DPSYCOPG_VERSION="2.7.4 (dt dec pq3 ext)" -DPG_VERSION_NUM=90223 -I/usr/include/python3.5m -I. -I/usr/include -I/usr/include/pgsql/server -c psycopg/adapter_qstring.c -o build/temp.linux-x86_64-3.5/psycopg/adapter_qstring.o -Wdeclaration-after-statement
gcc -pthread -Wno-unused-result -Wsign-compare -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DPSYCOPG_DEFAULT_PYDATETIME=1 -DPSYCOPG_VERSION="2.7.4 (dt dec pq3 ext)" -DPG_VERSION_NUM=90223 -I/usr/include/python3.5m -I. -I/usr/include -I/usr/include/pgsql/server -c psycopg/microprotocols.c -o build/temp.linux-x86_64-3.5/psycopg/microprotocols.o -Wdeclaration-after-statement
gcc -pthread -Wno-unused-result -Wsign-compare -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DPSYCOPG_DEFAULT_PYDATETIME=1 -DPSYCOPG_VERSION="2.7.4 (dt dec pq3 ext)" -DPG_VERSION_NUM=90223 -I/usr/include/python3.5m -I. -I/usr/include -I/usr/include/pgsql/server -c psycopg/microprotocols_proto.c -o build/temp.linux-x86_64-3.5/psycopg/microprotocols_proto.o -Wdeclaration-after-statement
gcc -pthread -Wno-unused-result -Wsign-compare -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -DPSYCOPG_DEFAULT_PYDATETIME=1 -DPSYCOPG_VERSION="2.7.4 (dt dec pq3 ext)" -DPG_VERSION_NUM=90223 -I/usr/include/python3.5m -I. -I/usr/include -I/usr/include/pgsql/server -c psycopg/typecast.c -o build/temp.linux-x86_64-3.5/psycopg/typecast.o -Wdeclaration-after-statement
gcc -pthread -shared -Wl,-z,relro build/temp.linux-x86_64-3.5/psycopg/psycopgmodule.o build/temp.linux-x86_64-3.5/psycopg/green.o build/temp.linux-x86_64-3.5/psycopg/pqpath.o build/temp.linux-x86_64-3.5/psycopg/utils.o build/temp.linux-x86_64-3.5/psycopg/bytes_format.o build/temp.linux-x86_64-3.5/psycopg/libpq_support.o build/temp.linux-x86_64-3.5/psycopg/win32_support.o build/temp.linux-x86_64-3.5/psycopg/solaris_support.o build/temp.linux-x86_64-3.5/psycopg/connection_int.o build/temp.linux-x86_64-3.5/psycopg/connection_type.o build/temp.linux-x86_64-3.5/psycopg/cursor_int.o build/temp.linux-x86_64-3.5/psycopg/cursor_type.o build/temp.linux-x86_64-3.5/psycopg/replication_connection_type.o build/temp.linux-x86_64-3.5/psycopg/replication_cursor_type.o build/temp.linux-x86_64-3.5/psycopg/replication_message_type.o build/temp.linux-x86_64-3.5/psycopg/diagnostics_type.o build/temp.linux-x86_64-3.5/psycopg/error_type.o build/temp.linux-x86_64-3.5/psycopg/lobject_int.o build/temp.linux-x86_64-3.5/psycopg/lobject_type.o build/temp.linux-x86_64-3.5/psycopg/notify_type.o build/temp.linux-x86_64-3.5/psycopg/xid_type.o build/temp.linux-x86_64-3.5/psycopg/adapter_asis.o build/temp.linux-x86_64-3.5/psycopg/adapter_binary.o build/temp.linux-x86_64-3.5/psycopg/adapter_datetime.o build/temp.linux-x86_64-3.5/psycopg/adapter_list.o build/temp.linux-x86_64-3.5/psycopg/adapter_pboolean.o build/temp.linux-x86_64-3.5/psycopg/adapter_pdecimal.o build/temp.linux-x86_64-3.5/psycopg/adapter_pint.o build/temp.linux-x86_64-3.5/psycopg/adapter_pfloat.o build/temp.linux-x86_64-3.5/psycopg/adapter_qstring.o build/temp.linux-x86_64-3.5/psycopg/microprotocols.o build/temp.linux-x86_64-3.5/psycopg/microprotocols_proto.o build/temp.linux-x86_64-3.5/psycopg/typecast.o -L/usr/lib64 -L/usr/lib64 -lpython3.5m -lpq -o build/lib.linux-x86_64-3.5/psycopg2/_psycopg.cpython-35m-x86_64-linux-gnu.so
installing to build/bdist.linux-x86_64/wheel
running install
running install_lib
creating build/bdist.linux-x86_64
creating build/bdist.linux-x86_64/wheel
creating build/bdist.linux-x86_64/wheel/psycopg2
copying build/lib.linux-x86_64-3.5/psycopg2/pool.py -> build/bdist.linux-x86_64/wheel/psycopg2
copying build/lib.linux-x86_64-3.5/psycopg2/errorcodes.py -> build/bdist.linux-x86_64/wheel/psycopg2
copying build/lib.linux-x86_64-3.5/psycopg2/sql.py -> build/bdist.linux-x86_64/wheel/psycopg2
copying build/lib.linux-x86_64-3.5/psycopg2/extras.py -> build/bdist.linux-x86_64/wheel/psycopg2
copying build/lib.linux-x86_64-3.5/psycopg2/_ipaddress.py -> build/bdist.linux-x86_64/wheel/psycopg2
copying build/lib.linux-x86_64-3.5/psycopg2/_range.py -> build/bdist.linux-x86_64/wheel/psycopg2
copying build/lib.linux-x86_64-3.5/psycopg2/__init__.py -> build/bdist.linux-x86_64/wheel/psycopg2
copying build/lib.linux-x86_64-3.5/psycopg2/extensions.py -> build/bdist.linux-x86_64/wheel/psycopg2
copying build/lib.linux-x86_64-3.5/psycopg2/psycopg1.py -> build/bdist.linux-x86_64/wheel/psycopg2
copying build/lib.linux-x86_64-3.5/psycopg2/tz.py -> build/bdist.linux-x86_64/wheel/psycopg2
copying build/lib.linux-x86_64-3.5/psycopg2/_json.py -> build/bdist.linux-x86_64/wheel/psycopg2
creating build/bdist.linux-x86_64/wheel/psycopg2/tests
copying build/lib.linux-x86_64-3.5/psycopg2/tests/test_async_keyword.py -> build/bdist.linux-x86_64/wheel/psycopg2/tests
copying build/lib.linux-x86_64-3.5/psycopg2/tests/test_quote.py -> build/bdist.linux-x86_64/wheel/psycopg2/tests
copying build/lib.linux-x86_64-3.5/psycopg2/tests/test_lobject.py -> build/bdist.linux-x86_64/wheel/psycopg2/tests
copying build/lib.linux-x86_64-3.5/psycopg2/tests/test_green.py -> build/bdist.linux-x86_64/wheel/psycopg2/tests
copying build/lib.linux-x86_64-3.5/psycopg2/tests/test_connection.py -> build/bdist.linux-x86_64/wheel/psycopg2/tests
copying build/lib.linux-x86_64-3.5/psycopg2/tests/test_sql.py -> build/bdist.linux-x86_64/wheel/psycopg2/tests
copying build/lib.linux-x86_64-3.5/psycopg2/tests/test_errcodes.py -> build/bdist.linux-x86_64/wheel/psycopg2/tests
copying build/lib.linux-x86_64-3.5/psycopg2/tests/test_bug_gc.py -> build/bdist.linux-x86_64/wheel/psycopg2/tests
copying build/lib.linux-x86_64-3.5/psycopg2/tests/test_cancel.py -> build/bdist.linux-x86_64/wheel/psycopg2/tests
copying build/lib.linux-x86_64-3.5/psycopg2/tests/dbapi20_tpc.py -> build/bdist.linux-x86_64/wheel/psycopg2/tests
copying build/lib.linux-x86_64-3.5/psycopg2/tests/test_fast_executemany.py -> build/bdist.linux-x86_64/wheel/psycopg2/tests
copying build/lib.linux-x86_64-3.5/psycopg2/tests/__init__.py -> build/bdist.linux-x86_64/wheel/psycopg2/tests
copying build/lib.linux-x86_64-3.5/psycopg2/tests/test_dates.py -> build/bdist.linux-x86_64/wheel/psycopg2/tests
copying build/lib.linux-x86_64-3.5/psycopg2/tests/test_bugX000.py -> build/bdist.linux-x86_64/wheel/psycopg2/tests
copying build/lib.linux-x86_64-3.5/psycopg2/tests/testconfig.py -> build/bdist.linux-x86_64/wheel/psycopg2/tests
copying build/lib.linux-x86_64-3.5/psycopg2/tests/test_async.py -> build/bdist.linux-x86_64/wheel/psycopg2/tests
copying build/lib.linux-x86_64-3.5/psycopg2/tests/test_copy.py -> build/bdist.linux-x86_64/wheel/psycopg2/tests
copying build/lib.linux-x86_64-3.5/psycopg2/tests/test_ipaddress.py -> build/bdist.linux-x86_64/wheel/psycopg2/tests
copying build/lib.linux-x86_64-3.5/psycopg2/tests/test_extras_dictcursor.py -> build/bdist.linux-x86_64/wheel/psycopg2/tests
copying build/lib.linux-x86_64-3.5/psycopg2/tests/test_psycopg2_dbapi20.py -> build/bdist.linux-x86_64/wheel/psycopg2/tests
copying build/lib.linux-x86_64-3.5/psycopg2/tests/test_types_basic.py -> build/bdist.linux-x86_64/wheel/psycopg2/tests
copying build/lib.linux-x86_64-3.5/psycopg2/tests/test_transaction.py -> build/bdist.linux-x86_64/wheel/psycopg2/tests
copying build/lib.linux-x86_64-3.5/psycopg2/tests/test_types_extras.py -> build/bdist.linux-x86_64/wheel/psycopg2/tests
copying build/lib.linux-x86_64-3.5/psycopg2/tests/test_replication.py -> build/bdist.linux-x86_64/wheel/psycopg2/tests
copying build/lib.linux-x86_64-3.5/psycopg2/tests/test_notify.py -> build/bdist.linux-x86_64/wheel/psycopg2/tests
copying build/lib.linux-x86_64-3.5/psycopg2/tests/test_module.py -> build/bdist.linux-x86_64/wheel/psycopg2/tests
copying build/lib.linux-x86_64-3.5/psycopg2/tests/test_cursor.py -> build/bdist.linux-x86_64/wheel/psycopg2/tests
copying build/lib.linux-x86_64-3.5/psycopg2/tests/testutils.py -> build/bdist.linux-x86_64/wheel/psycopg2/tests
copying build/lib.linux-x86_64-3.5/psycopg2/tests/test_with.py -> build/bdist.linux-x86_64/wheel/psycopg2/tests
copying build/lib.linux-x86_64-3.5/psycopg2/tests/dbapi20.py -> build/bdist.linux-x86_64/wheel/psycopg2/tests
copying build/lib.linux-x86_64-3.5/psycopg2/_psycopg.cpython-35m-x86_64-linux-gnu.so -> build/bdist.linux-x86_64/wheel/psycopg2
running install_egg_info
running egg_info
writing top-level names to psycopg2.egg-info/top_level.txt
writing psycopg2.egg-info/PKG-INFO
writing dependency_links to psycopg2.egg-info/dependency_links.txt
warning: manifest_maker: standard file '-c' not found
reading manifest file 'psycopg2.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
writing manifest file 'psycopg2.egg-info/SOURCES.txt'
Copying psycopg2.egg-info to build/bdist.linux-x86_64/wheel/psycopg2-2.7.4-py3.5.egg-info
running install_scripts
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "/tmp/pip-build-k2mu1059/psycopg2/setup.py", line 685, in <module>
ext_modules=ext)
File "/usr/lib64/python3.5/distutils/core.py", line 148, in setup
dist.run_commands()
File "/usr/lib64/python3.5/distutils/dist.py", line 955, in run_commands
self.run_command(cmd)
File "/usr/lib64/python3.5/distutils/dist.py", line 974, in run_command
cmd_obj.run()
File "/opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages/wheel/bdist_wheel.py", line 213, in run
archive_basename = self.get_archive_basename()
File "/opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages/wheel/bdist_wheel.py", line 161, in get_archive_basename
impl_tag, abi_tag, plat_tag = self.get_tag()
File "/opt/venvs/om-qa.vecnet.org/lib/python3.5/site-packages/wheel/bdist_wheel.py", line 155, in get_tag
assert tag == supported_tags[0]
AssertionError
----------------------------------------
Running setup.py bdist_wheel for django-auth-pubtkt
Stored in directory: /home/avyushko/.cache/pip/wheels/77/66/ed/da502985fc00d008607fb53af52bd9ae1d6ee0316d10776473
Running setup.py bdist_wheel for M2Crypto
Complete output from command /opt/venvs/om-qa.vecnet.org/bin/python3.5 -c "import setuptools;__file__='/tmp/pip-build-k2mu1059/M2Crypto/setup.py';exec(compile(open(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" bdist_wheel -d /tmp/tmp22lgq582pip-wheel-:
running bdist_wheel
running build
running build_py
copying M2Crypto/ASN1.py -> build/lib.linux-x86_64-3.5/M2Crypto
copying M2Crypto/AuthCookie.py -> build/lib.linux-x86_64-3.5/M2Crypto
copying M2Crypto/BIO.py -> build/lib.linux-x86_64-3.5/M2Crypto
copying M2Crypto/BN.py -> build/lib.linux-x86_64-3.5/M2Crypto
copying M2Crypto/DH.py -> build/lib.linux-x86_64-3.5/M2Crypto
copying M2Crypto/DSA.py -> build/lib.linux-x86_64-3.5/M2Crypto
copying M2Crypto/EC.py -> build/lib.linux-x86_64-3.5/M2Crypto
copying M2Crypto/EVP.py -> build/lib.linux-x86_64-3.5/M2Crypto
copying M2Crypto/Engine.py -> build/lib.linux-x86_64-3.5/M2Crypto
copying M2Crypto/Err.py -> build/lib.linux-x86_64-3.5/M2Crypto
copying M2Crypto/RC4.py -> build/lib.linux-x86_64-3.5/M2Crypto
copying M2Crypto/RSA.py -> build/lib.linux-x86_64-3.5/M2Crypto
copying M2Crypto/Rand.py -> build/lib.linux-x86_64-3.5/M2Crypto
copying M2Crypto/SMIME.py -> build/lib.linux-x86_64-3.5/M2Crypto
copying M2Crypto/X509.py -> build/lib.linux-x86_64-3.5/M2Crypto
copying M2Crypto/__init__.py -> build/lib.linux-x86_64-3.5/M2Crypto
copying M2Crypto/callback.py -> build/lib.linux-x86_64-3.5/M2Crypto
copying M2Crypto/ftpslib.py -> build/lib.linux-x86_64-3.5/M2Crypto
copying M2Crypto/httpslib.py -> build/lib.linux-x86_64-3.5/M2Crypto
copying M2Crypto/m2.py -> build/lib.linux-x86_64-3.5/M2Crypto
copying M2Crypto/m2crypto.py -> build/lib.linux-x86_64-3.5/M2Crypto
copying M2Crypto/m2urllib.py -> build/lib.linux-x86_64-3.5/M2Crypto
copying M2Crypto/m2urllib2.py -> build/lib.linux-x86_64-3.5/M2Crypto
copying M2Crypto/m2xmlrpclib.py -> build/lib.linux-x86_64-3.5/M2Crypto
copying M2Crypto/six.py -> build/lib.linux-x86_64-3.5/M2Crypto
copying M2Crypto/threading.py -> build/lib.linux-x86_64-3.5/M2Crypto
copying M2Crypto/util.py -> build/lib.linux-x86_64-3.5/M2Crypto
creating build/lib.linux-x86_64-3.5/M2Crypto/SSL
copying M2Crypto/SSL/Checker.py -> build/lib.linux-x86_64-3.5/M2Crypto/SSL
copying M2Crypto/SSL/Cipher.py -> build/lib.linux-x86_64-3.5/M2Crypto/SSL
copying M2Crypto/SSL/Connection.py -> build/lib.linux-x86_64-3.5/M2Crypto/SSL
copying M2Crypto/SSL/Context.py -> build/lib.linux-x86_64-3.5/M2Crypto/SSL
copying M2Crypto/SSL/SSLServer.py -> build/lib.linux-x86_64-3.5/M2Crypto/SSL
copying M2Crypto/SSL/Session.py -> build/lib.linux-x86_64-3.5/M2Crypto/SSL
copying M2Crypto/SSL/TwistedProtocolWrapper.py -> build/lib.linux-x86_64-3.5/M2Crypto/SSL
copying M2Crypto/SSL/__init__.py -> build/lib.linux-x86_64-3.5/M2Crypto/SSL
copying M2Crypto/SSL/cb.py -> build/lib.linux-x86_64-3.5/M2Crypto/SSL
copying M2Crypto/SSL/ssl_dispatcher.py -> build/lib.linux-x86_64-3.5/M2Crypto/SSL
copying M2Crypto/SSL/timeout.py -> build/lib.linux-x86_64-3.5/M2Crypto/SSL
running build_ext
building 'M2Crypto._m2crypto' extension
swigging SWIG/_m2crypto.i to SWIG/_m2crypto_wrap.c
swig -python -py3 -D__x86_64__ -I/usr/include/python3.5m -I/usr/include/openssl -I/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include -I/usr/local/include -I/usr/include -includeall -modern -builtin -outdir /tmp/pip-build-k2mu1059/M2Crypto/M2Crypto -o SWIG/_m2crypto_wrap.c SWIG/_m2crypto.i
creating build/temp.linux-x86_64-3.5
creating build/temp.linux-x86_64-3.5/SWIG
gcc -pthread -Wno-unused-result -Wsign-compare -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -D_GNU_SOURCE -fPIC -fwrapv -fPIC -I/usr/include/python3.5m -I/tmp/pip-build-k2mu1059/M2Crypto/SWIG -c SWIG/_m2crypto_wrap.c -o build/temp.linux-x86_64-3.5/SWIG/_m2crypto_wrap.o -Wno-deprecated-declarations -DTHREADING
SWIG/_m2crypto_wrap.c:30285:5: warning: initialization from incompatible pointer type [enabled by default]
(binaryfunc) 0, /* nb_add */
^
SWIG/_m2crypto_wrap.c:30285:5: warning: (near initialization for ‘SwigPyBuiltin__stack_st_type.as_async.am_await’) [enabled by default]
SWIG/_m2crypto_wrap.c:30286:5: warning: initialization from incompatible pointer type [enabled by default]
(binaryfunc) 0, /* nb_subtract */
^
SWIG/_m2crypto_wrap.c:30286:5: warning: (near initialization for ‘SwigPyBuiltin__stack_st_type.as_async.am_aiter’) [enabled by default]
SWIG/_m2crypto_wrap.c:30287:5: warning: initialization from incompatible pointer type [enabled by default]
(binaryfunc) 0, /* nb_multiply */
^
SWIG/_m2crypto_wrap.c:30287:5: warning: (near initialization for ‘SwigPyBuiltin__stack_st_type.as_async.am_anext’) [enabled by default]
SWIG/_m2crypto_wrap.c:30291:5: warning: excess elements in struct initializer [enabled by default]
(binaryfunc) 0, /* nb_remainder */
^
SWIG/_m2crypto_wrap.c:30291:5: warning: (near initialization for ‘SwigPyBuiltin__stack_st_type.as_async’) [enabled by default]
SWIG/_m2crypto_wrap.c:30292:5: warning: excess elements in struct initializer [enabled by default]
(binaryfunc) 0, /* nb_divmod */
^
SWIG/_m2crypto_wrap.c:30292:5: warning: (near initialization for ‘SwigPyBuiltin__stack_st_type.as_async’) [enabled by default]
SWIG/_m2crypto_wrap.c:30293:5: warning: excess elements in struct initializer [enabled by default]
(ternaryfunc) 0, /* nb_power */
^
SWIG/_m2crypto_wrap.c:30293:5: warning: (near initialization for ‘SwigPyBuiltin__stack_st_type.as_async’) [enabled by default]
SWIG/_m2crypto_wrap.c:30294:5: warning: excess elements in struct initializer [enabled by default]
(unaryfunc) 0, /* nb_negative */
^
SWIG/_m2crypto_wrap.c:30294:5: warning: (near initialization for ‘SwigPyBuiltin__stack_st_type.as_async’) [enabled by default]
SWIG/_m2crypto_wrap.c:30295:5: warning: excess elements in struct initializer [enabled by default]
(unaryfunc) 0, /* nb_positive */
^
SWIG/_m2crypto_wrap.c:30295:5: warning: (near initialization for ‘SwigPyBuiltin__stack_st_type.as_async’) [enabled by default]
SWIG/_m2crypto_wrap.c:30296:5: warning: excess elements in struct initializer [enabled by default]
(unaryfunc) 0, /* nb_absolute */
^
SWIG/_m2crypto_wrap.c:30296:5: warning: (near initialization for ‘SwigPyBuiltin__stack_st_type.as_async’) [enabled by default]
SWIG/_m2crypto_wrap.c:30297:5: warning: excess elements in struct initializer [enabled by default]
(inquiry) 0, /* nb_nonzero */
^
SWIG/_m2crypto_wrap.c:30297:5: warning: (near initialization for ‘SwigPyBuiltin__stack_st_type.as_async’) [enabled by default]
SWIG/_m2crypto_wrap.c:30298:5: warning: excess elements in struct initializer [enabled by default]
(unaryfunc) 0, /* nb_invert */
^
SWIG/_m2crypto_wrap.c:30298:5: warning: (near initialization for ‘SwigPyBuiltin__stack_st_type.as_async’) [enabled by default]
SWIG/_m2crypto_wrap.c:30299:5: warning: excess elements in struct initializer [enabled by default]
(binaryfunc) 0, /* nb_lshift */
^
SWIG/_m2crypto_wrap.c:30299:5: warning: (near initialization for ‘SwigPyBuiltin__stack_st_type.as_async’) [enabled by default]
SWIG/_m2crypto_wrap.c:30300:5: warning: excess elements in struct initializer [enabled by default]
(binaryfunc) 0, /* nb_rshift */
^
SWIG/_m2crypto_wrap.c:30300:5: warning: (near initialization for ‘SwigPyBuiltin__stack_st_type.as_async’) [enabled by default]
SWIG/_m2crypto_wrap.c:30301:5: warning: excess elements in struct initializer [enabled by default]
(binaryfunc) 0, /* nb_and */
^
SWIG/_m2crypto_wrap.c:30301:5: warning: (near initialization for ‘SwigPyBuiltin__stack_st_type.as_async’) [enabled by default]
SWIG/_m2crypto_wrap.c:30302:5: warning: excess elements in struct initializer [enabled by default]
(binaryfunc) 0, /* nb_xor */
^
SWIG/_m2crypto_wrap.c:30302:5: warning: (near initialization for ‘SwigPyBuiltin__stack_st_type.as_async’) [enabled by default]
SWIG/_m2crypto_wrap.c:30303:5: warning: excess elements in struct initializer [enabled by default]
(binaryfunc) 0, /* nb_or */
^
SWIG/_m2crypto_wrap.c:30303:5: warning: (near initialization for ‘SwigPyBuiltin__stack_st_type.as_async’) [enabled by default]
SWIG/_m2crypto_wrap.c:30307:5: warning: excess elements in struct initializer [enabled by default]
(unaryfunc) 0, /* nb_int */
^
SWIG/_m2crypto_wrap.c:30307:5: warning: (near initialization for ‘SwigPyBuiltin__stack_st_type.as_async’) [enabled by default]
SWIG/_m2crypto_wrap.c:30309:5: warning: excess elements in struct initializer [enabled by default]
(void*) 0, /* nb_reserved */
^
SWIG/_m2crypto_wrap.c:30309:5: warning: (near initialization for ‘SwigPyBuiltin__stack_st_type.as_async’) [enabled by default]
SWIG/_m2crypto_wrap.c:30313:5: warning: excess elements in struct initializer [enabled by default]
(unaryfunc) 0, /* nb_float */
^
SWIG/_m2crypto_wrap.c:30313:5: warning: (near initialization for ‘SwigPyBuiltin__stack_st_type.as_async’) [enabled by default]
SWIG/_m2crypto_wrap.c:30318:5: warning: excess elements in struct initializer [enabled by default]
(binaryfunc) 0, /* nb_inplace_add */
^
SWIG/_m2crypto_wrap.c:30318:5: warning: (near initialization for ‘SwigPyBuiltin__stack_st_type.as_async’) [enabled by default]
SWIG/_m2crypto_wrap.c:30319:5: warning: excess elements in struct initializer [enabled by default]
(binaryfunc) 0, /* nb_inplace_subtract */
^
SWIG/_m2crypto_wrap.c:30319:5: warning: (near initialization for ‘SwigPyBuiltin__stack_st_type.as_async’) [enabled by default]
SWIG/_m2crypto_wrap.c:30320:5: warning: excess elements in struct initializer [enabled by default]
(binaryfunc) 0, /* nb_inplace_multiply */
^
SWIG/_m2crypto_wrap.c:30320:5: warning: (near initialization for ‘SwigPyBuiltin__stack_st_type.as_async’) [enabled by default]
SWIG/_m2crypto_wrap.c:30324:5: warning: excess elements in struct initializer [enabled by default]
(binaryfunc) 0, /* nb_inplace_remainder */
^
SWIG/_m2crypto_wrap.c:30324:5: warning: (near initialization for ‘SwigPyBuiltin__stack_st_type.as_async’) [enabled by default]
SWIG/_m2crypto_wrap.c:30325:5: warning: excess elements in struct initializer [enabled by default]
(ternaryfunc) 0, /* nb_inplace_power */
^
SWIG/_m2crypto_wrap.c:30325:5: warning: (near initialization for ‘SwigPyBuiltin__stack_st_type.as_async’) [enabled by default]
SWIG/_m2crypto_wrap.c:30326:5: warning: excess elements in struct initializer [enabled by default]
(binaryfunc) 0, /* nb_inplace_lshift */
^
SWIG/_m2crypto_wrap.c:30326:5: warning: (near initialization for ‘SwigPyBuiltin__stack_st_type.as_async’) [enabled by default]
SWIG/_m2crypto_wrap.c:30327:5: warning: excess elements in struct initializer [enabled by default]
(binaryfunc) 0, /* nb_inplace_rshift */
^
SWIG/_m2crypto_wrap.c:30327:5: warning: (near initialization for ‘SwigPyBuiltin__stack_st_type.as_async’) [enabled by default]
SWIG/_m2crypto_wrap.c:30328:5: warning: excess elements in struct initializer [enabled by default]
(binaryfunc) 0, /* nb_inplace_and */
^
SWIG/_m2crypto_wrap.c:30328:5: warning: (near initialization for ‘SwigPyBuiltin__stack_st_type.as_async’) [enabled by default]
SWIG/_m2crypto_wrap.c:30329:5: warning: excess elements in struct initializer [enabled by default]
(binaryfunc) 0, /* nb_inplace_xor */
^
SWIG/_m2crypto_wrap.c:30329:5: warning: (near initialization for ‘SwigPyBuiltin__stack_st_type.as_async’) [enabled by default]
SWIG/_m2crypto_wrap.c:30330:5: warning: excess elements in struct initializer [enabled by default]
(binaryfunc) 0, /* nb_inplace_or */
^
SWIG/_m2crypto_wrap.c:30330:5: warning: (near initialization for ‘SwigPyBuiltin__stack_st_type.as_async’) [enabled by default]
SWIG/_m2crypto_wrap.c:30331:5: warning: excess elements in struct initializer [enabled by default]
(binaryfunc) 0, /* nb_floor_divide */
^
SWIG/_m2crypto_wrap.c:30331:5: warning: (near initialization for ‘SwigPyBuiltin__stack_st_type.as_async’) [enabled by default]
SWIG/_m2crypto_wrap.c:30332:5: warning: excess elements in struct initializer [enabled by default]
(binaryfunc) 0, /* nb_true_divide */
^
SWIG/_m2crypto_wrap.c:30332:5: warning: (near initialization for ‘SwigPyBuiltin__stack_st_type.as_async’) [enabled by default]
SWIG/_m2crypto_wrap.c:30333:5: warning: excess elements in struct initializer [enabled by default]
(binaryfunc) 0, /* nb_inplace_floor_divide */
^
SWIG/_m2crypto_wrap.c:30333:5: warning: (near initialization for ‘SwigPyBuiltin__stack_st_type.as_async’) [enabled by default]
SWIG/_m2crypto_wrap.c:30334:5: warning: excess elements in struct initializer [enabled by default]
(binaryfunc) 0, /* nb_inplace_true_divide */
^
SWIG/_m2crypto_wrap.c:30334:5: warning: (near initialization for ‘SwigPyBuiltin__stack_st_type.as_async’) [enabled by default]
SWIG/_m2crypto_wrap.c:30336:5: warning: excess elements in struct initializer [enabled by default]
(unaryfunc) 0, /* nb_index */
^
SWIG/_m2crypto_wrap.c:30336:5: warning: (near initialization for ‘SwigPyBuiltin__stack_st_type.as_async’) [enabled by default]
SWIG/_m2crypto_wrap.c:30340:5: warning: initialization from incompatible pointer type [enabled by default]
(lenfunc) 0, /* mp_length */
^
SWIG/_m2crypto_wrap.c:30340:5: warning: (near initialization for ‘SwigPyBuiltin__stack_st_type.as_number.nb_add’) [enabled by default]
SWIG/_m2crypto_wrap.c:30342:5: warning: initialization from incompatible pointer type [enabled by default]
(objobjargproc) 0, /* mp_ass_subscript */
^
SWIG/_m2crypto_wrap.c:30342:5: warning: (near initialization for ‘SwigPyBuiltin__stack_st_type.as_number.nb_multiply’) [enabled by default]
SWIG/_m2crypto_wrap.c:30347:5: warning: initialization from incompatible pointer type [enabled by default]
(ssizeargfunc) 0, /* sq_repeat */
^
SWIG/_m2crypto_wrap.c:30347:5: warning: (near initialization for ‘SwigPyBuiltin__stack_st_type.as_mapping.mp_ass_subscript’) [enabled by default]
SWIG/_m2crypto_wrap.c:30348:5: warning: excess elements in struct initializer [enabled by default]
(ssizeargfunc) 0, /* sq_item */
^