Skip to content

Commit

Permalink
Fix Python 3.6 url
Browse files Browse the repository at this point in the history
  • Loading branch information
tersmitten committed Feb 7, 2022
1 parent be4094f commit 3e6b565
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,13 @@
- _python_version.stdout is version('3.5', '>=')
- _python_version.stdout is version('3.6', '<')

- name: get download url (3.6)
set_fact:
pip_download_url: 'https://bootstrap.pypa.io/pip/3.6/get-pip.py'
when:
- _python_version.stdout is version('3.6', '>=')
- _python_version.stdout is version('3.7', '<')

- name: get download url (latest)
set_fact:
pip_download_url: 'https://bootstrap.pypa.io/pip/get-pip.py'
Expand Down

0 comments on commit 3e6b565

Please sign in to comment.