File tree Expand file tree Collapse file tree 1 file changed +13
-12
lines changed
Expand file tree Collapse file tree 1 file changed +13
-12
lines changed Original file line number Diff line number Diff line change @@ -111,18 +111,19 @@ def __init__(
111111
112112 # checking compilation and automatic batching
113113 # compile disambled for windows and py>=3.14
114- if (
115- compile is None
116- or sys .platform == "win32"
117- or sys .version_info >= (3 , 14 )
118- ):
119- compile = False
120- raise KeyError
121- warnings .warn (
122- "Compilation is disabled for Python 3.14+. "
123- "Compilation is also disabled for Windows 3.2." ,
124- UserWarning ,
125- )
114+ compile = False
115+ # if (
116+ # compile is None
117+ # or sys.platform == "win32"
118+ # or sys.version_info >= (3, 14)
119+ # ):
120+ # compile = False
121+ # raise KeyError
122+ # warnings.warn(
123+ # "Compilation is disabled for Python 3.14+. "
124+ # "Compilation is also disabled for Windows 3.2.",
125+ # UserWarning,
126+ # )
126127
127128 repeat = repeat if repeat is not None else False
128129
You can’t perform that action at this time.
0 commit comments