We used to set `CURL_CA_BUNDLE=""` in order to work properly with self signed certificates as documented in [authlib docs](https://docs.authlib.org/en/latest/client/requests.html?highlight=verify#self-signed-certificate). Python `requests` in version 2.28 removes this method of setting `verify=False` via env variables. Until we find another solution one can ```bash pip install "requests < 2.28" ``` See: - https://github.com/lepture/authlib/issues/474 - https://github.com/psf/requests/issues/6071 - https://github.com/psf/requests/pull/6074