Skip to content

Commit

Permalink
Merge pull request #242 from lemberg/issue/241-get-pip-url-change
Browse files Browse the repository at this point in the history
Use correct url for the get-pip.py script
  • Loading branch information
T2L committed Mar 12, 2021
2 parents 34c81b5 + 27ddf4a commit c9ac904
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ Updates:
* t2l.java (1.3.1 => 1.3.2)
* t2l.solr (2.2.1 => 2.2.2)

Fixes:

- [GH-241](https://github.com/lemberg/draft-environment/issues/241) - Use correct url for the get-pip.py script

## Draft Environment 3.3.1 (2021-02-03)

Updates:
Expand Down
2 changes: 1 addition & 1 deletion Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
# provisioner.

# Use PiP version < 21 for Ubuntu 16.04.
get_pip_url = configuration.get("vagrant.box") === "ubuntu/xenial64" ? "https://bootstrap.pypa.io/3.5/get-pip.py" : "https://bootstrap.pypa.io/get-pip.py"
get_pip_url = configuration.get("vagrant.box") === "ubuntu/xenial64" ? "https://bootstrap.pypa.io/pip/3.5/get-pip.py" : "https://bootstrap.pypa.io/pip/get-pip.py"

config.vm.provision "ansible_local" do |ansible|
ansible.become = true
Expand Down

0 comments on commit c9ac904

Please sign in to comment.