diff options
author | 2022-07-09 22:27:11 +0400 | |
---|---|---|
committer | 2022-07-11 04:17:42 +0400 | |
commit | c24ccccde65cd8d5601ade63e47f2167ba64b5ee (patch) | |
tree | 9909f7faf3d88f86fddc98d179152b9d03585e2b /pyproject.toml | |
parent | Merge #722 - resources: add The Algorithms and remove Atom (diff) |
Switch Out requests For httpx
The requests library has been replaced by httpx. It's a drop-in
replacement, but provides a better interface for certain things,
such as client sessions, and sync/async support.
Signed-off-by: Hassan Abouelela <[email protected]>
Diffstat (limited to '')
-rw-r--r-- | pyproject.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyproject.toml b/pyproject.toml index b350836e..01e7eda2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,7 +14,7 @@ djangorestframework = "~=3.12.0" psycopg2-binary = "~=2.8.0" django-simple-bulma = "~=2.4" whitenoise = "~=5.0" -requests = "~=2.21" +httpx = "~=0.23.0" pyyaml = "~=5.1" gunicorn = "~=20.0.4" sentry-sdk = "~=0.19" |