fix: Updated with pre-commit errors fix#25
Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: fb283d5a74
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| anndata = ">=0.7.5" | ||
| black = {version = ">=20.8b1", optional = true} | ||
| cmap2d = {git = "https://github.com/cane11/cmap2d", tag = "v1.0"} | ||
| cmap2d = {git = "https://github.com/cane11/cmap2d", tag = "master"} |
There was a problem hiding this comment.
Switch cmap2d ref to a branch or immutable tag
tag = "master" makes Poetry resolve a git tag named master, not the moving branch head. In environments where cane11/cmap2d has a master branch but no master tag, dependency resolution fails during install/lock, blocking fresh environment setup. Use branch = "master" if you intend the branch, or pin a real release tag/commit for reproducible installs.
Useful? React with 👍 / 👎.
No description provided.