Skip to content

Commit 8f943de

Browse files
committed
chore: add Python build artifacts to gitignore
- Ignore .venv/, __pycache__/, and Python compiled files - Ignore compiled .so files in python/ directory
1 parent 7185b3a commit 8f943de

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,14 @@ index.d.ts
1313
# npm pack tarballs
1414
*.tgz
1515

16+
# Python
17+
.venv/
18+
__pycache__/
19+
*.pyc
20+
*.pyo
21+
*.egg-info/
22+
python/**/*.so
23+
1624
# Compiled binaries
1725
guest-examples/hello-c
1826
guest-examples/hello-cpp

0 commit comments

Comments
 (0)