From 5ddcc991af609e61803ad025a25703d6091060d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20Gonz=C3=A1lez?= Date: Fri, 25 Oct 2019 22:53:26 +0000 Subject: [PATCH] [FIX] .travis.yml,requirements.txt: Move python deps to the right place Currently, some Python dependencies are being installed manually from the `.travis.yml` file, using pip install python_package Not only that way is a bad practice, but also prevents those Python modules to be retrieved when an Odoo module is installed via MQT. In addition, the modules `requests` and `PyPDF2` are removed, as they already are in Odoo's requirements. --- .travis.yml | 3 --- requirements.txt | 1 + 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index ddec44e..dbfa8fe 100644 --- a/.travis.yml +++ b/.travis.yml @@ -35,9 +35,6 @@ install: - git clone --depth=1 https://github.com/OCA/maintainer-quality-tools.git ${HOME}/maintainer-quality-tools - export PATH=${HOME}/maintainer-quality-tools/travis:${PATH} - travis_install_nightly - - pip install pycups==1.9.73 - - pip install PyPDF2==1.18 - - pip install requests - git clone https://github.com/OCA/reporting-engine -b ${VERSION} $HOME/reporting-engine script: diff --git a/requirements.txt b/requirements.txt index 23a3638..4bcd339 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1,2 @@ zpl2>=1.1 +pycups==1.9.73