chore: add .project_modules.txt for repo-specific modules#123
Merged
Conversation
List diff_holdings and embeddings as first-party modules so sync_test_dependencies.py doesn't flag them as undeclared. This file survives workflow syncs, preventing recurring CI breakage. Requires: stranske/Workflows#441
Contributor
|
Status | ✅ no new diagnostics |
Contributor
🤖 Keepalive Loop StatusPR #123 | Agent: Codex | Iteration 0/5 Current State
🔍 Failure Classification| Error type | infrastructure | |
Contributor
There was a problem hiding this comment.
Pull request overview
This PR adds a .project_modules.txt configuration file to declare repo-specific first-party modules that exist outside the standard package structure, preventing them from being flagged as undeclared dependencies during CI workflow syncs.
- Adds
.project_modules.txtwithdiff_holdingsandembeddingsmodule declarations - Prevents recurring CI failures caused by auto-detection excluding root-level Python files
This was referenced Jan 1, 2026
This was referenced Mar 2, 2026
This was referenced Mar 2, 2026
This was referenced Mar 2, 2026
2 tasks
2 tasks
2 tasks
2 tasks
This was referenced Mar 3, 2026
This was referenced Mar 9, 2026
This was referenced Mar 15, 2026
This was referenced Mar 16, 2026
This was referenced Mar 24, 2026
This was referenced Mar 30, 2026
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
Adds
.project_modules.txtto specify repo-specific first-party modules that should not be flagged as undeclared dependencies.Problem
diff_holdings.pyandembeddings.pyare standalone Python files in the repo root. Thesync_test_dependencies.pyscript excludes root-level .py files from auto-detection, so they get flagged as undeclared dependencies.This has caused recurring CI failures after workflow syncs.
Solution
Create
.project_modules.txtwith:Requires: stranske/Workflows#441 (adds support for reading this file)
Once Workflows#441 is merged and synced, this file will prevent future breakage.