Skip to content

Commit

Permalink
httpx upgrade comment
Browse files Browse the repository at this point in the history
  • Loading branch information
ansibleguy committed Jan 20, 2024
1 parent c7e66b2 commit f2e4f7d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion docs/source/usage/1_install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ The `httpx python module <https://www.python-httpx.org/>`_ is used for API commu

.. code-block:: bash
python3 -m pip install httpx
python3 -m pip install --upgrade httpx
Collection
Expand Down
2 changes: 1 addition & 1 deletion plugins/module_utils/base/handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'"
)

0 comments on commit f2e4f7d

Please sign in to comment.