Fix a default in pycurl and update apt_dependencies (#9961)

Fix 1 default and update apt dependencies
This commit is contained in:
Avasam
2023-03-28 23:02:36 -04:00
committed by GitHub
parent 87c1b949cd
commit d00bc529fa
2 changed files with 2 additions and 2 deletions

View File

@@ -10,6 +10,6 @@ version = "7.45.2"
# % pip install --compile --install-option="--with-openssl" pycurl
# TODO: Test on Windows and/or MacOS once wheels are available.
platforms = ["linux"]
apt_dependencies = ["libcurl4-openssl-dev"]
apt_dependencies = ["libcurl4-openssl-dev", "libssl-dev"]
# No need to install on the CI. Leaving here as information for MacOS contributors.
# brew_dependencies = ["openssl"]

View File

@@ -39,7 +39,7 @@ class CurlMulti:
def setopt(self, option: int, value: Incomplete) -> None: ...
def perform(self) -> tuple[Incomplete, int]: ...
def fdset(self) -> tuple[list[Incomplete], list[Incomplete], list[Incomplete]]: ...
def select(self, timeout: float = ...) -> int: ...
def select(self, timeout: float) -> int: ...
def info_read(self, max_objects: int = ...) -> tuple[int, list[Incomplete], list[Incomplete]]: ...
def socket_action(self, sockfd: int, ev_bitmask: int) -> tuple[int, int]: ...
def assign(self, __sockfd: int, __socket: Incomplete) -> Incomplete: ...