diff --git a/debugwand/attacher.py b/debugwand/attacher.py index 3705eda..8ab5288 100644 --- a/debugwand/attacher.py +++ b/debugwand/attacher.py @@ -26,9 +26,9 @@ def main(): try: # Use sys.remote_exec to inject the script into the target process - # New in Python 3.14, no stubs yet + # New in Python 3.14! # https://docs.python.org/3/library/sys.html#sys.remote_exec - sys.remote_exec(args.pid, args.script) # type: ignore + sys.remote_exec(args.pid, args.script) except AttributeError as e: print(f"ERROR: sys.remote_exec not available: {e}") diff --git a/pyproject.toml b/pyproject.toml index 49d3d2b..3cb788d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -52,7 +52,7 @@ path = "debugwand/__init__.py" [tool.pyright] include = ["debugwand"] typeCheckingMode = "strict" -pythonVersion = "3.13" +pythonVersion = "3.14" reportMissingTypeStubs = false [tool.ruff]