Repo cleanup and code housekeeping#11
Merged
drewburchfield merged 3 commits intomasterfrom Apr 3, 2026
Merged
Conversation
NAS-994: Repo structure cleanup - Consolidate mypy.ini into pyproject.toml [tool.mypy] - Remove requirements.txt, add dependencies to pyproject.toml - Update Dockerfile to use pyproject.toml instead of requirements.txt - Remove tests/ from production Docker image - Move .obsidian-graph.conf.example to docs/ - Move diagnose_vault.py from src/ to scripts/ - Add .mypy_cache/ and .ruff_cache/ to .gitignore - Remove vestigial HNSW env vars from docker-compose.yml - Fix CHANGELOG: merge two [Unreleased] sections, add recent PR notes NAS-996: Code housekeeping - Remove oachatbot references from vector_store.py and indexer.py - Fix type annotation: cause: Exception | None = None - Remove deprecated event_loop fixture from conftest.py - Use timezone-aware datetime.now(UTC) in test fixtures - Fix test_refresh_lock to actually test lock serialization
- Dockerfile: install deps only (not package) to avoid PYTHONPATH conflict - README: remove vestigial HNSW env var documentation - conftest.py: update docstring (remove event_loop reference, fix project name) - test_hub_analyzer: rewrite lock test to directly test serialization
CI workflow still referenced requirements.txt after it was removed. Updated lint and test jobs to install deps from pyproject.toml.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fixes NAS-994, NAS-996
Test plan