Skip to content

Commit d5207e0

Browse files
committed
chore: Remove virtual environment from version control and update .gitignore
- Remove accidentally committed .venv_ci/ directory (287MB) from git tracking - Add comprehensive virtual environment ignore patterns to .gitignore - Ignore all common virtual environment directories: .venv/, .venv_ci/, venv/, env/, ENV/, env.bak/, venv.bak/ - Prevent future accidental commits of virtual environments and dependencies - Follows best practice of not tracking virtual environments in version control
1 parent 233ea21 commit d5207e0

File tree

10,108 files changed

+32
-2582199
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

10,108 files changed

+32
-2582199
lines changed

.gitignore

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -279,6 +279,38 @@ MSG*.bin
279279
# python
280280
*.pyc
281281

282+
# Python Virtual Environments (all variants)
283+
.venv/
284+
.venv_*/
285+
venv/
286+
venv_*/
287+
env/
288+
env_*/
289+
.env/
290+
.pyenv/
291+
pyvenv.cfg
292+
site-packages/
293+
294+
# Python package management
295+
__pycache__/
296+
*.py[cod]
297+
*$py.class
298+
dist/
299+
build/
300+
*.egg-info/
301+
*.egg
302+
.eggs/
303+
.tox/
304+
.pytest_cache/
305+
.mypy_cache/
306+
.coverage
307+
htmlcov/
308+
.cache
309+
nosetests.xml
310+
coverage.xml
311+
*.cover
312+
.hypothesis/
313+
282314
**/Generated Files/
283315
**/Merged/*
284316
**/Unmerged/*
Binary file not shown.

.venv_ci/lib/python3.12/site-packages/MarkupSafe-3.0.2.dist-info/INSTALLER

Lines changed: 0 additions & 1 deletion
This file was deleted.

.venv_ci/lib/python3.12/site-packages/MarkupSafe-3.0.2.dist-info/LICENSE.txt

Lines changed: 0 additions & 28 deletions
This file was deleted.

.venv_ci/lib/python3.12/site-packages/MarkupSafe-3.0.2.dist-info/METADATA

Lines changed: 0 additions & 92 deletions
This file was deleted.

.venv_ci/lib/python3.12/site-packages/MarkupSafe-3.0.2.dist-info/RECORD

Lines changed: 0 additions & 14 deletions
This file was deleted.

.venv_ci/lib/python3.12/site-packages/MarkupSafe-3.0.2.dist-info/WHEEL

Lines changed: 0 additions & 5 deletions
This file was deleted.

.venv_ci/lib/python3.12/site-packages/MarkupSafe-3.0.2.dist-info/top_level.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

.venv_ci/lib/python3.12/site-packages/PyYAML-6.0.2.dist-info/INSTALLER

Lines changed: 0 additions & 1 deletion
This file was deleted.

.venv_ci/lib/python3.12/site-packages/PyYAML-6.0.2.dist-info/LICENSE

Lines changed: 0 additions & 20 deletions
This file was deleted.

0 commit comments

Comments
 (0)