-
Notifications
You must be signed in to change notification settings - Fork 89
Remove requirements-parser and tomli from core requirements #3948
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
Conversation
@@ -25,12 +25,7 @@ jobs: | |||
repository: ${{ github.event.pull_request.head.repo.full_name }} | |||
- name: Install Dependencies | |||
run: | | |||
pip install virtualenv |
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.
virtualenv are unnecessary for CI environments.
Codecov Report
@@ Coverage Diff @@
## main #3948 +/- ##
=====================================
Coverage 99.7% 99.7%
=====================================
Files 347 347
Lines 36755 36755
=====================================
Hits 36625 36625
Misses 130 130
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
@@ -155,12 +155,13 @@ select = [ | |||
# isort | |||
"I001" | |||
] | |||
ignore = ["E501", "D107"] | |||
ignore = ["E501", "D107", "D401"] | |||
src = ["evalml"] | |||
|
|||
[tool.ruff.per-file-ignores] | |||
"__init__.py" = ["E402", "F401", "I001", "E501"] | |||
"evalml/tests/**" = ["D"] |
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.
D means to check for pydocstyle (Python docstring conventions)
This makes it ignore docstrings in these directories.
No description provided.