From fd367e20c8222a78bb68333dedbad7b283985a2c Mon Sep 17 00:00:00 2001 From: Nathan Weinberg <31703736+nathan-weinberg@users.noreply.github.com> Date: Mon, 3 Feb 2025 14:53:05 -0500 Subject: [PATCH] github: ignore non-hidden python virtual environments (#939) # What does this PR do? the llama-stack repo is already ignoring hidden python `.venv/` directories but not `venv/` - [ ] Addresses issue (#issue) ## Test Plan N/A ## Sources N/A ## Before submitting - [ ] This PR fixes a typo or improves the docs (you can dismiss the other checks if that's the case). - [x] Ran pre-commit to handle lint / formatting issues. - [x] Read the [contributor guideline](https://github.com/meta-llama/llama-stack/blob/main/CONTRIBUTING.md), Pull Request section? - [x] Updated relevant documentation. - [x] Wrote necessary unit or integration tests. Signed-off-by: Nathan Weinberg --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 421ff4db1..f54d1563d 100644 --- a/.gitignore +++ b/.gitignore @@ -19,3 +19,4 @@ Package.resolved _build docs/src pyrightconfig.json +venv/