Unpin Python 3.13 and 3.14 (#15634)

This commit is contained in:
Sebastian Rittau
2026-04-08 15:18:56 +02:00
committed by GitHub
parent 86e2b8518e
commit 09525f9325
7 changed files with 71 additions and 5 deletions
+30 -1
View File
@@ -1532,7 +1532,36 @@ else:
def WSTOPSIG(status: int) -> int: ...
def WTERMSIG(status: int) -> int: ...
if sys.version_info >= (3, 13):
if sys.version_info >= (3, 15):
def posix_spawn(
path: StrOrBytesPath,
argv: _ExecVArgs,
env: _ExecEnv | None,
/,
*,
file_actions: Sequence[tuple[Any, ...]] | None = (),
setpgroup: int | None = None, # None allowed starting in 3.15
resetids: bool = False,
setsid: bool = False,
setsigmask: Iterable[int] = (),
setsigdef: Iterable[int] = (),
scheduler: tuple[Any, sched_param] | None = None, # None allowed starting in 3.15
) -> int: ...
def posix_spawnp(
path: StrOrBytesPath,
argv: _ExecVArgs,
env: _ExecEnv | None,
/,
*,
file_actions: Sequence[tuple[Any, ...]] | None = (),
setpgroup: int | None = None, # None allowed starting in 3.15
resetids: bool = False,
setsid: bool = False,
setsigmask: Iterable[int] = (),
setsigdef: Iterable[int] = (),
scheduler: tuple[Any, sched_param] | None = None, # None allowed starting in 3.15
) -> int: ...
elif sys.version_info >= (3, 13):
def posix_spawn(
path: StrOrBytesPath,
argv: _ExecVArgs,