Formula/_aws-sam-cli-nightly.rb [30:46]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    end
  else
    # instructions for python virtualenv installer
    bottle do
      root_url config_provider.root_url
      sha256 cellar: :any_skip_relocation, sierra:       config_provider.sierra_hash
    end

    depends_on "python@3.8"

    def install
      # https://github.com/Homebrew/brew/pull/15792
      # re-add pip to the virtualenv using without_pip=false
      venv = virtualenv_create(libexec, "python3.8", without_pip:false)
      system libexec/"bin/pip", "install", "--upgrade", "pip"
      system libexec/"bin/pip", "install", "-v", "--ignore-installed", buildpath
      system libexec/"bin/pip", "uninstall", "-y", "aws-sam-cli"
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



Formula/_aws-sam-cli.rb [32:48]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    end
  else
    # instructions for python virtualenv installer
    bottle do
      root_url config_provider.root_url
      sha256 cellar: :any_skip_relocation, sierra:       config_provider.sierra_hash
    end

    depends_on "python@3.8"

    def install
      # https://github.com/Homebrew/brew/pull/15792
      # re-add pip to the virtualenv using without_pip=false
      venv = virtualenv_create(libexec, "python3.8", without_pip:false)
      system libexec/"bin/pip", "install", "--upgrade", "pip"
      system libexec/"bin/pip", "install", "-v", "--ignore-installed", buildpath
      system libexec/"bin/pip", "uninstall", "-y", "aws-sam-cli"
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



