c3749daf48
Tests / test-windows (push) Waiting to run
Tests / test-macos (push) Waiting to run
Tests / test-linux (3.13) (push) Failing after 0s
Tests / test-linux (3.11) (push) Failing after 1s
Tests / lint (push) Failing after 0s
Tests / test-linux (3.9) (push) Failing after 1s
Docker / build (push) Failing after 1s
Docker / build-gpu (push) Failing after 2s
56 lines
640 B
Plaintext
56 lines
640 B
Plaintext
# Keep the build context lean — only what `uv sync` + the package need.
|
|
|
|
# VCS
|
|
.git/
|
|
.gitignore
|
|
|
|
# Python build artifacts / caches
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
__pycache__/
|
|
*.pyc
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
htmlcov/
|
|
.coverage
|
|
coverage.xml
|
|
|
|
# Virtual environments (rebuilt inside the image)
|
|
.venv/
|
|
venv/
|
|
|
|
# Local config / secrets
|
|
.env
|
|
.env.*
|
|
.envrc
|
|
mempal.yaml
|
|
|
|
# Editor / OS cruft
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Repo material not needed at runtime
|
|
.devcontainer/
|
|
.github/
|
|
.agents/
|
|
.claude/
|
|
.codex/
|
|
.codex-plugin/
|
|
.claude-plugin/
|
|
benchmarks/
|
|
docs/
|
|
website/
|
|
landing/
|
|
assets/
|
|
examples/
|
|
tests/
|
|
*.md
|
|
!README.md
|