Skip to content

Commit 22dbab5

Browse files
chore: update .gitignore, remove update-requirements.yml
- Add .pytest_cache/, .ruff_cache/, .mypy_cache/ to gitignore - Add common Python build/test artifacts - Remove obsolete update-requirements.yml workflow Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 84400ff commit 22dbab5

2 files changed

Lines changed: 43 additions & 30 deletions

File tree

.github/update-requirements.yml

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

.gitignore

Lines changed: 43 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,47 @@
11
.env
2-
# Ignore .DS_Store files anywhere in the repository
2+
.env.*
3+
*.csv
4+
5+
# OS
36
.DS_Store
47
**/.DS_Store
5-
*.csv
6-
venv/
8+
9+
# Python
710
__pycache__/
8-
..bfg-report
11+
*.py[cod]
12+
*$py.class
13+
*.so
14+
.Python
15+
build/
16+
dist/
17+
*.egg-info/
18+
*.egg
19+
.eggs/
20+
21+
# Virtual environments
22+
venv/
23+
.venv/
24+
env/
25+
26+
# Testing
27+
.pytest_cache/
28+
.coverage
29+
htmlcov/
30+
.tox/
31+
.nox/
32+
33+
# Linting/formatting
34+
.ruff_cache/
35+
.mypy_cache/
36+
37+
# IDE
38+
.idea/
39+
.vscode/
40+
*.swp
41+
*.swo
42+
43+
# Build artifacts
44+
*.whl
45+
46+
# Misc
47+
.bfg-report/

0 commit comments

Comments
 (0)