Skip to content

Commit 70b830e

Browse files
committed
Add .gitignore to avoid tracking python-generated files
Avoids tracking pre-compiled python files that are created in the course of running the tests or examples for the first time.
1 parent 68e8759 commit 70b830e

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.gitignore

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Python-generated files
2+
__pycache__/
3+
*.py[oc]
4+
build/
5+
dist/
6+
wheels/
7+
*.egg-info
8+
9+
# Virtual environments
10+
.venv

0 commit comments

Comments
 (0)