I've found pythonz can't build 3.7 with ssl on Mac successfully. The devguide (https://devguide.python.org/setup/) says: ``` with Homebrew: $ brew install openssl xz and configure python versions >= 3.7: ./configure --with-pydebug --with-openssl=$(brew --prefix openssl) or configure python versions < 3.7: $ CPPFLAGS="-I$(brew --prefix openssl)/include" \ LDFLAGS="-L$(brew --prefix openssl)/lib" \ ./configure --with-pydebug ```