mirror of
https://github.com/iiab/iiab.git
synced 2025-03-09 15:40:17 +00:00
Merge pull request #3149 from jvonau/lok_39
BUGFIX - lokole - pin python3 package versions to support older flask package
This commit is contained in:
commit
35b0c7e3b2
1 changed files with 12 additions and 0 deletions
|
@ -23,6 +23,18 @@
|
|||
- wvdial
|
||||
state: present
|
||||
|
||||
- name: "workarounds for older flask version used"
|
||||
pip:
|
||||
name: "{{ item.name }}"
|
||||
version: "{{ item.version }}"
|
||||
virtualenv: "{{ lokole_venv }}"
|
||||
virtualenv_command: python3 -m venv "{{ lokole_venv }}"
|
||||
extra_args: --no-cache-dir # To avoid caching issues e.g. soon after new releases hit https://pypi.org/project/opwen-email-client/
|
||||
with_items:
|
||||
- { name: 'itsdangerous', version: '2.0.1' }
|
||||
- { name: 'Jinja2', version: '3.0.3' }
|
||||
|
||||
|
||||
# For development purposes -- To install Lokole from a given commit, add the
|
||||
# following line to roles/lokole/defaults/main.yml:
|
||||
# lokole_commit: <git_commit_id>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue