-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
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
CLN: Removed all occurances of goal_time
and enabled linting for benchmarks
#23265
CLN: Removed all occurances of goal_time
and enabled linting for benchmarks
#23265
Conversation
Had to remove an unused imports to make lint pass.
Hello @eriknil! Thanks for submitting the PR.
|
goal_time
and enabled linting for benchmarksgoal_time
and enabled linting for benchmarks
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.
lgtm @datapythonista
doc/source/whatsnew/v0.24.0.txt
Outdated
@@ -203,6 +203,7 @@ Other Enhancements | |||
- :meth:`Index.to_frame` now supports overriding column name(s) (:issue:`22580`). | |||
- New attribute :attr:`__git_version__` will return git commit sha of current build (:issue:`21295`). | |||
- Compatibility with Matplotlib 3.0 (:issue:`22790`). | |||
- Asv benchmarks are no longer excluded when running flake8 and occurrences of the benchmark directive `goal_time` has been removed. (:issue:`23075`). |
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.
Typically internal cleanups don't need a whatsnew, though I'm not against this as is
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.
yea this can be removed
thanks @eriknil |
git diff upstream/master -u -- "*.py" | flake8 --diff
The following changes were made:
goal_time
have been removed. Runninggrep -rnw asv_bench/benchmarks/ -e goal_time --include "*.py"
should no longer return anything.setup.cfg
asv_bench/benchmarks/io/excel.py
to pass flake8.