Skip to content
This repository has been archived by the owner on May 6, 2024. It is now read-only.

Commit

Permalink
ADAP-753: [bug] Add pip to the venv (#324)
Browse files Browse the repository at this point in the history
* include pip in the venv in all versions
  • Loading branch information
mikealfare authored Aug 14, 2023
1 parent c712836 commit 704f973
Show file tree
Hide file tree
Showing 81 changed files with 81 additions and 81 deletions.
2 changes: 1 addition & 1 deletion Formula/dbt-bigquery@1.0.0-b1.rb
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ class DbtBigqueryAT100B1 < Formula

def install
ENV["CARGO_NET_GIT_FETCH_WITH_CLI"] = "true"
venv = virtualenv_create(libexec, "python3", system_site_packages: false)
venv = virtualenv_create(libexec, "python3", system_site_packages: false, without_pip: false)
venv.instance_variable_get(:@formula).system venv.instance_variable_get(:@venv_root)/"bin/python",
"-m", "pip", "install", "pip==22.3.1"
resources.each do |r|
Expand Down
2 changes: 1 addition & 1 deletion Formula/dbt-bigquery@1.0.0-rc2.rb
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ class DbtBigqueryAT100Rc2 < Formula

def install
ENV["CARGO_NET_GIT_FETCH_WITH_CLI"] = "true"
venv = virtualenv_create(libexec, "python3", system_site_packages: false)
venv = virtualenv_create(libexec, "python3", system_site_packages: false, without_pip: false)
venv.instance_variable_get(:@formula).system venv.instance_variable_get(:@venv_root)/"bin/python",
"-m", "pip", "install", "pip==22.3.1"
resources.each do |r|
Expand Down
2 changes: 1 addition & 1 deletion Formula/dbt-bigquery@1.0.0.rb
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ class DbtBigqueryAT100 < Formula

def install
ENV["CARGO_NET_GIT_FETCH_WITH_CLI"] = "true"
venv = virtualenv_create(libexec, "python3", system_site_packages: false)
venv = virtualenv_create(libexec, "python3", system_site_packages: false, without_pip: false)
venv.instance_variable_get(:@formula).system venv.instance_variable_get(:@venv_root)/"bin/python",
"-m", "pip", "install", "pip==22.3.1"
resources.each do |r|
Expand Down
2 changes: 1 addition & 1 deletion Formula/dbt-bigquery@1.1.0-rc1.rb
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ class DbtBigqueryAT110Rc1 < Formula

def install
ENV["CARGO_NET_GIT_FETCH_WITH_CLI"] = "true"
venv = virtualenv_create(libexec, "python3", system_site_packages: false)
venv = virtualenv_create(libexec, "python3", system_site_packages: false, without_pip: false)
venv.instance_variable_get(:@formula).system venv.instance_variable_get(:@venv_root)/"bin/python",
"-m", "pip", "install", "pip==22.3.1"
resources.each do |r|
Expand Down
2 changes: 1 addition & 1 deletion Formula/dbt-bigquery@1.1.0.rb
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ class DbtBigqueryAT110 < Formula

def install
ENV["CARGO_NET_GIT_FETCH_WITH_CLI"] = "true"
venv = virtualenv_create(libexec, "python3", system_site_packages: false)
venv = virtualenv_create(libexec, "python3", system_site_packages: false, without_pip: false)
venv.instance_variable_get(:@formula).system venv.instance_variable_get(:@venv_root)/"bin/python",
"-m", "pip", "install", "pip==22.3.1"
resources.each do |r|
Expand Down
2 changes: 1 addition & 1 deletion Formula/dbt-bigquery@1.1.1.rb
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ class DbtBigqueryAT111 < Formula

def install
ENV["CARGO_NET_GIT_FETCH_WITH_CLI"] = "true"
venv = virtualenv_create(libexec, "python3", system_site_packages: false)
venv = virtualenv_create(libexec, "python3", system_site_packages: false, without_pip: false)
venv.instance_variable_get(:@formula).system venv.instance_variable_get(:@venv_root)/"bin/python",
"-m", "pip", "install", "pip==22.3.1"
resources.each do |r|
Expand Down
2 changes: 1 addition & 1 deletion Formula/dbt-bigquery@1.2.0-rc1.rb
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ class DbtBigqueryAT120Rc1 < Formula

def install
ENV["CARGO_NET_GIT_FETCH_WITH_CLI"] = "true"
venv = virtualenv_create(libexec, "python3", system_site_packages: false)
venv = virtualenv_create(libexec, "python3", system_site_packages: false, without_pip: false)
venv.instance_variable_get(:@formula).system venv.instance_variable_get(:@venv_root)/"bin/python",
"-m", "pip", "install", "pip==22.3.1"
resources.each do |r|
Expand Down
2 changes: 1 addition & 1 deletion Formula/dbt-bigquery@1.2.0.rb
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ class DbtBigqueryAT120 < Formula

def install
ENV["CARGO_NET_GIT_FETCH_WITH_CLI"] = "true"
venv = virtualenv_create(libexec, "python3", system_site_packages: false)
venv = virtualenv_create(libexec, "python3", system_site_packages: false, without_pip: false)
venv.instance_variable_get(:@formula).system venv.instance_variable_get(:@venv_root)/"bin/python",
"-m", "pip", "install", "pip==22.3.1"
resources.each do |r|
Expand Down
2 changes: 1 addition & 1 deletion Formula/dbt-bigquery@1.2.1.rb
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ class DbtBigqueryAT121 < Formula

def install
ENV["CARGO_NET_GIT_FETCH_WITH_CLI"] = "true"
venv = virtualenv_create(libexec, "python3", system_site_packages: false)
venv = virtualenv_create(libexec, "python3", system_site_packages: false, without_pip: false)
venv.instance_variable_get(:@formula).system venv.instance_variable_get(:@venv_root)/"bin/python",
"-m", "pip", "install", "pip==22.3.1"
resources.each do |r|
Expand Down
2 changes: 1 addition & 1 deletion Formula/dbt-bigquery@1.3.0-b1.rb
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ class DbtBigqueryAT130B1 < Formula

def install
ENV["CARGO_NET_GIT_FETCH_WITH_CLI"] = "true"
venv = virtualenv_create(libexec, "python3", system_site_packages: false)
venv = virtualenv_create(libexec, "python3", system_site_packages: false, without_pip: false)
venv.instance_variable_get(:@formula).system venv.instance_variable_get(:@venv_root)/"bin/python",
"-m", "pip", "install", "pip==22.3.1"
resources.each do |r|
Expand Down
2 changes: 1 addition & 1 deletion Formula/dbt-bigquery@1.3.0-rc2.rb
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ class DbtBigqueryAT130Rc2 < Formula

def install
ENV["CARGO_NET_GIT_FETCH_WITH_CLI"] = "true"
venv = virtualenv_create(libexec, "python3", system_site_packages: false)
venv = virtualenv_create(libexec, "python3", system_site_packages: false, without_pip: false)
venv.instance_variable_get(:@formula).system venv.instance_variable_get(:@venv_root)/"bin/python",
"-m", "pip", "install", "pip==22.3.1"
resources.each do |r|
Expand Down
2 changes: 1 addition & 1 deletion Formula/dbt-bigquery@1.3.0.rb
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ class DbtBigqueryAT130 < Formula

def install
ENV["CARGO_NET_GIT_FETCH_WITH_CLI"] = "true"
venv = virtualenv_create(libexec, "python3", system_site_packages: false)
venv = virtualenv_create(libexec, "python3", system_site_packages: false, without_pip: false)
venv.instance_variable_get(:@formula).system venv.instance_variable_get(:@venv_root)/"bin/python",
"-m", "pip", "install", "pip==22.3.1"
resources.each do |r|
Expand Down
2 changes: 1 addition & 1 deletion Formula/dbt-bigquery@1.3.2.rb
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ class DbtBigqueryAT132 < Formula

def install
ENV["CARGO_NET_GIT_FETCH_WITH_CLI"] = "true"
venv = virtualenv_create(libexec, "python3", system_site_packages: false)
venv = virtualenv_create(libexec, "python3", system_site_packages: false, without_pip: false)
venv.instance_variable_get(:@formula).system venv.instance_variable_get(:@venv_root)/"bin/python",
"-m", "pip", "install", "pip==22.3.1"
resources.each do |r|
Expand Down
2 changes: 1 addition & 1 deletion Formula/dbt-bigquery@1.4.0.rb
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ class DbtBigqueryAT140 < Formula

def install
ENV["CARGO_NET_GIT_FETCH_WITH_CLI"] = "true"
venv = virtualenv_create(libexec, "python3", system_site_packages: false)
venv = virtualenv_create(libexec, "python3", system_site_packages: false, without_pip: false)
venv.instance_variable_get(:@formula).system venv.instance_variable_get(:@venv_root)/"bin/python",
"-m", "pip", "install", "pip==22.3.1"
resources.each do |r|
Expand Down
2 changes: 1 addition & 1 deletion Formula/dbt-bigquery@1.4.1.rb
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ class DbtBigqueryAT141 < Formula

def install
ENV["CARGO_NET_GIT_FETCH_WITH_CLI"] = "true"
venv = virtualenv_create(libexec, "python3", system_site_packages: false)
venv = virtualenv_create(libexec, "python3", system_site_packages: false, without_pip: false)
venv.instance_variable_get(:@formula).system venv.instance_variable_get(:@venv_root)/"bin/python",
"-m", "pip", "install", "pip==22.3.1"
resources.each do |r|
Expand Down
2 changes: 1 addition & 1 deletion Formula/dbt-bigquery@1.4.3.rb
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ class DbtBigqueryAT143 < Formula

def install
ENV["CARGO_NET_GIT_FETCH_WITH_CLI"] = "true"
venv = virtualenv_create(libexec, "python3", system_site_packages: false)
venv = virtualenv_create(libexec, "python3", system_site_packages: false, without_pip: false)
venv.instance_variable_get(:@formula).system venv.instance_variable_get(:@venv_root)/"bin/python",
"-m", "pip", "install", "pip==22.3.1"
resources.each do |r|
Expand Down
2 changes: 1 addition & 1 deletion Formula/dbt-bigquery@1.5.0-rc1.rb
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ class DbtBigqueryAT150Rc1 < Formula

def install
ENV["CARGO_NET_GIT_FETCH_WITH_CLI"] = "true"
venv = virtualenv_create(libexec, "python3", system_site_packages: false)
venv = virtualenv_create(libexec, "python3", system_site_packages: false, without_pip: false)
venv.instance_variable_get(:@formula).system venv.instance_variable_get(:@venv_root)/"bin/python",
"-m", "pip", "install", "pip==22.3.1"
resources.each do |r|
Expand Down
2 changes: 1 addition & 1 deletion Formula/dbt-bigquery@1.5.0.rb
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ class DbtBigqueryAT150 < Formula

def install
ENV["CARGO_NET_GIT_FETCH_WITH_CLI"] = "true"
venv = virtualenv_create(libexec, "python3", system_site_packages: false)
venv = virtualenv_create(libexec, "python3", system_site_packages: false, without_pip: false)
venv.instance_variable_get(:@formula).system venv.instance_variable_get(:@venv_root)/"bin/python",
"-m", "pip", "install", "pip==22.3.1"
resources.each do |r|
Expand Down
2 changes: 1 addition & 1 deletion Formula/dbt-bigquery@1.5.1.rb
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ class DbtBigqueryAT151 < Formula

def install
ENV["CARGO_NET_GIT_FETCH_WITH_CLI"] = "true"
venv = virtualenv_create(libexec, "python3", system_site_packages: false)
venv = virtualenv_create(libexec, "python3", system_site_packages: false, without_pip: false)
venv.instance_variable_get(:@formula).system venv.instance_variable_get(:@venv_root)/"bin/python",
"-m", "pip", "install", "pip==22.3.1"
resources.each do |r|
Expand Down
2 changes: 1 addition & 1 deletion Formula/dbt-development.rb
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ class DbtDevelopment < Formula

def install
ENV["CARGO_NET_GIT_FETCH_WITH_CLI"] = "true"
venv = virtualenv_create(libexec, "python3", system_site_packages: false)
venv = virtualenv_create(libexec, "python3", system_site_packages: false, without_pip: false)

res = resources.map(&:name).to_set

Expand Down
2 changes: 1 addition & 1 deletion Formula/dbt-postgres@1.0.3.rb
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ class DbtPostgresAT103 < Formula

def install
ENV["CARGO_NET_GIT_FETCH_WITH_CLI"] = "true"
venv = virtualenv_create(libexec, "python3", system_site_packages: false)
venv = virtualenv_create(libexec, "python3", system_site_packages: false, without_pip: false)
venv.instance_variable_get(:@formula).system venv.instance_variable_get(:@venv_root)/"bin/python",
"-m", "pip", "install", "pip==22.3.1"
resources.each do |r|
Expand Down
2 changes: 1 addition & 1 deletion Formula/dbt-postgres@1.0.4.rb
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ class DbtPostgresAT104 < Formula

def install
ENV["CARGO_NET_GIT_FETCH_WITH_CLI"] = "true"
venv = virtualenv_create(libexec, "python3", system_site_packages: false)
venv = virtualenv_create(libexec, "python3", system_site_packages: false, without_pip: false)
venv.instance_variable_get(:@formula).system venv.instance_variable_get(:@venv_root)/"bin/python",
"-m", "pip", "install", "pip==22.3.1"
resources.each do |r|
Expand Down
2 changes: 1 addition & 1 deletion Formula/dbt-postgres@1.0.5.rb
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ class DbtPostgresAT105 < Formula

def install
ENV["CARGO_NET_GIT_FETCH_WITH_CLI"] = "true"
venv = virtualenv_create(libexec, "python3", system_site_packages: false)
venv = virtualenv_create(libexec, "python3", system_site_packages: false, without_pip: false)
venv.instance_variable_get(:@formula).system venv.instance_variable_get(:@venv_root)/"bin/python",
"-m", "pip", "install", "pip==22.3.1"
resources.each do |r|
Expand Down
2 changes: 1 addition & 1 deletion Formula/dbt-postgres@1.0.6.rb
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ class DbtPostgresAT106 < Formula

def install
ENV["CARGO_NET_GIT_FETCH_WITH_CLI"] = "true"
venv = virtualenv_create(libexec, "python3", system_site_packages: false)
venv = virtualenv_create(libexec, "python3", system_site_packages: false, without_pip: false)
venv.instance_variable_get(:@formula).system venv.instance_variable_get(:@venv_root)/"bin/python",
"-m", "pip", "install", "pip==22.3.1"
resources.each do |r|
Expand Down
2 changes: 1 addition & 1 deletion Formula/dbt-postgres@1.0.7.rb
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ class DbtPostgresAT107 < Formula

def install
ENV["CARGO_NET_GIT_FETCH_WITH_CLI"] = "true"
venv = virtualenv_create(libexec, "python3", system_site_packages: false)
venv = virtualenv_create(libexec, "python3", system_site_packages: false, without_pip: false)
venv.instance_variable_get(:@formula).system venv.instance_variable_get(:@venv_root)/"bin/python",
"-m", "pip", "install", "pip==22.3.1"
resources.each do |r|
Expand Down
2 changes: 1 addition & 1 deletion Formula/dbt-postgres@1.1.0-rc1.rb
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ class DbtPostgresAT110Rc1 < Formula

def install
ENV["CARGO_NET_GIT_FETCH_WITH_CLI"] = "true"
venv = virtualenv_create(libexec, "python3", system_site_packages: false)
venv = virtualenv_create(libexec, "python3", system_site_packages: false, without_pip: false)
venv.instance_variable_get(:@formula).system venv.instance_variable_get(:@venv_root)/"bin/python",
"-m", "pip", "install", "pip==22.3.1"
resources.each do |r|
Expand Down
2 changes: 1 addition & 1 deletion Formula/dbt-postgres@1.1.0.rb
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ class DbtPostgresAT110 < Formula

def install
ENV["CARGO_NET_GIT_FETCH_WITH_CLI"] = "true"
venv = virtualenv_create(libexec, "python3", system_site_packages: false)
venv = virtualenv_create(libexec, "python3", system_site_packages: false, without_pip: false)
venv.instance_variable_get(:@formula).system venv.instance_variable_get(:@venv_root)/"bin/python",
"-m", "pip", "install", "pip==22.3.1"
resources.each do |r|
Expand Down
2 changes: 1 addition & 1 deletion Formula/dbt-postgres@1.1.1.rb
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ class DbtPostgresAT111 < Formula

def install
ENV["CARGO_NET_GIT_FETCH_WITH_CLI"] = "true"
venv = virtualenv_create(libexec, "python3", system_site_packages: false)
venv = virtualenv_create(libexec, "python3", system_site_packages: false, without_pip: false)
venv.instance_variable_get(:@formula).system venv.instance_variable_get(:@venv_root)/"bin/python",
"-m", "pip", "install", "pip==22.3.1"
resources.each do |r|
Expand Down
2 changes: 1 addition & 1 deletion Formula/dbt-postgres@1.1.2.rb
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ class DbtPostgresAT112 < Formula

def install
ENV["CARGO_NET_GIT_FETCH_WITH_CLI"] = "true"
venv = virtualenv_create(libexec, "python3", system_site_packages: false)
venv = virtualenv_create(libexec, "python3", system_site_packages: false, without_pip: false)
venv.instance_variable_get(:@formula).system venv.instance_variable_get(:@venv_root)/"bin/python",
"-m", "pip", "install", "pip==22.3.1"
resources.each do |r|
Expand Down
2 changes: 1 addition & 1 deletion Formula/dbt-postgres@1.2.0-rc2.rb
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ class DbtPostgresAT120Rc2 < Formula

def install
ENV["CARGO_NET_GIT_FETCH_WITH_CLI"] = "true"
venv = virtualenv_create(libexec, "python3", system_site_packages: false)
venv = virtualenv_create(libexec, "python3", system_site_packages: false, without_pip: false)
venv.instance_variable_get(:@formula).system venv.instance_variable_get(:@venv_root)/"bin/python",
"-m", "pip", "install", "pip==22.3.1"
resources.each do |r|
Expand Down
2 changes: 1 addition & 1 deletion Formula/dbt-postgres@1.2.0.rb
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ class DbtPostgresAT120 < Formula

def install
ENV["CARGO_NET_GIT_FETCH_WITH_CLI"] = "true"
venv = virtualenv_create(libexec, "python3", system_site_packages: false)
venv = virtualenv_create(libexec, "python3", system_site_packages: false, without_pip: false)
venv.instance_variable_get(:@formula).system venv.instance_variable_get(:@venv_root)/"bin/python",
"-m", "pip", "install", "pip==22.3.1"
resources.each do |r|
Expand Down
2 changes: 1 addition & 1 deletion Formula/dbt-postgres@1.2.1.rb
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ class DbtPostgresAT121 < Formula

def install
ENV["CARGO_NET_GIT_FETCH_WITH_CLI"] = "true"
venv = virtualenv_create(libexec, "python3", system_site_packages: false)
venv = virtualenv_create(libexec, "python3", system_site_packages: false, without_pip: false)
venv.instance_variable_get(:@formula).system venv.instance_variable_get(:@venv_root)/"bin/python",
"-m", "pip", "install", "pip==22.3.1"
resources.each do |r|
Expand Down
2 changes: 1 addition & 1 deletion Formula/dbt-postgres@1.2.2.rb
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ class DbtPostgresAT122 < Formula

def install
ENV["CARGO_NET_GIT_FETCH_WITH_CLI"] = "true"
venv = virtualenv_create(libexec, "python3", system_site_packages: false)
venv = virtualenv_create(libexec, "python3", system_site_packages: false, without_pip: false)
venv.instance_variable_get(:@formula).system venv.instance_variable_get(:@venv_root)/"bin/python",
"-m", "pip", "install", "pip==22.3.1"
resources.each do |r|
Expand Down
2 changes: 1 addition & 1 deletion Formula/dbt-postgres@1.2.3.rb
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ class DbtPostgresAT123 < Formula

def install
ENV["CARGO_NET_GIT_FETCH_WITH_CLI"] = "true"
venv = virtualenv_create(libexec, "python3", system_site_packages: false)
venv = virtualenv_create(libexec, "python3", system_site_packages: false, without_pip: false)
venv.instance_variable_get(:@formula).system venv.instance_variable_get(:@venv_root)/"bin/python",
"-m", "pip", "install", "pip==22.3.1"
resources.each do |r|
Expand Down
2 changes: 1 addition & 1 deletion Formula/dbt-postgres@1.2.5.rb
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ class DbtPostgresAT125 < Formula

def install
ENV["CARGO_NET_GIT_FETCH_WITH_CLI"] = "true"
venv = virtualenv_create(libexec, "python3", system_site_packages: false)
venv = virtualenv_create(libexec, "python3", system_site_packages: false, without_pip: false)
venv.instance_variable_get(:@formula).system venv.instance_variable_get(:@venv_root)/"bin/python",
"-m", "pip", "install", "pip==22.3.1"
resources.each do |r|
Expand Down
2 changes: 1 addition & 1 deletion Formula/dbt-postgres@1.3.0-b1.rb
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ class DbtPostgresAT130B1 < Formula

def install
ENV["CARGO_NET_GIT_FETCH_WITH_CLI"] = "true"
venv = virtualenv_create(libexec, "python3", system_site_packages: false)
venv = virtualenv_create(libexec, "python3", system_site_packages: false, without_pip: false)
venv.instance_variable_get(:@formula).system venv.instance_variable_get(:@venv_root)/"bin/python",
"-m", "pip", "install", "pip==22.3.1"
resources.each do |r|
Expand Down
2 changes: 1 addition & 1 deletion Formula/dbt-postgres@1.3.0-rc2.rb
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ class DbtPostgresAT130Rc2 < Formula

def install
ENV["CARGO_NET_GIT_FETCH_WITH_CLI"] = "true"
venv = virtualenv_create(libexec, "python3", system_site_packages: false)
venv = virtualenv_create(libexec, "python3", system_site_packages: false, without_pip: false)
venv.instance_variable_get(:@formula).system venv.instance_variable_get(:@venv_root)/"bin/python",
"-m", "pip", "install", "pip==22.3.1"
resources.each do |r|
Expand Down
2 changes: 1 addition & 1 deletion Formula/dbt-postgres@1.3.0.rb
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ class DbtPostgresAT130 < Formula

def install
ENV["CARGO_NET_GIT_FETCH_WITH_CLI"] = "true"
venv = virtualenv_create(libexec, "python3", system_site_packages: false)
venv = virtualenv_create(libexec, "python3", system_site_packages: false, without_pip: false)
venv.instance_variable_get(:@formula).system venv.instance_variable_get(:@venv_root)/"bin/python",
"-m", "pip", "install", "pip==22.3.1"
resources.each do |r|
Expand Down
2 changes: 1 addition & 1 deletion Formula/dbt-postgres@1.3.1.rb
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ class DbtPostgresAT131 < Formula

def install
ENV["CARGO_NET_GIT_FETCH_WITH_CLI"] = "true"
venv = virtualenv_create(libexec, "python3", system_site_packages: false)
venv = virtualenv_create(libexec, "python3", system_site_packages: false, without_pip: false)
venv.instance_variable_get(:@formula).system venv.instance_variable_get(:@venv_root)/"bin/python",
"-m", "pip", "install", "pip==22.3.1"
resources.each do |r|
Expand Down
2 changes: 1 addition & 1 deletion Formula/dbt-postgres@1.3.4.rb
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ class DbtPostgresAT134 < Formula

def install
ENV["CARGO_NET_GIT_FETCH_WITH_CLI"] = "true"
venv = virtualenv_create(libexec, "python3", system_site_packages: false)
venv = virtualenv_create(libexec, "python3", system_site_packages: false, without_pip: false)
venv.instance_variable_get(:@formula).system venv.instance_variable_get(:@venv_root)/"bin/python",
"-m", "pip", "install", "pip==22.3.1"
resources.each do |r|
Expand Down
2 changes: 1 addition & 1 deletion Formula/dbt-postgres@1.4.1.rb
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ class DbtPostgresAT141 < Formula

def install
ENV["CARGO_NET_GIT_FETCH_WITH_CLI"] = "true"
venv = virtualenv_create(libexec, "python3", system_site_packages: false)
venv = virtualenv_create(libexec, "python3", system_site_packages: false, without_pip: false)
venv.instance_variable_get(:@formula).system venv.instance_variable_get(:@venv_root)/"bin/python",
"-m", "pip", "install", "pip==22.3.1"
resources.each do |r|
Expand Down
2 changes: 1 addition & 1 deletion Formula/dbt-postgres@1.4.4.rb
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ class DbtPostgresAT144 < Formula

def install
ENV["CARGO_NET_GIT_FETCH_WITH_CLI"] = "true"
venv = virtualenv_create(libexec, "python3", system_site_packages: false)
venv = virtualenv_create(libexec, "python3", system_site_packages: false, without_pip: false)
venv.instance_variable_get(:@formula).system venv.instance_variable_get(:@venv_root)/"bin/python",
"-m", "pip", "install", "pip==22.3.1"
resources.each do |r|
Expand Down
2 changes: 1 addition & 1 deletion Formula/dbt-postgres@1.4.5.rb
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ class DbtPostgresAT145 < Formula

def install
ENV["CARGO_NET_GIT_FETCH_WITH_CLI"] = "true"
venv = virtualenv_create(libexec, "python3", system_site_packages: false)
venv = virtualenv_create(libexec, "python3", system_site_packages: false, without_pip: false)
venv.instance_variable_get(:@formula).system venv.instance_variable_get(:@venv_root)/"bin/python",
"-m", "pip", "install", "pip==22.3.1"
resources.each do |r|
Expand Down
Loading

0 comments on commit 704f973

Please sign in to comment.