We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 256ac9d commit aef5dd0Copy full SHA for aef5dd0
pina/trainer.py
@@ -104,7 +104,12 @@ def __init__(
104
super().__init__(**kwargs)
105
106
# checking compilation and automatic batching
107
- if compile is None or sys.platform == "win32":
+ # compile disambled for windows and py>3.13
108
+ if (
109
+ compile is None
110
+ or sys.platform == "win32"
111
+ or sys.version_info > (3, 13)
112
+ ):
113
compile = False
114
115
repeat = repeat if repeat is not None else False
0 commit comments