Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
Contributor
☂️ Python Coverage
Overall Coverage
New FilesNo new covered files... Modified FilesNo covered modified files...
|
kaihsin
requested changes
Nov 6, 2025
Comment on lines
+77
to
+83
| extras = [ | ||
| "lark>=1.2.2", | ||
| "cirq-core>=1.4.1", | ||
| "cirq-core[contrib]>=1.4.1", | ||
| "qpsolvers[clarabel]>=4.7.0", | ||
| "stim>=1.15.0", | ||
| ] |
Contributor
There was a problem hiding this comment.
- also maybe avoid extras as key because uv use
--extrasas flag - you can actually do this:
extras = [
"bloqade-circuit[qasm, stim, cirq]"
]
dev = [
{include-group = "extras"},
"black>=24.10.0",
"coverage>=7.6.4",
"ipython>=8.29.0",
"isort>=5.13.2",
"mypy>=1.13.0",
"numpy>=1.26.4",
"pre-commit>=4.0.1",
"pyright>=1.1.388",
"pytest>=8.3.3",
"ruff>=0.7.3",
"rust-just>=1.36.0",
"tomlkit>=0.13.2",
]
Then this is also pip compatible (your solution here with default group only work for uv
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.
This ensures
uv syncinstalls all dependencies required for the unit tests.It's not ideal because some dependencies are now duplicated, but I'm not aware of a method to reference optional dependencies (extras) in uv groups.