[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.
This commit is contained in:
Luis González
2019-10-25 22:53:26 +00:00
parent dbff457c05
commit 5ddcc991af
2 changed files with 1 additions and 3 deletions

View File

@@ -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:

View File

@@ -1 +1,2 @@
zpl2>=1.1
pycups==1.9.73