Spaces:
Running on Zero
Running on Zero
Daryl Lim Claude Opus 4.8 (1M context) commited on
Commit ·
9bd40fb
1
Parent(s): 639e59b
chore: ignore non-default venv directory names
Browse filesAdd venv/, env/, and *-env/ so virtualenvs created under names other
than .venv (e.g. the gradio-env/ seen earlier) cannot be accidentally
committed.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
- .gitignore +3 -0
.gitignore
CHANGED
|
@@ -2,6 +2,9 @@
|
|
| 2 |
__pycache__/
|
| 3 |
*.pyc
|
| 4 |
.venv/
|
|
|
|
|
|
|
|
|
|
| 5 |
uv.lock
|
| 6 |
|
| 7 |
# Testing
|
|
|
|
| 2 |
__pycache__/
|
| 3 |
*.pyc
|
| 4 |
.venv/
|
| 5 |
+
venv/
|
| 6 |
+
env/
|
| 7 |
+
*-env/
|
| 8 |
uv.lock
|
| 9 |
|
| 10 |
# Testing
|