From a4bfb7db916ba5623441939f34da2d8d7e07309d Mon Sep 17 00:00:00 2001 From: Jerry Vonau Date: Fri, 14 Feb 2020 01:04:45 -0600 Subject: [PATCH] python 3.7 > 3 --- roles/calibre-web/tasks/install.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/roles/calibre-web/tasks/install.yml b/roles/calibre-web/tasks/install.yml index 8dc484165..05557a611 100644 --- a/roles/calibre-web/tasks/install.yml +++ b/roles/calibre-web/tasks/install.yml @@ -42,13 +42,12 @@ # ignore_errors: True ## # Implementing this with Ansible command module for now. -- name: Download Calibre-Web dependencies (using pip) into python3.7 virtual environment {{ calibreweb_venv_path }} +- name: Download Calibre-Web dependencies (using pip) into python3 virtual environment {{ calibreweb_venv_path }} pip: requirements: "{{ calibreweb_venv_path }}/requirements.txt" virtualenv: "{{ calibreweb_venv_path }}" # /usr/local/calibre-web-py3 virtualenv_site_packages: no virtualenv_command: python3 -m venv {{ calibreweb_venv_path }} -# virtualenv_python: python3.7 when: internet_available | bool - name: Install /etc/systemd/system/calibre-web.service from template