We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc74e5a commit a8da5f3Copy full SHA for a8da5f3
CHANGES
@@ -1,3 +1,7 @@
1
+0.23.1
2
+------
3
+* Remove `tomli` import. See #630
4
+
5
0.23.0
6
------
7
responses/__init__.py
@@ -26,13 +26,6 @@
26
from warnings import warn
27
28
import yaml
29
-
30
-try:
31
- import tomli as _toml
32
-except ImportError:
33
- # python 3.11
34
- import tomllib as _toml # type: ignore[no-redef] # noqa: F401
35
36
from requests.adapters import HTTPAdapter
37
from requests.adapters import MaxRetryError
38
from requests.exceptions import ConnectionError
0 commit comments