# Find your non 3.14 #python, run in folder parent to all your repos
```
from pathlib import Path;import subprocess
g=0;b=[]
for p in Path().cwd().iterdir():
v=p/'.venv'
if v.exists():
e=v/'Scripts/python.exe'if(v/'Scripts/python.exe').exists()else v/'bin/python'
if e.exists():
r=subprocess.run([e,'--version'],capture_output=1,text=1)
if'3.14'in r.stdout:g+=1
else:b.append((p.name,r.stdout.strip()))
else:b.append((p.name,'no py'))
if b:[print('bad:',*b)]
print(f'{g} good')
```
Post
October 7, 2025