mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-01-23 11:32:07 +08:00
CI: Unpin micro-versions (#10239)
This commit is contained in:
2
.github/workflows/daily.yml
vendored
2
.github/workflows/daily.yml
vendored
@@ -36,7 +36,7 @@ jobs:
|
||||
matrix:
|
||||
# tkinter doesn't import on macOS-12
|
||||
os: ["ubuntu-latest", "windows-latest", "macos-11"]
|
||||
python-version: ["3.7", "3.8", "3.9", "3.10.10", "3.11.2"] # TODO: unpin micro versions
|
||||
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
|
||||
fail-fast: false
|
||||
|
||||
steps:
|
||||
|
||||
2
.github/workflows/stubtest_stdlib.yml
vendored
2
.github/workflows/stubtest_stdlib.yml
vendored
@@ -32,7 +32,7 @@ jobs:
|
||||
matrix:
|
||||
# tkinter doesn't import on macOS 12
|
||||
os: ["ubuntu-latest", "windows-latest", "macos-11"]
|
||||
python-version: ["3.7", "3.8", "3.9", "3.10.10", "3.11.2"] # TODO: unpin micro versions
|
||||
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
|
||||
fail-fast: false
|
||||
|
||||
steps:
|
||||
|
||||
@@ -168,7 +168,10 @@ class Pdb(Bdb, Cmd):
|
||||
def find_function(funcname: str, filename: str) -> tuple[str, str, int] | None: ...
|
||||
def main() -> None: ...
|
||||
def help() -> None: ...
|
||||
def getsourcelines(obj: _SourceObjectType) -> tuple[list[str], int]: ...
|
||||
|
||||
if sys.version_info < (3, 10):
|
||||
def getsourcelines(obj: _SourceObjectType) -> tuple[list[str], int]: ...
|
||||
|
||||
def lasti2lineno(code: CodeType, lasti: int) -> int: ...
|
||||
|
||||
class _rstr(str):
|
||||
|
||||
Reference in New Issue
Block a user