mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 21:46:42 +08:00
Use 3.11 instead of 3.11-dev (#8983)
This commit is contained in:
2
.github/workflows/daily.yml
vendored
2
.github/workflows/daily.yml
vendored
@@ -21,7 +21,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", "3.11-dev"]
|
||||
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
@@ -31,7 +31,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", "3.11-dev"]
|
||||
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
|
||||
fail-fast: false
|
||||
|
||||
steps:
|
||||
|
||||
@@ -13,6 +13,12 @@ builtins.float.__setformat__ # Internal method for CPython test suite
|
||||
builtins.property.__set_name__ # Doesn't actually exist
|
||||
contextlib.AbstractAsyncContextManager.__class_getitem__
|
||||
contextlib.AbstractContextManager.__class_getitem__
|
||||
# Missing from distutils module (deprecated, to be removed in 3.12)
|
||||
distutils.core.DEBUG
|
||||
distutils.core.USAGE
|
||||
distutils.core.extension_keywords
|
||||
distutils.core.gen_usage
|
||||
distutils.core.setup_keywords
|
||||
fractions.Fraction.__new__ # overload is too complicated for stubtest to resolve
|
||||
gettext.install
|
||||
gettext.translation
|
||||
|
||||
@@ -78,6 +78,11 @@ distutils.cygwinccompiler.RE_VERSION
|
||||
distutils.dist.command_re
|
||||
distutils.fancy_getopt.longopt_re
|
||||
distutils.fancy_getopt.neg_alias_re
|
||||
distutils.core.DEBUG
|
||||
distutils.core.USAGE
|
||||
distutils.core.extension_keywords
|
||||
distutils.core.gen_usage
|
||||
distutils.core.setup_keywords
|
||||
dummy_threading.Lock
|
||||
dummy_threading.RLock
|
||||
dummy_threading.stack_size
|
||||
|
||||
@@ -32,6 +32,11 @@ collections.KeysView.__reversed__
|
||||
collections.ValuesView.__reversed__
|
||||
collections.Mapping.__reversed__ # Set to None at runtime for a better error message
|
||||
distutils.command.bdist_wininst # see #6523
|
||||
distutils.core.DEBUG
|
||||
distutils.core.USAGE
|
||||
distutils.core.extension_keywords
|
||||
distutils.core.gen_usage
|
||||
distutils.core.setup_keywords
|
||||
dummy_threading.Condition.acquire
|
||||
dummy_threading.Condition.release
|
||||
dummy_threading.Event.isSet
|
||||
|
||||
@@ -32,6 +32,11 @@ collections.ValuesView.__reversed__
|
||||
contextlib.AbstractAsyncContextManager.__class_getitem__
|
||||
contextlib.AbstractContextManager.__class_getitem__
|
||||
distutils.command.bdist_wininst # see #6523
|
||||
distutils.core.DEBUG
|
||||
distutils.core.USAGE
|
||||
distutils.core.extension_keywords
|
||||
distutils.core.gen_usage
|
||||
distutils.core.setup_keywords
|
||||
fractions.Fraction.__new__ # overload is too complicated for stubtest to resolve
|
||||
gettext.install
|
||||
gettext.translation
|
||||
|
||||
Reference in New Issue
Block a user