From d285b884bca2bc3b34d9edb99caa2a889586bd60 Mon Sep 17 00:00:00 2001 From: julien Date: Wed, 16 Oct 2019 18:12:27 +0200 Subject: [PATCH 1/2] No need to install dependencies manually, setup.py does it for you --- .travis.yml | 2 -- README.rst | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 5897409..ad102d3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,7 +9,5 @@ python: - "3.7" install: - "python setup.py install" - - "pip install -U pip" - - "pip install pyyaml ua-parser" script: - python -m unittest discover diff --git a/README.rst b/README.rst index 18417f4..6aab770 100644 --- a/README.rst +++ b/README.rst @@ -27,7 +27,7 @@ as such: :: - pip install pyyaml ua-parser user-agents + pip install user-agents Alternatively, you can also get the latest source code from Github_ and install it manually. From 00d79ac6b8d3b78665cb1f125a24cdd9165bdbd0 Mon Sep 17 00:00:00 2001 From: julien Date: Wed, 16 Oct 2019 18:15:05 +0200 Subject: [PATCH 2/2] Added instructions for manual installation from sources --- README.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.rst b/README.rst index 6aab770..536babb 100644 --- a/README.rst +++ b/README.rst @@ -32,6 +32,10 @@ as such: Alternatively, you can also get the latest source code from Github_ and install it manually. +:: + + python setup.py install + .. _Github: https://github.com/selwin/python-user-agents Usage