diff options
Diffstat (limited to 'config/software')
| -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 |
