Skip to content

Commit e893e06

Browse files
committed
Drop support for alpha versions of Python 3.11
1 parent 8ba8db3 commit e893e06

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

tests/test_pythoncapi_compat.py

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -174,15 +174,6 @@ def main():
174174
global VERBOSE
175175
VERBOSE = ("-v" in sys.argv[1:] or "--verbose" in sys.argv[1:])
176176

177-
# Implementing PyFrame_GetLocals() and PyCode_GetCode() require the
178-
# internal C API in Python 3.11 alpha versions.
179-
# Implementing PyCode_GetVarnames() requires the internal C API
180-
# in Python 3.11 beta versions.
181-
if 0x30b0000 <= sys.hexversion < 0x30b00c1:
182-
version = sys.version.split()[0]
183-
print("SKIP TESTS: Python %s is not supported" % version)
184-
return
185-
186177
if faulthandler is not None:
187178
faulthandler.enable()
188179

0 commit comments

Comments
 (0)