Snippets
Created by
Rie Akane
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 | Collecting Django==2.2.3 Using cached Django-2.2.3-py3-none-any.whl (7.5 MB) Collecting django-bootstrap-breadcrumbs==0.9.1 Using cached django_bootstrap_breadcrumbs-0.9.1-py3-none-any.whl (6.9 kB) Collecting django-ckeditor==5.7.1 Using cached django_ckeditor-5.7.1-py2.py3-none-any.whl (2.4 MB) Collecting django-cors-headers==3.0.2 Using cached django_cors_headers-3.0.2-py2.py3-none-any.whl (13 kB) Collecting django-cors-middleware==1.3.1 Using cached django-cors-middleware-1.3.1.tar.gz (9.0 kB) Preparing metadata (setup.py) ... done Collecting django-filter==2.1.0 Using cached django_filter-2.1.0-py3-none-any.whl (69 kB) Collecting django-import-export==1.2.0 Using cached django_import_export-1.2.0-py2.py3-none-any.whl (75 kB) Collecting django-js-asset==1.2.2 Using cached django_js_asset-1.2.2-py2.py3-none-any.whl (5.8 kB) Collecting django-mathfilters==0.4.0 Using cached django_mathfilters-0.4.0-py2.py3-none-any.whl (7.6 kB) Collecting django-model-utils==4.0.0 Using cached django_model_utils-4.0.0-py2.py3-none-any.whl (29 kB) Collecting django-oauth-toolkit==1.2.0 Using cached django_oauth_toolkit-1.2.0-py2.py3-none-any.whl (46 kB) Collecting django-pdfkit==0.3.1 Using cached django_pdfkit-0.3.1-py2.py3-none-any.whl (8.8 kB) Collecting django-rest-swagger==2.2.0 Using cached django_rest_swagger-2.2.0-py2.py3-none-any.whl (495 kB) Collecting django-settings-export==1.2.1 Using cached django-settings-export-1.2.1.tar.gz (5.0 kB) Preparing metadata (setup.py) ... done Collecting django-suit==0.2.28 Using cached django_suit-0.2.28-py2.py3-none-any.whl (402 kB) Collecting djangorestframework==3.9.4 Using cached djangorestframework-3.9.4-py2.py3-none-any.whl (911 kB) Collecting djangorestframework-simplejwt==4.3.0 Using cached djangorestframework_simplejwt-4.3.0-py3-none-any.whl (29 kB) Collecting entrypoints==0.3 Using cached entrypoints-0.3-py2.py3-none-any.whl (11 kB) Collecting et-xmlfile==1.0.1 Using cached et_xmlfile-1.0.1.tar.gz (8.4 kB) Preparing metadata (setup.py) ... done Collecting flake8==3.7.8 Using cached flake8-3.7.8-py2.py3-none-any.whl (70 kB) Collecting XlsxWriter==1.3.7 Using cached XlsxWriter-1.3.7-py2.py3-none-any.whl (144 kB) Collecting itypes==1.1.0 Using cached itypes-1.1.0.tar.gz (2.2 kB) Preparing metadata (setup.py) ... done Collecting jdcal==1.4.1 Using cached jdcal-1.4.1-py2.py3-none-any.whl (9.5 kB) Collecting Jinja2==2.11.1 Using cached Jinja2-2.11.1-py2.py3-none-any.whl (126 kB) Collecting Markdown==3.1.1 Using cached Markdown-3.1.1-py2.py3-none-any.whl (87 kB) Collecting MarkupPy==1.14 Using cached MarkupPy-1.14.tar.gz (6.8 kB) Preparing metadata (setup.py) ... done Collecting MarkupSafe==1.1.1 Using cached MarkupSafe-1.1.1.tar.gz (19 kB) Preparing metadata (setup.py) ... done Collecting mccabe==0.6.1 Using cached mccabe-0.6.1-py2.py3-none-any.whl (8.6 kB) Collecting oauthlib==3.0.1 Using cached oauthlib-3.0.1-py2.py3-none-any.whl (142 kB) Collecting odfpy==1.4.0 Using cached odfpy-1.4.0.tar.gz (715 kB) Preparing metadata (setup.py) ... done Collecting openapi-codec==1.3.2 Using cached openapi-codec-1.3.2.tar.gz (6.3 kB) Preparing metadata (setup.py) ... done Collecting openpyxl==2.6.4 Using cached openpyxl-2.6.4.tar.gz (173 kB) Preparing metadata (setup.py) ... done Collecting pdfkit==0.6.0 Using cached pdfkit-0.6.0.tar.gz (9.4 kB) Preparing metadata (setup.py) ... done Collecting Pillow==6.0.0 Using cached Pillow-6.0.0.tar.gz (29.5 MB) Preparing metadata (setup.py) ... done Collecting postmarker==0.18.2 Using cached postmarker-0.18.2-py3-none-any.whl (24 kB) Collecting psycopg2-binary==2.8.2 Using cached psycopg2-binary-2.8.2.tar.gz (369 kB) Preparing metadata (setup.py) ... done Collecting public==2019.4.13 Downloading public-2019.4.13.tar.gz (2.3 kB) Preparing metadata (setup.py) ... done Collecting pycodestyle==2.5.0 Downloading pycodestyle-2.5.0-py2.py3-none-any.whl (51 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 51.2/51.2 kB 154.1 kB/s eta 0:00:00 Collecting pycparser==2.19 Downloading pycparser-2.19.tar.gz (158 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 158.3/158.3 kB 474.4 kB/s eta 0:00:00 Preparing metadata (setup.py) ... done Collecting pyflakes==2.1.1 Downloading pyflakes-2.1.1-py2.py3-none-any.whl (59 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 60.0/60.0 kB 872.6 kB/s eta 0:00:00 Collecting PyJWT==1.7.1 Using cached PyJWT-1.7.1-py2.py3-none-any.whl (18 kB) Collecting pystmark==0.4.6 Using cached pystmark-0.4.6.tar.gz (21 kB) Preparing metadata (setup.py) ... done Collecting PyYAML==5.1.2 Downloading PyYAML-5.1.2.tar.gz (265 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 265.0/265.0 kB 1.3 MB/s eta 0:00:00 Preparing metadata (setup.py) ... done Collecting query-string==2019.4.13 Downloading query-string-2019.4.13.tar.gz (1.6 kB) Preparing metadata (setup.py) ... done Collecting requests Downloading requests-2.28.2-py3-none-any.whl (62 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 62.8/62.8 kB 1.8 MB/s eta 0:00:00 Collecting shell==1.0.1 Downloading shell-1.0.1-py2.py3-none-any.whl (5.4 kB) Collecting simplejson==3.17.0 Downloading simplejson-3.17.0.tar.gz (83 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 83.1/83.1 kB 2.1 MB/s eta 0:00:00 Preparing metadata (setup.py) ... done Collecting six==1.12.0 Downloading six-1.12.0-py2.py3-none-any.whl (10 kB) Collecting sqlparse==0.3.0 Downloading sqlparse-0.3.0-py2.py3-none-any.whl (39 kB) Collecting tablib==0.14.0 Downloading tablib-0.14.0-py3-none-any.whl (65 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 65.2/65.2 kB 2.2 MB/s eta 0:00:00 Collecting ua-parser==0.10.0 Downloading ua_parser-0.10.0-py2.py3-none-any.whl (35 kB) Collecting uritemplate==3.0.1 Using cached uritemplate-3.0.1-py2.py3-none-any.whl (15 kB) Collecting user-agents==2.1 Downloading user_agents-2.1-py3-none-any.whl (9.6 kB) Collecting webencodings==0.5.1 Downloading webencodings-0.5.1-py2.py3-none-any.whl (11 kB) Collecting xlrd==1.2.0 Downloading xlrd-1.2.0-py2.py3-none-any.whl (103 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 103.3/103.3 kB 2.5 MB/s eta 0:00:00 Collecting xlwt==1.3.0 Downloading xlwt-1.3.0-py2.py3-none-any.whl (99 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 100.0/100.0 kB 463.1 kB/s eta 0:00:00 Collecting python-dotenv==0.20.0 Using cached python_dotenv-0.20.0-py3-none-any.whl (17 kB) Collecting celery==5.2.6 Downloading celery-5.2.6-py3-none-any.whl (405 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 405.6/405.6 kB 8.2 MB/s eta 0:00:00 Collecting redis==4.2.2 Downloading redis-4.2.2-py3-none-any.whl (226 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 226.4/226.4 kB 3.5 MB/s eta 0:00:00 Collecting django-celery-results==2.3.1 Downloading django_celery_results-2.3.1-py3-none-any.whl (35 kB) Collecting gunicorn Downloading gunicorn-20.1.0-py3-none-any.whl (79 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 79.5/79.5 kB 2.9 MB/s eta 0:00:00 Collecting django-extensions Downloading django_extensions-3.2.1-py3-none-any.whl (229 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 229.4/229.4 kB 3.8 MB/s eta 0:00:00 Collecting pytest==7.2.1 Downloading pytest-7.2.1-py3-none-any.whl (317 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 317.1/317.1 kB 1.3 MB/s eta 0:00:00 Collecting coverage==7.0.5 Downloading coverage-7.0.5-cp38-cp38-macosx_11_0_arm64.whl (198 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 198.2/198.2 kB 3.6 MB/s eta 0:00:00 Collecting pytest-django==4.5.2 Downloading pytest_django-4.5.2-py3-none-any.whl (20 kB) Collecting pre-commit==3.0.1 Downloading pre_commit-3.0.1-py2.py3-none-any.whl (202 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 202.1/202.1 kB 3.6 MB/s eta 0:00:00 Collecting factory-boy==3.2.1 Using cached factory_boy-3.2.1-py2.py3-none-any.whl (35 kB) Collecting pytest-mock==3.10.0 Downloading pytest_mock-3.10.0-py3-none-any.whl (9.3 kB) Collecting sentry-sdk==1.14.0 Downloading sentry_sdk-1.14.0-py2.py3-none-any.whl (178 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 178.9/178.9 kB 3.1 MB/s eta 0:00:00 Collecting django-health-check==3.17.0 Downloading django_health_check-3.17.0-py2.py3-none-any.whl (29 kB) Collecting django-silk Downloading django_silk-5.0.3-py3-none-any.whl (1.8 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/1.8 MB 4.5 MB/s eta 0:00:00 Collecting cffi>=1.1.0 Using cached cffi-1.15.1-cp38-cp38-macosx_12_0_arm64.whl Requirement already satisfied: setuptools>=39.2.0 in /Users/rie/.pyenv/versions/3.8.10/lib/python3.8/site-packages (from cairocffi==1.1.0->-r requirements.txt (line 2)) (56.0.0) Collecting cssselect2 Downloading cssselect2-0.7.0-py3-none-any.whl (15 kB) Collecting tinycss2 Downloading tinycss2-1.2.1-py3-none-any.whl (21 kB) Collecting pytz Downloading pytz-2022.7.1-py2.py3-none-any.whl (499 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 499.4/499.4 kB 2.2 MB/s eta 0:00:00 Collecting click-repl>=0.2.0 Downloading click_repl-0.2.0-py3-none-any.whl (5.2 kB) Collecting click-plugins>=1.1.1 Downloading click_plugins-1.1.1-py2.py3-none-any.whl (7.5 kB) Collecting click<9.0,>=8.0.3 Using cached click-8.1.3-py3-none-any.whl (96 kB) Collecting click-didyoumean>=0.0.3 Downloading click_didyoumean-0.3.0-py3-none-any.whl (2.7 kB) Collecting kombu<6.0,>=5.2.3 Downloading kombu-5.2.4-py3-none-any.whl (189 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 189.2/189.2 kB 854.3 kB/s eta 0:00:00 Collecting billiard<4.0,>=3.6.4.0 Downloading billiard-3.6.4.0-py3-none-any.whl (89 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 89.5/89.5 kB 1.4 MB/s eta 0:00:00 Collecting vine<6.0,>=5.0.0 Downloading vine-5.0.0-py2.py3-none-any.whl (9.4 kB) Collecting packaging>=20.4 Downloading packaging-23.0-py3-none-any.whl (42 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 42.7/42.7 kB 1.0 MB/s eta 0:00:00 Collecting deprecated>=1.2.3 Downloading Deprecated-1.2.13-py2.py3-none-any.whl (9.6 kB) Collecting async-timeout>=4.0.2 Downloading async_timeout-4.0.2-py3-none-any.whl (5.8 kB) Collecting tomli>=1.0.0 Using cached tomli-2.0.1-py3-none-any.whl (12 kB) Collecting attrs>=19.2.0 Downloading attrs-22.2.0-py3-none-any.whl (60 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 60.0/60.0 kB 1.2 MB/s eta 0:00:00 Collecting iniconfig Downloading iniconfig-2.0.0-py3-none-any.whl (5.9 kB) Collecting pluggy<2.0,>=0.12 Downloading pluggy-1.0.0-py2.py3-none-any.whl (13 kB) Collecting exceptiongroup>=1.0.0rc8 Downloading exceptiongroup-1.1.0-py3-none-any.whl (14 kB) Collecting nodeenv>=0.11.1 Downloading nodeenv-1.7.0-py2.py3-none-any.whl (21 kB) Collecting cfgv>=2.0.0 Using cached cfgv-3.3.1-py2.py3-none-any.whl (7.3 kB) Collecting virtualenv>=20.10.0 Downloading virtualenv-20.19.0-py3-none-any.whl (8.7 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 8.7/8.7 MB 659.8 kB/s eta 0:00:00 Collecting identify>=1.0.0 Downloading identify-2.5.18-py2.py3-none-any.whl (98 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 98.8/98.8 kB 1.2 MB/s eta 0:00:00 Collecting Faker>=0.7.0 Downloading Faker-17.0.0-py3-none-any.whl (1.7 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.7/1.7 MB 1.8 MB/s eta 0:00:00 Collecting urllib3>=1.26.11 Downloading urllib3-1.26.14-py2.py3-none-any.whl (140 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 140.6/140.6 kB 1.5 MB/s eta 0:00:00 Collecting charset-normalizer<4,>=2 Downloading charset_normalizer-3.0.1-cp38-cp38-macosx_11_0_arm64.whl (121 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 121.3/121.3 kB 1.4 MB/s eta 0:00:00 Collecting idna<4,>=2.5 Downloading idna-3.4-py3-none-any.whl (61 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 61.5/61.5 kB 1.1 MB/s eta 0:00:00 Collecting django-extensions Downloading django_extensions-3.2.0-py3-none-any.whl (229 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 229.1/229.1 kB 1.6 MB/s eta 0:00:00 Using cached django_extensions-3.1.5-py3-none-any.whl (224 kB) Collecting autopep8 Downloading autopep8-2.0.1-py2.py3-none-any.whl (45 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 45.0/45.0 kB 873.7 kB/s eta 0:00:00 Collecting gprof2dot>=2017.09.19 Downloading gprof2dot-2022.7.29-py2.py3-none-any.whl (34 kB) Collecting django-silk Downloading django_silk-5.0.2-py3-none-any.whl (1.8 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/1.8 MB 1.9 MB/s eta 0:00:00 Collecting python-dateutil Using cached python_dateutil-2.8.2-py2.py3-none-any.whl (247 kB) Collecting django-silk Downloading django_silk-5.0.1-py3-none-any.whl (1.8 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/1.8 MB 1.8 MB/s eta 0:00:00 Downloading django_silk-5.0.0-py3-none-any.whl (1.8 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/1.8 MB 2.0 MB/s eta 0:00:00 Downloading django_silk-4.4.1-py3-none-any.whl (1.8 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.8/1.8 MB 2.0 MB/s eta 0:00:00 Collecting prompt-toolkit Downloading prompt_toolkit-3.0.36-py3-none-any.whl (386 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 386.4/386.4 kB 997.3 kB/s eta 0:00:00 Collecting wrapt<2,>=1.10 Downloading wrapt-1.14.1-cp38-cp38-macosx_11_0_arm64.whl (35 kB) Collecting amqp<6.0.0,>=5.0.9 Downloading amqp-5.1.1-py3-none-any.whl (50 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 50.8/50.8 kB 1.3 MB/s eta 0:00:00 Collecting filelock<4,>=3.4.1 Downloading filelock-3.9.0-py3-none-any.whl (9.7 kB) Collecting distlib<1,>=0.3.6 Downloading distlib-0.3.6-py2.py3-none-any.whl (468 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 468.5/468.5 kB 1.3 MB/s eta 0:00:00 Collecting platformdirs<4,>=2.4 Downloading platformdirs-3.0.0-py3-none-any.whl (14 kB) Collecting autopep8 Downloading autopep8-2.0.0-py2.py3-none-any.whl (45 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 45.4/45.4 kB 1.5 MB/s eta 0:00:00 Downloading autopep8-1.7.0-py2.py3-none-any.whl (45 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 45.6/45.6 kB 1.0 MB/s eta 0:00:00 Collecting toml Using cached toml-0.10.2-py2.py3-none-any.whl (16 kB) Collecting autopep8 Downloading autopep8-1.6.0-py2.py3-none-any.whl (45 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 45.3/45.3 kB 1.1 MB/s eta 0:00:00 Downloading autopep8-1.5.7-py2.py3-none-any.whl (45 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 45.0/45.0 kB 1.1 MB/s eta 0:00:00 Downloading autopep8-1.5.6-py2.py3-none-any.whl (44 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 44.9/44.9 kB 1.2 MB/s eta 0:00:00 Downloading autopep8-1.5.5-py2.py3-none-any.whl (44 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 44.8/44.8 kB 978.9 kB/s eta 0:00:00 Downloading autopep8-1.5.4.tar.gz (121 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 121.5/121.5 kB 1.8 MB/s eta 0:00:00 Preparing metadata (setup.py) ... done Downloading autopep8-1.5.3.tar.gz (116 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 116.3/116.3 kB 1.6 MB/s eta 0:00:00 Preparing metadata (setup.py) ... done Downloading autopep8-1.5.2.tar.gz (117 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 117.9/117.9 kB 1.7 MB/s eta 0:00:00 Preparing metadata (setup.py) ... done Collecting wcwidth Downloading wcwidth-0.2.6-py2.py3-none-any.whl (29 kB) Building wheels for collected packages: cairocffi, coreschema, cryptography, diff-match-patch, django-cors-middleware, django-settings-export, et-xmlfile, itypes, MarkupPy, MarkupSafe, odfpy, openapi-codec, openpyxl, pdfkit, Pillow, psycopg2-binary, public, pycparser, pystmark, PyYAML, query-string, simplejson, autopep8 Building wheel for cairocffi (setup.py) ... done Created wheel for cairocffi: filename=cairocffi-1.1.0-py3-none-any.whl size=88588 sha256=5a3e5475d89696addf6d7168d16bf4546f78e21f3a67d91cf60cd58fc1aaa511 Stored in directory: /Users/rie/Library/Caches/pip/wheels/71/c7/16/0cd3bf6e08dae3bd2edeb3e731447c4864559f55bc1a15f7e1 Building wheel for coreschema (setup.py) ... done Created wheel for coreschema: filename=coreschema-0.0.4-py3-none-any.whl size=15032 sha256=23c82a3c60508d762ed18693518648968a5e34f03283bc455ce8ec943a793c95 Stored in directory: /Users/rie/Library/Caches/pip/wheels/37/21/45/2ce3dd0189e3d2fb7a325b9d3e6491acb7882c8275466d5401 Building wheel for cryptography (pyproject.toml) ... error error: subprocess-exited-with-error × Building wheel for cryptography (pyproject.toml) did not run successfully. │ exit code: 1 ╰─> [141 lines of output] running bdist_wheel running build running build_py creating build creating build/lib.macosx-12.0-arm64-cpython-38 creating build/lib.macosx-12.0-arm64-cpython-38/cryptography copying src/cryptography/__init__.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography copying src/cryptography/utils.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography copying src/cryptography/__about__.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography copying src/cryptography/exceptions.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography copying src/cryptography/fernet.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography creating build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat copying src/cryptography/hazmat/__init__.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat copying src/cryptography/hazmat/_oid.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat creating build/lib.macosx-12.0-arm64-cpython-38/cryptography/x509 copying src/cryptography/x509/oid.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/x509 copying src/cryptography/x509/ocsp.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/x509 copying src/cryptography/x509/general_name.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/x509 copying src/cryptography/x509/__init__.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/x509 copying src/cryptography/x509/extensions.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/x509 copying src/cryptography/x509/name.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/x509 copying src/cryptography/x509/base.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/x509 copying src/cryptography/x509/certificate_transparency.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/x509 creating build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/backends copying src/cryptography/hazmat/backends/interfaces.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/backends copying src/cryptography/hazmat/backends/__init__.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/backends creating build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/primitives copying src/cryptography/hazmat/primitives/cmac.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/primitives copying src/cryptography/hazmat/primitives/__init__.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/primitives copying src/cryptography/hazmat/primitives/poly1305.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/primitives copying src/cryptography/hazmat/primitives/constant_time.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/primitives copying src/cryptography/hazmat/primitives/keywrap.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/primitives copying src/cryptography/hazmat/primitives/hmac.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/primitives copying src/cryptography/hazmat/primitives/hashes.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/primitives copying src/cryptography/hazmat/primitives/padding.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/primitives creating build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/bindings copying src/cryptography/hazmat/bindings/__init__.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/bindings creating build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/backends/openssl copying src/cryptography/hazmat/backends/openssl/x448.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/backends/openssl copying src/cryptography/hazmat/backends/openssl/backend.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/backends/openssl copying src/cryptography/hazmat/backends/openssl/ec.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/backends/openssl copying src/cryptography/hazmat/backends/openssl/ciphers.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/backends/openssl copying src/cryptography/hazmat/backends/openssl/ocsp.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/backends/openssl copying src/cryptography/hazmat/backends/openssl/x509.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/backends/openssl copying src/cryptography/hazmat/backends/openssl/aead.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/backends/openssl copying src/cryptography/hazmat/backends/openssl/encode_asn1.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/backends/openssl copying src/cryptography/hazmat/backends/openssl/rsa.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/backends/openssl copying src/cryptography/hazmat/backends/openssl/dh.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/backends/openssl copying src/cryptography/hazmat/backends/openssl/cmac.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/backends/openssl copying src/cryptography/hazmat/backends/openssl/__init__.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/backends/openssl copying src/cryptography/hazmat/backends/openssl/utils.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/backends/openssl copying src/cryptography/hazmat/backends/openssl/poly1305.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/backends/openssl copying src/cryptography/hazmat/backends/openssl/ed25519.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/backends/openssl copying src/cryptography/hazmat/backends/openssl/dsa.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/backends/openssl copying src/cryptography/hazmat/backends/openssl/decode_asn1.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/backends/openssl copying src/cryptography/hazmat/backends/openssl/hmac.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/backends/openssl copying src/cryptography/hazmat/backends/openssl/ed448.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/backends/openssl copying src/cryptography/hazmat/backends/openssl/x25519.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/backends/openssl copying src/cryptography/hazmat/backends/openssl/hashes.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/backends/openssl creating build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/primitives/kdf copying src/cryptography/hazmat/primitives/kdf/__init__.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/primitives/kdf copying src/cryptography/hazmat/primitives/kdf/scrypt.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/primitives/kdf copying src/cryptography/hazmat/primitives/kdf/pbkdf2.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/primitives/kdf copying src/cryptography/hazmat/primitives/kdf/hkdf.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/primitives/kdf copying src/cryptography/hazmat/primitives/kdf/x963kdf.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/primitives/kdf copying src/cryptography/hazmat/primitives/kdf/kbkdf.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/primitives/kdf copying src/cryptography/hazmat/primitives/kdf/concatkdf.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/primitives/kdf creating build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/primitives/twofactor copying src/cryptography/hazmat/primitives/twofactor/totp.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/primitives/twofactor copying src/cryptography/hazmat/primitives/twofactor/__init__.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/primitives/twofactor copying src/cryptography/hazmat/primitives/twofactor/hotp.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/primitives/twofactor copying src/cryptography/hazmat/primitives/twofactor/utils.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/primitives/twofactor creating build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/primitives/serialization copying src/cryptography/hazmat/primitives/serialization/__init__.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/primitives/serialization copying src/cryptography/hazmat/primitives/serialization/pkcs12.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/primitives/serialization copying src/cryptography/hazmat/primitives/serialization/ssh.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/primitives/serialization copying src/cryptography/hazmat/primitives/serialization/base.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/primitives/serialization creating build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/primitives/ciphers copying src/cryptography/hazmat/primitives/ciphers/algorithms.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/primitives/ciphers copying src/cryptography/hazmat/primitives/ciphers/aead.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/primitives/ciphers copying src/cryptography/hazmat/primitives/ciphers/__init__.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/primitives/ciphers copying src/cryptography/hazmat/primitives/ciphers/modes.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/primitives/ciphers copying src/cryptography/hazmat/primitives/ciphers/base.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/primitives/ciphers creating build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/primitives/asymmetric copying src/cryptography/hazmat/primitives/asymmetric/x448.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/primitives/asymmetric copying src/cryptography/hazmat/primitives/asymmetric/ec.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/primitives/asymmetric copying src/cryptography/hazmat/primitives/asymmetric/rsa.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/primitives/asymmetric copying src/cryptography/hazmat/primitives/asymmetric/dh.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/primitives/asymmetric copying src/cryptography/hazmat/primitives/asymmetric/__init__.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/primitives/asymmetric copying src/cryptography/hazmat/primitives/asymmetric/utils.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/primitives/asymmetric copying src/cryptography/hazmat/primitives/asymmetric/ed25519.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/primitives/asymmetric copying src/cryptography/hazmat/primitives/asymmetric/dsa.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/primitives/asymmetric copying src/cryptography/hazmat/primitives/asymmetric/ed448.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/primitives/asymmetric copying src/cryptography/hazmat/primitives/asymmetric/x25519.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/primitives/asymmetric copying src/cryptography/hazmat/primitives/asymmetric/padding.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/primitives/asymmetric creating build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/bindings/openssl copying src/cryptography/hazmat/bindings/openssl/__init__.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/bindings/openssl copying src/cryptography/hazmat/bindings/openssl/_conditional.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/bindings/openssl copying src/cryptography/hazmat/bindings/openssl/binding.py -> build/lib.macosx-12.0-arm64-cpython-38/cryptography/hazmat/bindings/openssl running egg_info writing src/cryptography.egg-info/PKG-INFO writing dependency_links to src/cryptography.egg-info/dependency_links.txt writing requirements to src/cryptography.egg-info/requires.txt writing top-level names to src/cryptography.egg-info/top_level.txt reading manifest file 'src/cryptography.egg-info/SOURCES.txt' reading manifest template 'MANIFEST.in' no previously-included directories found matching 'docs/_build' warning: no previously-included files found matching 'vectors' warning: no previously-included files matching '*' found under directory 'vectors' warning: no previously-included files found matching 'azure-pipelines.yml' warning: no previously-included files found matching '.azure-pipelines' warning: no previously-included files found matching '.travis.yml' warning: no previously-included files found matching '.travis' warning: no previously-included files matching '*' found under directory '.azure-pipelines' warning: no previously-included files matching '*' found under directory '.travis' warning: no previously-included files found matching 'release.py' warning: no previously-included files found matching '.coveragerc' warning: no previously-included files found matching 'codecov.yml' warning: no previously-included files found matching 'dev-requirements.txt' warning: no previously-included files found matching 'rtd-requirements.txt' warning: no previously-included files found matching 'tox.ini' adding license file 'LICENSE' adding license file 'LICENSE.APACHE' adding license file 'LICENSE.BSD' adding license file 'LICENSE.PSF' adding license file 'AUTHORS.rst' writing manifest file 'src/cryptography.egg-info/SOURCES.txt' running build_ext generating cffi module 'build/temp.macosx-12.0-arm64-cpython-38/_padding.c' creating build/temp.macosx-12.0-arm64-cpython-38 generating cffi module 'build/temp.macosx-12.0-arm64-cpython-38/_constant_time.c' generating cffi module 'build/temp.macosx-12.0-arm64-cpython-38/_openssl.c' building '_openssl' extension creating build/temp.macosx-12.0-arm64-cpython-38/build creating build/temp.macosx-12.0-arm64-cpython-38/build/temp.macosx-12.0-arm64-cpython-38 clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DOPENSSL_NO_SSL3 -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -I/Users/rie/.pyenv/versions/3.8.10/include/python3.8 -c build/temp.macosx-12.0-arm64-cpython-38/_openssl.c -o build/temp.macosx-12.0-arm64-cpython-38/build/temp.macosx-12.0-arm64-cpython-38/_openssl.o -Wconversion -Wno-error=sign-conversion build/temp.macosx-12.0-arm64-cpython-38/_openssl.c:575:10: fatal error: 'openssl/opensslv.h' file not found #include <openssl/opensslv.h> ^~~~~~~~~~~~~~~~~~~~ 1 error generated. error: command '/usr/bin/clang' failed with exit code 1 [end of output] note: This error originates from a subprocess, and is likely not a problem with pip. ERROR: Failed building wheel for cryptography Building wheel for diff-match-patch (setup.py) ... done Created wheel for diff-match-patch: filename=diff_match_patch-20181111-py3-none-any.whl size=58507 sha256=978253cce81e32dc0bfe3eaa499dadb98fc8ee5b6fbfbadec92131e4a5234d77 Stored in directory: /Users/rie/Library/Caches/pip/wheels/41/d7/d3/d064417caaa3073a047b71ff03755d0209f9b2f7d5e61dac97 Building wheel for django-cors-middleware (setup.py) ... done Created wheel for django-cors-middleware: filename=django_cors_middleware-1.3.1-py3-none-any.whl size=8496 sha256=df156b9c46f17a84295e845c4f37c04dbdf9076902767b838a9abcecfa68c2d8 Stored in directory: /Users/rie/Library/Caches/pip/wheels/30/23/60/48a91b5ad271b47a2dcfb02d8059543b18b3386b1ac7b622d8 Building wheel for django-settings-export (setup.py) ... done Created wheel for django-settings-export: filename=django_settings_export-1.2.1-py3-none-any.whl size=4834 sha256=c02516369b362d6079b2b8eda150f76c755487719daf86b7e31b1fe032e85299 Stored in directory: /Users/rie/Library/Caches/pip/wheels/90/e3/19/5879bc8bbb3833ce9b345dba8d17b1cb7c1bd2aaaf50f32995 Building wheel for et-xmlfile (setup.py) ... done Created wheel for et-xmlfile: filename=et_xmlfile-1.0.1-py3-none-any.whl size=8913 sha256=f9346e3399596025e9c67638ac531732b03281238cecc031611f84e17d39cc9c Stored in directory: /Users/rie/Library/Caches/pip/wheels/6e/df/38/abda47b884e3e25f9f9b6430e5ce44c47670758a50c0c51759 Building wheel for itypes (setup.py) ... done Created wheel for itypes: filename=itypes-1.1.0-py3-none-any.whl size=2312 sha256=cc4db17ef6a4d3e0d645573e8392a411d44b59992bf613c0cf4eb3502dcec3c1 Stored in directory: /Users/rie/Library/Caches/pip/wheels/bb/67/87/50672d91b51ec89f480c8122c8dccb6ff5349112ceb0aeb6f6 Building wheel for MarkupPy (setup.py) ... done Created wheel for MarkupPy: filename=MarkupPy-1.14-py3-none-any.whl size=7415 sha256=4f862452d934be2da7ec0c6f3b51d2a73aa95493b34b165baf29e1cf4f82f6c3 Stored in directory: /Users/rie/Library/Caches/pip/wheels/95/13/60/31c9d5f4cd012e491aeac154ef8b0ec964916523623eb02f0b Building wheel for MarkupSafe (setup.py) ... done Created wheel for MarkupSafe: filename=MarkupSafe-1.1.1-cp38-cp38-macosx_12_0_arm64.whl size=16569 sha256=eef0d9f77ae933942f196c048265796dd431a30e9907fcc314dde980fe853bb4 Stored in directory: /Users/rie/Library/Caches/pip/wheels/0c/61/d6/4db4f4c28254856e82305fdb1f752ed7f8482e54c384d8cb0e Building wheel for odfpy (setup.py) ... done Created wheel for odfpy: filename=odfpy-1.4.0-py2.py3-none-any.whl size=137219 sha256=70be87aed5077146685c4ff509c734c5a9e7b72ec41d062be0450d78caaa9b5e Stored in directory: /Users/rie/Library/Caches/pip/wheels/ae/51/fd/c0b61c8a03bb73cc4afaa2c9aea6ae4c05aae047c961c4c157 Building wheel for openapi-codec (setup.py) ... done Created wheel for openapi-codec: filename=openapi_codec-1.3.2-py3-none-any.whl size=7306 sha256=93eae9396e2bd2c0bf3650413435853174df9aa217338489782bff662c263d9d Stored in directory: /Users/rie/Library/Caches/pip/wheels/a8/5d/ee/28bdfd9af08f953c9b003abcf5eb4a50d15026053947802703 Building wheel for openpyxl (setup.py) ... done Created wheel for openpyxl: filename=openpyxl-2.6.4-py2.py3-none-any.whl size=245677 sha256=2606fb7097e1c956545004f5308635914bd638848ed1a1846d68150e117a9e75 Stored in directory: /Users/rie/Library/Caches/pip/wheels/0f/f9/e2/035cb7bb0587f7662d288d9806b5a45c3f84dddbecf1564470 Building wheel for pdfkit (setup.py) ... done Created wheel for pdfkit: filename=pdfkit-0.6.0-py3-none-any.whl size=10134 sha256=6247447cce98ed5deab8f2ec7a00d5de397e2afec8a24b74a5e7dbcd5b98f082 Stored in directory: /Users/rie/Library/Caches/pip/wheels/f9/93/7a/acff7da24c95d0b668408013a890f85ccbae84d1ea155a7bda Building wheel for Pillow (setup.py) ... error error: subprocess-exited-with-error × python setup.py bdist_wheel did not run successfully. │ exit code: 1 ╰─> [177 lines of output] running bdist_wheel running build running build_py creating build creating build/lib.macosx-12.0-arm64-3.8 creating build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/MpoImagePlugin.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/ImageMode.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/PngImagePlugin.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/XbmImagePlugin.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/PcxImagePlugin.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/SunImagePlugin.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/ImageFile.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/SpiderImagePlugin.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/TarIO.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/FitsStubImagePlugin.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/MpegImagePlugin.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/BdfFontFile.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/GribStubImagePlugin.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/ImageStat.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/PixarImagePlugin.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/GimpPaletteFile.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/ImageColor.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/ContainerIO.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/MspImagePlugin.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/MicImagePlugin.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/_version.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/ImtImagePlugin.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/GifImagePlugin.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/PalmImagePlugin.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/ImageQt.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/ImageMath.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/PaletteFile.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/FontFile.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/PdfParser.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/ExifTags.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/ImageCms.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/FpxImagePlugin.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/ImageChops.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/BufrStubImagePlugin.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/PSDraw.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/PcdImagePlugin.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/ImageFilter.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/ImageDraw2.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/ImagePath.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/DcxImagePlugin.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/__init__.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/JpegPresets.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/Hdf5StubImagePlugin.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/features.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/ImageDraw.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/GimpGradientFile.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/ImageWin.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/IcoImagePlugin.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/_tkinter_finder.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/EpsImagePlugin.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/TgaImagePlugin.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/ImageMorph.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/Jpeg2KImagePlugin.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/WalImageFile.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/PcfFontFile.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/BlpImagePlugin.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/ImageTk.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/GbrImagePlugin.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/ImageOps.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/PdfImagePlugin.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/ImageShow.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/ImageEnhance.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/WmfImagePlugin.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/ImageGrab.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/WebPImagePlugin.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/FliImagePlugin.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/TiffTags.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/CurImagePlugin.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/_util.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/GdImageFile.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/TiffImagePlugin.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/IptcImagePlugin.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/ImagePalette.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/BmpImagePlugin.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/ImageTransform.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/IcnsImagePlugin.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/McIdasImagePlugin.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/XpmImagePlugin.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/DdsImagePlugin.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/ImageSequence.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/PyAccess.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/_binary.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/Image.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/XVThumbImagePlugin.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/SgiImagePlugin.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/ImImagePlugin.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/PsdImagePlugin.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/JpegImagePlugin.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/ImageFont.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/PpmImagePlugin.py -> build/lib.macosx-12.0-arm64-3.8/PIL copying src/PIL/FtexImagePlugin.py -> build/lib.macosx-12.0-arm64-3.8/PIL running egg_info writing src/Pillow.egg-info/PKG-INFO writing dependency_links to src/Pillow.egg-info/dependency_links.txt writing top-level names to src/Pillow.egg-info/top_level.txt warning: the 'license_file' option is deprecated, use 'license_files' instead adding license file 'LICENSE' (matched pattern 'LICENSE') reading manifest file 'src/Pillow.egg-info/SOURCES.txt' reading manifest template 'MANIFEST.in' warning: no files found matching '*.c' warning: no files found matching '*.h' warning: no files found matching '*.sh' no previously-included directories found matching 'docs/_static' warning: no previously-included files found matching '.appveyor.yml' warning: no previously-included files found matching '.coveragerc' warning: no previously-included files found matching '.codecov.yml' warning: no previously-included files found matching '.editorconfig' warning: no previously-included files found matching '.landscape.yaml' warning: no previously-included files found matching '.readthedocs.yml' warning: no previously-included files found matching 'azure-pipelines.yml' warning: no previously-included files found matching 'tox.ini' warning: no previously-included files matching '.git*' found anywhere in distribution warning: no previously-included files matching '*.pyc' found anywhere in distribution warning: no previously-included files matching '*.so' found anywhere in distribution no previously-included directories found matching '.azure-pipelines' no previously-included directories found matching '.travis' writing manifest file 'src/Pillow.egg-info/SOURCES.txt' running build_ext The headers or library files could not be found for zlib, a required dependency when compiling Pillow from source. Please see the install instructions at: https://pillow.readthedocs.io/en/latest/installation.html Traceback (most recent call last): File "/private/var/folders/76/qnntd35s5532x3qsh83s_cvh0000gn/T/pip-install-osaa9wj6/pillow_2a8e00f4cd9d432fad72ee98290c674d/setup.py", line 759, in <module> setup(name=NAME, File "/Users/rie/.pyenv/versions/3.8.10/lib/python3.8/site-packages/setuptools/__init__.py", line 153, in setup return distutils.core.setup(**attrs) File "/Users/rie/.pyenv/versions/3.8.10/lib/python3.8/distutils/core.py", line 148, in setup dist.run_commands() File "/Users/rie/.pyenv/versions/3.8.10/lib/python3.8/distutils/dist.py", line 966, in run_commands self.run_command(cmd) File "/Users/rie/.pyenv/versions/3.8.10/lib/python3.8/distutils/dist.py", line 985, in run_command cmd_obj.run() File "/Users/rie/.pyenv/versions/3.8.10/lib/python3.8/site-packages/wheel/bdist_wheel.py", line 325, in run self.run_command("build") File "/Users/rie/.pyenv/versions/3.8.10/lib/python3.8/distutils/cmd.py", line 313, in run_command self.distribution.run_command(command) File "/Users/rie/.pyenv/versions/3.8.10/lib/python3.8/distutils/dist.py", line 985, in run_command cmd_obj.run() File "/Users/rie/.pyenv/versions/3.8.10/lib/python3.8/distutils/command/build.py", line 135, in run self.run_command(cmd_name) File "/Users/rie/.pyenv/versions/3.8.10/lib/python3.8/distutils/cmd.py", line 313, in run_command self.distribution.run_command(command) File "/Users/rie/.pyenv/versions/3.8.10/lib/python3.8/distutils/dist.py", line 985, in run_command cmd_obj.run() File "/Users/rie/.pyenv/versions/3.8.10/lib/python3.8/distutils/command/build_ext.py", line 340, in run self.build_extensions() File "/private/var/folders/76/qnntd35s5532x3qsh83s_cvh0000gn/T/pip-install-osaa9wj6/pillow_2a8e00f4cd9d432fad72ee98290c674d/setup.py", line 606, in build_extensions raise RequiredDependencyException(f) __main__.RequiredDependencyException: zlib During handling of the above exception, another exception occurred: Traceback (most recent call last): File "<string>", line 2, in <module> File "<pip-setuptools-caller>", line 34, in <module> File "/private/var/folders/76/qnntd35s5532x3qsh83s_cvh0000gn/T/pip-install-osaa9wj6/pillow_2a8e00f4cd9d432fad72ee98290c674d/setup.py", line 804, in <module> raise RequiredDependencyException(msg) __main__.RequiredDependencyException: The headers or library files could not be found for zlib, a required dependency when compiling Pillow from source. Please see the install instructions at: https://pillow.readthedocs.io/en/latest/installation.html [end of output] note: This error originates from a subprocess, and is likely not a problem with pip. ERROR: Failed building wheel for Pillow Running setup.py clean for Pillow Building wheel for psycopg2-binary (setup.py) ... error error: subprocess-exited-with-error × python setup.py bdist_wheel did not run successfully. │ exit code: 1 ╰─> [144 lines of output] running bdist_wheel running build running build_py creating build creating build/lib.macosx-12.0-arm64-3.8 creating build/lib.macosx-12.0-arm64-3.8/psycopg2 copying lib/_json.py -> build/lib.macosx-12.0-arm64-3.8/psycopg2 copying lib/extras.py -> build/lib.macosx-12.0-arm64-3.8/psycopg2 copying lib/compat.py -> build/lib.macosx-12.0-arm64-3.8/psycopg2 copying lib/errorcodes.py -> build/lib.macosx-12.0-arm64-3.8/psycopg2 copying lib/tz.py -> build/lib.macosx-12.0-arm64-3.8/psycopg2 copying lib/_range.py -> build/lib.macosx-12.0-arm64-3.8/psycopg2 copying lib/_ipaddress.py -> build/lib.macosx-12.0-arm64-3.8/psycopg2 copying lib/_lru_cache.py -> build/lib.macosx-12.0-arm64-3.8/psycopg2 copying lib/__init__.py -> build/lib.macosx-12.0-arm64-3.8/psycopg2 copying lib/extensions.py -> build/lib.macosx-12.0-arm64-3.8/psycopg2 copying lib/errors.py -> build/lib.macosx-12.0-arm64-3.8/psycopg2 copying lib/sql.py -> build/lib.macosx-12.0-arm64-3.8/psycopg2 copying lib/pool.py -> build/lib.macosx-12.0-arm64-3.8/psycopg2 running build_ext building 'psycopg2._psycopg' extension creating build/temp.macosx-12.0-arm64-3.8 creating build/temp.macosx-12.0-arm64-3.8/psycopg clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DOPENSSL_NO_SSL3 -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DPSYCOPG_VERSION=2.8.2 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=140007 -DHAVE_LO64=1 -I/Users/rie/.pyenv/versions/3.8.10/include/python3.8 -I. -I/opt/homebrew/include/postgresql@14 -I/opt/homebrew/include/postgresql@14/server -c psycopg/psycopgmodule.c -o build/temp.macosx-12.0-arm64-3.8/psycopg/psycopgmodule.o clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DOPENSSL_NO_SSL3 -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DPSYCOPG_VERSION=2.8.2 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=140007 -DHAVE_LO64=1 -I/Users/rie/.pyenv/versions/3.8.10/include/python3.8 -I. -I/opt/homebrew/include/postgresql@14 -I/opt/homebrew/include/postgresql@14/server -c psycopg/green.c -o build/temp.macosx-12.0-arm64-3.8/psycopg/green.o clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DOPENSSL_NO_SSL3 -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DPSYCOPG_VERSION=2.8.2 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=140007 -DHAVE_LO64=1 -I/Users/rie/.pyenv/versions/3.8.10/include/python3.8 -I. -I/opt/homebrew/include/postgresql@14 -I/opt/homebrew/include/postgresql@14/server -c psycopg/pqpath.c -o build/temp.macosx-12.0-arm64-3.8/psycopg/pqpath.o psycopg/pqpath.c:135:17: warning: implicit conversion from enumeration type 'ConnStatusType' to different enumeration type 'ExecStatusType' [-Wenum-conversion] PQstatus(conn->pgconn) : PQresultStatus(*pgres))); ^~~~~~~~~~~~~~~~~~~~~~ psycopg/pqpath.c:1710:11: warning: code will never be executed [-Wunreachable-code] ret = 1; ^ psycopg/pqpath.c:1815:17: warning: implicit conversion from enumeration type 'ConnStatusType' to different enumeration type 'ExecStatusType' [-Wenum-conversion] PQstatus(curs->conn->pgconn) : PQresultStatus(curs->pgres))); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ 3 warnings generated. clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DOPENSSL_NO_SSL3 -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DPSYCOPG_VERSION=2.8.2 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=140007 -DHAVE_LO64=1 -I/Users/rie/.pyenv/versions/3.8.10/include/python3.8 -I. -I/opt/homebrew/include/postgresql@14 -I/opt/homebrew/include/postgresql@14/server -c psycopg/utils.c -o build/temp.macosx-12.0-arm64-3.8/psycopg/utils.o clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DOPENSSL_NO_SSL3 -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DPSYCOPG_VERSION=2.8.2 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=140007 -DHAVE_LO64=1 -I/Users/rie/.pyenv/versions/3.8.10/include/python3.8 -I. -I/opt/homebrew/include/postgresql@14 -I/opt/homebrew/include/postgresql@14/server -c psycopg/bytes_format.c -o build/temp.macosx-12.0-arm64-3.8/psycopg/bytes_format.o In file included from psycopg/bytes_format.c:81: In file included from ./psycopg/psycopg.h:37: ./psycopg/config.h:81:13: warning: unused function 'Dprintf' [-Wunused-function] static void Dprintf(const char *fmt, ...) {} ^ 1 warning generated. clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DOPENSSL_NO_SSL3 -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DPSYCOPG_VERSION=2.8.2 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=140007 -DHAVE_LO64=1 -I/Users/rie/.pyenv/versions/3.8.10/include/python3.8 -I. -I/opt/homebrew/include/postgresql@14 -I/opt/homebrew/include/postgresql@14/server -c psycopg/libpq_support.c -o build/temp.macosx-12.0-arm64-3.8/psycopg/libpq_support.o In file included from psycopg/libpq_support.c:29: In file included from ./psycopg/psycopg.h:37: ./psycopg/config.h:81:13: warning: unused function 'Dprintf' [-Wunused-function] static void Dprintf(const char *fmt, ...) {} ^ 1 warning generated. clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DOPENSSL_NO_SSL3 -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DPSYCOPG_VERSION=2.8.2 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=140007 -DHAVE_LO64=1 -I/Users/rie/.pyenv/versions/3.8.10/include/python3.8 -I. -I/opt/homebrew/include/postgresql@14 -I/opt/homebrew/include/postgresql@14/server -c psycopg/win32_support.c -o build/temp.macosx-12.0-arm64-3.8/psycopg/win32_support.o In file included from psycopg/win32_support.c:27: In file included from ./psycopg/psycopg.h:37: ./psycopg/config.h:81:13: warning: unused function 'Dprintf' [-Wunused-function] static void Dprintf(const char *fmt, ...) {} ^ 1 warning generated. clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DOPENSSL_NO_SSL3 -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DPSYCOPG_VERSION=2.8.2 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=140007 -DHAVE_LO64=1 -I/Users/rie/.pyenv/versions/3.8.10/include/python3.8 -I. -I/opt/homebrew/include/postgresql@14 -I/opt/homebrew/include/postgresql@14/server -c psycopg/solaris_support.c -o build/temp.macosx-12.0-arm64-3.8/psycopg/solaris_support.o In file included from psycopg/solaris_support.c:28: In file included from ./psycopg/psycopg.h:37: ./psycopg/config.h:81:13: warning: unused function 'Dprintf' [-Wunused-function] static void Dprintf(const char *fmt, ...) {} ^ 1 warning generated. clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DOPENSSL_NO_SSL3 -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DPSYCOPG_VERSION=2.8.2 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=140007 -DHAVE_LO64=1 -I/Users/rie/.pyenv/versions/3.8.10/include/python3.8 -I. -I/opt/homebrew/include/postgresql@14 -I/opt/homebrew/include/postgresql@14/server -c psycopg/connection_int.c -o build/temp.macosx-12.0-arm64-3.8/psycopg/connection_int.o clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DOPENSSL_NO_SSL3 -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DPSYCOPG_VERSION=2.8.2 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=140007 -DHAVE_LO64=1 -I/Users/rie/.pyenv/versions/3.8.10/include/python3.8 -I. -I/opt/homebrew/include/postgresql@14 -I/opt/homebrew/include/postgresql@14/server -c psycopg/connection_type.c -o build/temp.macosx-12.0-arm64-3.8/psycopg/connection_type.o clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DOPENSSL_NO_SSL3 -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DPSYCOPG_VERSION=2.8.2 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=140007 -DHAVE_LO64=1 -I/Users/rie/.pyenv/versions/3.8.10/include/python3.8 -I. -I/opt/homebrew/include/postgresql@14 -I/opt/homebrew/include/postgresql@14/server -c psycopg/cursor_int.c -o build/temp.macosx-12.0-arm64-3.8/psycopg/cursor_int.o clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DOPENSSL_NO_SSL3 -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DPSYCOPG_VERSION=2.8.2 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=140007 -DHAVE_LO64=1 -I/Users/rie/.pyenv/versions/3.8.10/include/python3.8 -I. -I/opt/homebrew/include/postgresql@14 -I/opt/homebrew/include/postgresql@14/server -c psycopg/cursor_type.c -o build/temp.macosx-12.0-arm64-3.8/psycopg/cursor_type.o clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DOPENSSL_NO_SSL3 -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DPSYCOPG_VERSION=2.8.2 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=140007 -DHAVE_LO64=1 -I/Users/rie/.pyenv/versions/3.8.10/include/python3.8 -I. -I/opt/homebrew/include/postgresql@14 -I/opt/homebrew/include/postgresql@14/server -c psycopg/column_type.c -o build/temp.macosx-12.0-arm64-3.8/psycopg/column_type.o In file included from psycopg/column_type.c:27: In file included from ./psycopg/psycopg.h:37: ./psycopg/config.h:81:13: warning: unused function 'Dprintf' [-Wunused-function] static void Dprintf(const char *fmt, ...) {} ^ 1 warning generated. clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DOPENSSL_NO_SSL3 -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DPSYCOPG_VERSION=2.8.2 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=140007 -DHAVE_LO64=1 -I/Users/rie/.pyenv/versions/3.8.10/include/python3.8 -I. -I/opt/homebrew/include/postgresql@14 -I/opt/homebrew/include/postgresql@14/server -c psycopg/replication_connection_type.c -o build/temp.macosx-12.0-arm64-3.8/psycopg/replication_connection_type.o In file included from psycopg/replication_connection_type.c:27: In file included from ./psycopg/psycopg.h:37: ./psycopg/config.h:81:13: warning: unused function 'Dprintf' [-Wunused-function] static void Dprintf(const char *fmt, ...) {} ^ 1 warning generated. clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DOPENSSL_NO_SSL3 -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DPSYCOPG_VERSION=2.8.2 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=140007 -DHAVE_LO64=1 -I/Users/rie/.pyenv/versions/3.8.10/include/python3.8 -I. -I/opt/homebrew/include/postgresql@14 -I/opt/homebrew/include/postgresql@14/server -c psycopg/replication_cursor_type.c -o build/temp.macosx-12.0-arm64-3.8/psycopg/replication_cursor_type.o clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DOPENSSL_NO_SSL3 -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DPSYCOPG_VERSION=2.8.2 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=140007 -DHAVE_LO64=1 -I/Users/rie/.pyenv/versions/3.8.10/include/python3.8 -I. -I/opt/homebrew/include/postgresql@14 -I/opt/homebrew/include/postgresql@14/server -c psycopg/replication_message_type.c -o build/temp.macosx-12.0-arm64-3.8/psycopg/replication_message_type.o In file included from psycopg/replication_message_type.c:27: In file included from ./psycopg/psycopg.h:37: ./psycopg/config.h:81:13: warning: unused function 'Dprintf' [-Wunused-function] static void Dprintf(const char *fmt, ...) {} ^ 1 warning generated. clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DOPENSSL_NO_SSL3 -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DPSYCOPG_VERSION=2.8.2 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=140007 -DHAVE_LO64=1 -I/Users/rie/.pyenv/versions/3.8.10/include/python3.8 -I. -I/opt/homebrew/include/postgresql@14 -I/opt/homebrew/include/postgresql@14/server -c psycopg/diagnostics_type.c -o build/temp.macosx-12.0-arm64-3.8/psycopg/diagnostics_type.o In file included from psycopg/diagnostics_type.c:27: In file included from ./psycopg/psycopg.h:37: ./psycopg/config.h:81:13: warning: unused function 'Dprintf' [-Wunused-function] static void Dprintf(const char *fmt, ...) {} ^ 1 warning generated. clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DOPENSSL_NO_SSL3 -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DPSYCOPG_VERSION=2.8.2 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=140007 -DHAVE_LO64=1 -I/Users/rie/.pyenv/versions/3.8.10/include/python3.8 -I. -I/opt/homebrew/include/postgresql@14 -I/opt/homebrew/include/postgresql@14/server -c psycopg/error_type.c -o build/temp.macosx-12.0-arm64-3.8/psycopg/error_type.o In file included from psycopg/error_type.c:27: In file included from ./psycopg/psycopg.h:37: ./psycopg/config.h:81:13: warning: unused function 'Dprintf' [-Wunused-function] static void Dprintf(const char *fmt, ...) {} ^ 1 warning generated. clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DOPENSSL_NO_SSL3 -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DPSYCOPG_VERSION=2.8.2 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=140007 -DHAVE_LO64=1 -I/Users/rie/.pyenv/versions/3.8.10/include/python3.8 -I. -I/opt/homebrew/include/postgresql@14 -I/opt/homebrew/include/postgresql@14/server -c psycopg/conninfo_type.c -o build/temp.macosx-12.0-arm64-3.8/psycopg/conninfo_type.o In file included from psycopg/conninfo_type.c:27: In file included from ./psycopg/psycopg.h:37: ./psycopg/config.h:81:13: warning: unused function 'Dprintf' [-Wunused-function] static void Dprintf(const char *fmt, ...) {} ^ 1 warning generated. clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DOPENSSL_NO_SSL3 -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DPSYCOPG_VERSION=2.8.2 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=140007 -DHAVE_LO64=1 -I/Users/rie/.pyenv/versions/3.8.10/include/python3.8 -I. -I/opt/homebrew/include/postgresql@14 -I/opt/homebrew/include/postgresql@14/server -c psycopg/lobject_int.c -o build/temp.macosx-12.0-arm64-3.8/psycopg/lobject_int.o clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DOPENSSL_NO_SSL3 -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DPSYCOPG_VERSION=2.8.2 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=140007 -DHAVE_LO64=1 -I/Users/rie/.pyenv/versions/3.8.10/include/python3.8 -I. -I/opt/homebrew/include/postgresql@14 -I/opt/homebrew/include/postgresql@14/server -c psycopg/lobject_type.c -o build/temp.macosx-12.0-arm64-3.8/psycopg/lobject_type.o clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DOPENSSL_NO_SSL3 -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DPSYCOPG_VERSION=2.8.2 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=140007 -DHAVE_LO64=1 -I/Users/rie/.pyenv/versions/3.8.10/include/python3.8 -I. -I/opt/homebrew/include/postgresql@14 -I/opt/homebrew/include/postgresql@14/server -c psycopg/notify_type.c -o build/temp.macosx-12.0-arm64-3.8/psycopg/notify_type.o In file included from psycopg/notify_type.c:27: In file included from ./psycopg/psycopg.h:37: ./psycopg/config.h:81:13: warning: unused function 'Dprintf' [-Wunused-function] static void Dprintf(const char *fmt, ...) {} ^ 1 warning generated. clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DOPENSSL_NO_SSL3 -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DPSYCOPG_VERSION=2.8.2 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=140007 -DHAVE_LO64=1 -I/Users/rie/.pyenv/versions/3.8.10/include/python3.8 -I. -I/opt/homebrew/include/postgresql@14 -I/opt/homebrew/include/postgresql@14/server -c psycopg/xid_type.c -o build/temp.macosx-12.0-arm64-3.8/psycopg/xid_type.o clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DOPENSSL_NO_SSL3 -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DPSYCOPG_VERSION=2.8.2 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=140007 -DHAVE_LO64=1 -I/Users/rie/.pyenv/versions/3.8.10/include/python3.8 -I. -I/opt/homebrew/include/postgresql@14 -I/opt/homebrew/include/postgresql@14/server -c psycopg/adapter_asis.c -o build/temp.macosx-12.0-arm64-3.8/psycopg/adapter_asis.o clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DOPENSSL_NO_SSL3 -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DPSYCOPG_VERSION=2.8.2 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=140007 -DHAVE_LO64=1 -I/Users/rie/.pyenv/versions/3.8.10/include/python3.8 -I. -I/opt/homebrew/include/postgresql@14 -I/opt/homebrew/include/postgresql@14/server -c psycopg/adapter_binary.c -o build/temp.macosx-12.0-arm64-3.8/psycopg/adapter_binary.o clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DOPENSSL_NO_SSL3 -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DPSYCOPG_VERSION=2.8.2 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=140007 -DHAVE_LO64=1 -I/Users/rie/.pyenv/versions/3.8.10/include/python3.8 -I. -I/opt/homebrew/include/postgresql@14 -I/opt/homebrew/include/postgresql@14/server -c psycopg/adapter_datetime.c -o build/temp.macosx-12.0-arm64-3.8/psycopg/adapter_datetime.o clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DOPENSSL_NO_SSL3 -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DPSYCOPG_VERSION=2.8.2 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=140007 -DHAVE_LO64=1 -I/Users/rie/.pyenv/versions/3.8.10/include/python3.8 -I. -I/opt/homebrew/include/postgresql@14 -I/opt/homebrew/include/postgresql@14/server -c psycopg/adapter_list.c -o build/temp.macosx-12.0-arm64-3.8/psycopg/adapter_list.o clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DOPENSSL_NO_SSL3 -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DPSYCOPG_VERSION=2.8.2 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=140007 -DHAVE_LO64=1 -I/Users/rie/.pyenv/versions/3.8.10/include/python3.8 -I. -I/opt/homebrew/include/postgresql@14 -I/opt/homebrew/include/postgresql@14/server -c psycopg/adapter_pboolean.c -o build/temp.macosx-12.0-arm64-3.8/psycopg/adapter_pboolean.o clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DOPENSSL_NO_SSL3 -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DPSYCOPG_VERSION=2.8.2 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=140007 -DHAVE_LO64=1 -I/Users/rie/.pyenv/versions/3.8.10/include/python3.8 -I. -I/opt/homebrew/include/postgresql@14 -I/opt/homebrew/include/postgresql@14/server -c psycopg/adapter_pdecimal.c -o build/temp.macosx-12.0-arm64-3.8/psycopg/adapter_pdecimal.o clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DOPENSSL_NO_SSL3 -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DPSYCOPG_VERSION=2.8.2 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=140007 -DHAVE_LO64=1 -I/Users/rie/.pyenv/versions/3.8.10/include/python3.8 -I. -I/opt/homebrew/include/postgresql@14 -I/opt/homebrew/include/postgresql@14/server -c psycopg/adapter_pint.c -o build/temp.macosx-12.0-arm64-3.8/psycopg/adapter_pint.o clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DOPENSSL_NO_SSL3 -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DPSYCOPG_VERSION=2.8.2 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=140007 -DHAVE_LO64=1 -I/Users/rie/.pyenv/versions/3.8.10/include/python3.8 -I. -I/opt/homebrew/include/postgresql@14 -I/opt/homebrew/include/postgresql@14/server -c psycopg/adapter_pfloat.c -o build/temp.macosx-12.0-arm64-3.8/psycopg/adapter_pfloat.o clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DOPENSSL_NO_SSL3 -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DPSYCOPG_VERSION=2.8.2 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=140007 -DHAVE_LO64=1 -I/Users/rie/.pyenv/versions/3.8.10/include/python3.8 -I. -I/opt/homebrew/include/postgresql@14 -I/opt/homebrew/include/postgresql@14/server -c psycopg/adapter_qstring.c -o build/temp.macosx-12.0-arm64-3.8/psycopg/adapter_qstring.o clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DOPENSSL_NO_SSL3 -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DPSYCOPG_VERSION=2.8.2 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=140007 -DHAVE_LO64=1 -I/Users/rie/.pyenv/versions/3.8.10/include/python3.8 -I. -I/opt/homebrew/include/postgresql@14 -I/opt/homebrew/include/postgresql@14/server -c psycopg/microprotocols.c -o build/temp.macosx-12.0-arm64-3.8/psycopg/microprotocols.o clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DOPENSSL_NO_SSL3 -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DPSYCOPG_VERSION=2.8.2 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=140007 -DHAVE_LO64=1 -I/Users/rie/.pyenv/versions/3.8.10/include/python3.8 -I. -I/opt/homebrew/include/postgresql@14 -I/opt/homebrew/include/postgresql@14/server -c psycopg/microprotocols_proto.c -o build/temp.macosx-12.0-arm64-3.8/psycopg/microprotocols_proto.o In file included from psycopg/microprotocols_proto.c:27: In file included from ./psycopg/psycopg.h:37: ./psycopg/config.h:81:13: warning: unused function 'Dprintf' [-Wunused-function] static void Dprintf(const char *fmt, ...) {} ^ 1 warning generated. clang -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DOPENSSL_NO_SSL3 -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -DPSYCOPG_VERSION=2.8.2 (dt dec pq3 ext lo64) -DPG_VERSION_NUM=140007 -DHAVE_LO64=1 -I/Users/rie/.pyenv/versions/3.8.10/include/python3.8 -I. -I/opt/homebrew/include/postgresql@14 -I/opt/homebrew/include/postgresql@14/server -c psycopg/typecast.c -o build/temp.macosx-12.0-arm64-3.8/psycopg/typecast.o clang -bundle -undefined dynamic_lookup -L/opt/homebrew/opt/readline/lib -L/opt/homebrew/opt/readline/lib -L/Users/rie/.pyenv/versions/3.8.10/lib -Wl,-rpath,/Users/rie/.pyenv/versions/3.8.10/lib -L/opt/homebrew/lib -Wl,-rpath,/opt/homebrew/lib -L/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib -L/opt/homebrew/opt/readline/lib -L/opt/homebrew/opt/readline/lib -L/Users/rie/.pyenv/versions/3.8.10/lib -Wl,-rpath,/Users/rie/.pyenv/versions/3.8.10/lib -L/opt/homebrew/lib -Wl,-rpath,/opt/homebrew/lib -L/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/lib build/temp.macosx-12.0-arm64-3.8/psycopg/psycopgmodule.o build/temp.macosx-12.0-arm64-3.8/psycopg/green.o build/temp.macosx-12.0-arm64-3.8/psycopg/pqpath.o build/temp.macosx-12.0-arm64-3.8/psycopg/utils.o build/temp.macosx-12.0-arm64-3.8/psycopg/bytes_format.o build/temp.macosx-12.0-arm64-3.8/psycopg/libpq_support.o build/temp.macosx-12.0-arm64-3.8/psycopg/win32_support.o build/temp.macosx-12.0-arm64-3.8/psycopg/solaris_support.o build/temp.macosx-12.0-arm64-3.8/psycopg/connection_int.o build/temp.macosx-12.0-arm64-3.8/psycopg/connection_type.o build/temp.macosx-12.0-arm64-3.8/psycopg/cursor_int.o build/temp.macosx-12.0-arm64-3.8/psycopg/cursor_type.o build/temp.macosx-12.0-arm64-3.8/psycopg/column_type.o build/temp.macosx-12.0-arm64-3.8/psycopg/replication_connection_type.o build/temp.macosx-12.0-arm64-3.8/psycopg/replication_cursor_type.o build/temp.macosx-12.0-arm64-3.8/psycopg/replication_message_type.o build/temp.macosx-12.0-arm64-3.8/psycopg/diagnostics_type.o build/temp.macosx-12.0-arm64-3.8/psycopg/error_type.o build/temp.macosx-12.0-arm64-3.8/psycopg/conninfo_type.o build/temp.macosx-12.0-arm64-3.8/psycopg/lobject_int.o build/temp.macosx-12.0-arm64-3.8/psycopg/lobject_type.o build/temp.macosx-12.0-arm64-3.8/psycopg/notify_type.o build/temp.macosx-12.0-arm64-3.8/psycopg/xid_type.o build/temp.macosx-12.0-arm64-3.8/psycopg/adapter_asis.o build/temp.macosx-12.0-arm64-3.8/psycopg/adapter_binary.o build/temp.macosx-12.0-arm64-3.8/psycopg/adapter_datetime.o build/temp.macosx-12.0-arm64-3.8/psycopg/adapter_list.o build/temp.macosx-12.0-arm64-3.8/psycopg/adapter_pboolean.o build/temp.macosx-12.0-arm64-3.8/psycopg/adapter_pdecimal.o build/temp.macosx-12.0-arm64-3.8/psycopg/adapter_pint.o build/temp.macosx-12.0-arm64-3.8/psycopg/adapter_pfloat.o build/temp.macosx-12.0-arm64-3.8/psycopg/adapter_qstring.o build/temp.macosx-12.0-arm64-3.8/psycopg/microprotocols.o build/temp.macosx-12.0-arm64-3.8/psycopg/microprotocols_proto.o build/temp.macosx-12.0-arm64-3.8/psycopg/typecast.o -L/Users/rie/.pyenv/versions/3.8.10/lib -L/opt/homebrew/lib/postgresql@14 -lpq -lssl -lcrypto -o build/lib.macosx-12.0-arm64-3.8/psycopg2/_psycopg.cpython-38-darwin.so ld: library not found for -lssl clang: error: linker command failed with exit code 1 (use -v to see invocation) error: command 'clang' failed with exit status 1 [end of output] note: This error originates from a subprocess, and is likely not a problem with pip. ERROR: Failed building wheel for psycopg2-binary Running setup.py clean for psycopg2-binary Building wheel for public (setup.py) ... done Created wheel for public: filename=public-2019.4.13-py3-none-any.whl size=2534 sha256=410a0e4b3285bd70935ac772c8ec69c994fdc8965e43c14d2533d0354a7dade4 Stored in directory: /Users/rie/Library/Caches/pip/wheels/24/f6/53/2d8bc46a815b2c176056f714cfa2b4a9736913f38a14efb320 Building wheel for pycparser (setup.py) ... done Created wheel for pycparser: filename=pycparser-2.19-py2.py3-none-any.whl size=111031 sha256=a46aff94719d93f3ba73765105e6612631ed5b6d8af0721d51b9de08cb0e7c0d Stored in directory: /Users/rie/Library/Caches/pip/wheels/6d/fb/fb/c752da1378a60304d18004cc5c58e73519a798ee2809db7562 Building wheel for pystmark (setup.py) ... done Created wheel for pystmark: filename=pystmark-0.4.6-py3-none-any.whl size=12982 sha256=6200526f6e8536073e2c29246c3f6fb1db514a66cb27c9a946ad1b6156157df2 Stored in directory: /Users/rie/Library/Caches/pip/wheels/dc/8c/59/5e622a3985f566d496afc3349db8b879602a02eacb71cf631e Building wheel for PyYAML (setup.py) ... done Created wheel for PyYAML: filename=PyYAML-5.1.2-cp38-cp38-macosx_12_0_arm64.whl size=44107 sha256=a96c0074e4e2bb4759bdf7e567a58a5788672775ace68efbf9473f3f50f0e6c7 Stored in directory: /Users/rie/Library/Caches/pip/wheels/55/40/9f/027c3d94280ce2b7c2c107cb563a433e6572f830a5462231ae Building wheel for query-string (setup.py) ... done Created wheel for query-string: filename=query_string-2019.4.13-py3-none-any.whl size=2049 sha256=15a63f3c265d94497ed1223de1a7968685462694f0684cb5c500907fde140ba3 Stored in directory: /Users/rie/Library/Caches/pip/wheels/5b/05/a3/eef676684dc188f229b612c003a0eaf5cb9fbac8c50c0d4a42 Building wheel for simplejson (setup.py) ... done Created wheel for simplejson: filename=simplejson-3.17.0-cp38-cp38-macosx_12_0_arm64.whl size=72480 sha256=806cf2fd203f4aa6a3897f784ac294f927e00274119510dc046877a70360e676 Stored in directory: /Users/rie/Library/Caches/pip/wheels/79/a1/9f/a28ec96c5663fca58b4c735c54b202b4ae08fc4f7624bddb06 Building wheel for autopep8 (setup.py) ... done Created wheel for autopep8: filename=autopep8-1.5.2-py2.py3-none-any.whl size=43754 sha256=da8086029f958e5383a90e7dd1ceb21abda4d8911574944cf88bb59debb0fa05 Stored in directory: /Users/rie/Library/Caches/pip/wheels/db/03/ca/c1f69122ce37565af2598e1dbd535df75b4d52247a6d69ed0f Successfully built cairocffi coreschema diff-match-patch django-cors-middleware django-settings-export et-xmlfile itypes MarkupPy MarkupSafe odfpy openapi-codec openpyxl pdfkit public pycparser pystmark PyYAML query-string simplejson autopep8 Failed to build cryptography Pillow psycopg2-binary |
Comments (0)
You can clone a snippet to your computer for local editing. Learn more.