diff options
| author | mo khan <mo.khan@gmail.com> | 2020-11-10 01:30:35 +0000 |
|---|---|---|
| committer | mo khan <mo.khan@gmail.com> | 2020-11-10 01:30:35 +0000 |
| commit | 82338d974f42149e70f9163567940453f8f18b79 (patch) | |
| tree | 8f61c9dccbd468de456e516113e9d6f289a7a157 /config/software/asdf_python.rb | |
| parent | f8200b265f63173c9b8d0b26470b449f512dbd17 (diff) | |
fix: detect maven wrapper in sub directory
* chore: fix bin scripts
Diffstat (limited to 'config/software/asdf_python.rb')
| -rw-r--r-- | config/software/asdf_python.rb | 8 |
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 |
