From 714393fcea65fa91cc593d8967ddd408bb5ad9e8 Mon Sep 17 00:00:00 2001 From: Vadim Kravcenko Date: Tue, 13 Dec 2016 15:28:18 +0100 Subject: [PATCH] missing parameter for proxy --- README.rst | 2 +- pipreqs/__init__.py | 2 +- pipreqs/pipreqs.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index aaf31e4..8d2f394 100644 --- a/README.rst +++ b/README.rst @@ -39,7 +39,7 @@ Usage Options: --use-local Use ONLY local package info instead of querying PyPI --pypi-server Use custom PyPi server - --proxy Use Proxy, parameter will be passed to requests library. You can also just set the + --proxy Use Proxy, parameter will be passed to requests library. You can also just set the environments parameter in your terminal: $ export HTTP_PROXY="http://10.10.1.10:3128" $ export HTTPS_PROXY="https://10.10.1.10:1080" diff --git a/pipreqs/__init__.py b/pipreqs/__init__.py index 3355f5d..9899d20 100755 --- a/pipreqs/__init__.py +++ b/pipreqs/__init__.py @@ -2,4 +2,4 @@ __author__ = 'Vadim Kravcenko' __email__ = 'vadim.kravcenko@gmail.com' -__version__ = '0.4.5' +__version__ = '0.4.6' diff --git a/pipreqs/pipreqs.py b/pipreqs/pipreqs.py index 7f4b2b8..b8e6450 100755 --- a/pipreqs/pipreqs.py +++ b/pipreqs/pipreqs.py @@ -8,7 +8,7 @@ Usage: Options: --use-local Use ONLY local package info instead of querying PyPI --pypi-server Use custom PyPi server - --proxy Use Proxy, parameter will be passed to requests library. You can also just set the + --proxy Use Proxy, parameter will be passed to requests library. You can also just set the environments parameter in your terminal: $ export HTTP_PROXY="http://10.10.1.10:3128" $ export HTTPS_PROXY="https://10.10.1.10:1080"