We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43288dc commit 3029138Copy full SHA for 3029138
1 file changed
OMPython/OMCSession.py
@@ -414,6 +414,12 @@ def size(self) -> int:
414
415
416
if sys.version_info < (3, 12):
417
+ warnings.warn(
418
+ message="Python < 3.12 - using a limited compatibility class as OMCPath replacement.",
419
+ category=DeprecationWarning,
420
+ stacklevel=1,
421
+ )
422
+
423
class OMCPathCompatibility(pathlib.Path):
424
425
def size(self) -> int:
0 commit comments