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 34e389d commit d381a4cCopy full SHA for d381a4c
1 file changed
src/omnipkg/cli.py
@@ -45,15 +45,6 @@ def _dbg(msg: str):
45
if _DBG:
46
print(f"[DEBUG-CLI] {msg}", file=sys.stderr, flush=True)
47
48
-# Debug path resolution
49
-_dbg(f"__file__ = {__file__}")
50
-_dbg(f"Path(__file__).resolve() = {Path(__file__).resolve()}")
51
-_dbg(f"Path(__file__).resolve().parent = {Path(__file__).resolve().parent}")
52
-_dbg(f"TESTS_DIR = {TESTS_DIR}")
53
-_dbg(f"TESTS_DIR.exists() = {TESTS_DIR.exists()}")
54
-if TESTS_DIR.exists():
55
- _dbg(f"TESTS_DIR contents: {list(TESTS_DIR.glob('*.py'))[:5]}") # First 5 files
56
-
57
_VERSION_CACHE: dict = {} # exe_path -> (major, minor)
58
59
def get_actual_python_version(cm=None):
0 commit comments