-
Notifications
You must be signed in to change notification settings - Fork 3
chore: move deps from requirements-dev.txt
to pyproject.toml
#68
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,5 +7,4 @@ | |
tasks: | ||
- init: | | ||
python -m pip install --upgrade pip | ||
pip install . | ||
pip install -r requirements-dev.txt | ||
pip install .[dev] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Update the local development documentation to reflect the new dependency installation command using the optional 'dev' group. Copilot uses AI. Check for mistakes. Positive FeedbackNegative Feedback |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,8 +44,12 @@ clang-tidy-hook = "cpp_linter_hooks.clang_tidy:main" | |
source = "https://github.com/cpp-linter/cpp-linter-hooks" | ||
tracker = "https://github.com/cpp-linter/cpp-linter-hooks/issues" | ||
|
||
# ... other project metadata fields as specified in: | ||
# https://packaging.python.org/en/latest/specifications/declaring-project-metadata/ | ||
[project.optional-dependencies] | ||
dev = [ | ||
"coverage", | ||
"pre-commit", | ||
"pytest", | ||
] | ||
Comment on lines
+47
to
+52
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🛠️ Refactor suggestion Add 🤖 Prompt for AI Agents
|
||
|
||
[tool.setuptools] | ||
zip-safe = false | ||
|
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ensure the CI/CD documentation is updated to capture the change from requirements-dev.txt to the new installation command using the 'dev' group.
Copilot uses AI. Check for mistakes.