diff --git a/README.md b/README.md index ccc22777..79fdd0f4 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ Functional Test Logs: [Short](https://badges.ansibleguy.net/log/collection_opnse The [httpx python module](https://www.python-httpx.org/) is used for API communications! ```bash -python3 -m pip install httpx +python3 -m pip install --upgrade httpx ``` Then - install the collection itself: diff --git a/docs/source/usage/1_install.rst b/docs/source/usage/1_install.rst index c172d951..1a9c2192 100644 --- a/docs/source/usage/1_install.rst +++ b/docs/source/usage/1_install.rst @@ -19,7 +19,7 @@ The `httpx python module `_ is used for API commu .. code-block:: bash - python3 -m pip install httpx + python3 -m pip install --upgrade httpx Collection diff --git a/plugins/module_utils/base/handler.py b/plugins/module_utils/base/handler.py index 24d584ba..5b8c3933 100644 --- a/plugins/module_utils/base/handler.py +++ b/plugins/module_utils/base/handler.py @@ -31,5 +31,5 @@ def exit_cnf(msg: str): def module_dependency_error() -> None: exit_env( 'For this Ansible-module to work you must install its dependencies first: ' - "'python3 -m pip install httpx'" + "'python3 -m pip install --upgrade httpx'" )