Skip to content

boto: drop dependency on types-six #8792

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 26, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion stubs/boto/METADATA.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version = "2.49.*"
requires = ["types-six"]
requires = []
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
requires = []

5 changes: 2 additions & 3 deletions stubs/boto/boto/connection.pyi
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import http.client
from typing import Any

from six.moves import http_client

HAVE_HTTPS_CONNECTION: bool
ON_APP_ENGINE: Any
PORTS_BY_SECURITY: Any
Expand Down Expand Up @@ -40,7 +39,7 @@ class HTTPRequest:
def __init__(self, method, protocol, host, port, path, auth_path, params, headers, body) -> None: ...
def authorize(self, connection, **kwargs): ...

class HTTPResponse(http_client.HTTPResponse):
class HTTPResponse(http.client.HTTPResponse):
def __init__(self, *args, **kwargs) -> None: ...
def read(self, amt: Any | None = ...): ...

Expand Down