From 82338d974f42149e70f9163567940453f8f18b79 Mon Sep 17 00:00:00 2001 From: mo khan Date: Tue, 10 Nov 2020 01:30:35 +0000 Subject: fix: detect maven wrapper in sub directory * chore: fix bin scripts --- config/software/asdf_python.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'config/software') 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 -- cgit v1.2.3