Skip to content
This repository has been archived by the owner on Dec 6, 2024. It is now read-only.

Commit

Permalink
Updated the way requests is imported
Browse files Browse the repository at this point in the history
Botocore has deprecated the vendored version:
https://aws.amazon.com/blogs/developer/removing-the-vendored-version-of-requests-from-botocore/

If this is not merged, deployments in recent python runtimes will cause
failures.
  • Loading branch information
Ludvig Janiuk committed Feb 17, 2021
1 parent 8d298d6 commit a910392
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import string
import logging
import threading
from botocore.vendored import requests
import requests
import json
from botocore.credentials import (
AssumeRoleCredentialFetcher,
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
requests

0 comments on commit a910392

Please sign in to comment.