From 093cb386581eed2cb254bdc9e7b60bd5611993fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcin=20D=C4=99bski?= Date: Wed, 8 Mar 2023 22:41:33 +0700 Subject: [PATCH] Fix The httpx command line client could not run because the required dependencies were not installed. Make sure you've installed everything with: pip install 'httpx[cli]' version in setup.cfg --- changelog.md | 1 + setup.cfg | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/changelog.md b/changelog.md index 07316fa..7a553cd 100644 --- a/changelog.md +++ b/changelog.md @@ -10,6 +10,7 @@ All notable changes to this project will be documented in this file. ### Bugfixes - Fix `customer_monitoring_level` parameter in `login` method in agent-api v3.3/v3.4/v3.5 classes. +- Fix `httpx` version in setup.cfg ### Removed diff --git a/setup.cfg b/setup.cfg index 138f46a..fad0a96 100644 --- a/setup.cfg +++ b/setup.cfg @@ -24,7 +24,7 @@ packages = find: python_requires = >=3.6 install_requires = websocket-client==1.2.1 - httpx ==0.19.0 + httpx ==0.23.0 [options.extras_require] httpx = http2