summaryrefslogtreecommitdiff
path: root/config/software/asdf_python.rb
diff options
context:
space:
mode:
authormo khan <mo.khan@gmail.com>2020-11-10 01:30:35 +0000
committermo khan <mo.khan@gmail.com>2020-11-10 01:30:35 +0000
commit1bc270fea3b352b44dfcef3fe16e97a2bbd4d7a5 (patch)
tree8f61c9dccbd468de456e516113e9d6f289a7a157 /config/software/asdf_python.rb
parentf8200b265f63173c9b8d0b26470b449f512dbd17 (diff)
parent82338d974f42149e70f9163567940453f8f18b79 (diff)
Merge branch '273155-recursive' into 'main'v3.28.2
Detect maven/gradle wrapper in sub directory See merge request gitlab-org/security-products/analyzers/license-finder!15
Diffstat (limited to 'config/software/asdf_python.rb')
-rw-r--r--config/software/asdf_python.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/config/software/asdf_python.rb b/config/software/asdf_python.rb
index 68cfd68..c5bb728 100644
--- a/config/software/asdf_python.rb
+++ b/config/software/asdf_python.rb
@@ -65,15 +65,15 @@ build do
when /^3\.3\./
command "curl https://bootstrap.pypa.io/3.3/get-pip.py -o #{project_dir}/get-pip.py", env: env
command "#{install_dir}/bin/python #{project_dir}/get-pip.py \"pip==10.0.1\"", env: env
- command "#{install_dir}/bin/pip install pipenv virtualenv", env: env
+ command "#{install_dir}/bin/pip install pipenv==2018.6.25 virtualenv==16.0.0", env: env
when /^3\.4\./
- command "#{install_dir}/bin/pip install pipenv==11.1.6 virtualenv", env: env
+ command "#{install_dir}/bin/pip install pipenv==11.1.6 virtualenv==20.0.33", env: env
when /^2\.7\./
command "curl https://bootstrap.pypa.io/2.6/get-pip.py -o #{project_dir}/get-pip.py", env: env
command "#{install_dir}/bin/python #{project_dir}/get-pip.py \"pip<20.0\"", env: env
- command "#{install_dir}/bin/pip install pipenv virtualenv", env: env
+ command "#{install_dir}/bin/pip install pipenv==2020.8.13 virtualenv==20.0.33", env: env
else
- command "#{install_dir}/bin/pip install pipenv virtualenv", env: env
+ command "#{install_dir}/bin/pip install pipenv==2020.8.13 virtualenv==20.0.33", env: env
end
if version == default_version