-
Notifications
You must be signed in to change notification settings - Fork 181
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
BUG: Fix compare and continuous #1421
Conversation
cmd = ["in-dir={env_dir} python -mpip install {wheel_file}"] | ||
# --force-reinstall is needed since versions may not change between | ||
# asv runs (esp. for compare), e.g. gh-1421 | ||
cmd = ["in-dir={env_dir} python -mpip install {wheel_file} --force-reinstall"] |
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.
--force-reinstall
(basically the same as pip uninstall && pip install
is used here, but -I
might also be the "right thing to do" for testing commits as long as the files have not changed.
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.
I'd have also been open to simply documenting the fix described in #1417 (comment) but it seems like an issue a lot of people might have.
I think it is fine to drop pypy3.8. It is no longer supported, and tests are timing out. |
Co-authored-by: mattip <mattip@users.noreply.github.com>
Makes sense, should be good to go now. |
Thanks @HaoZeke |
Closes #1417. Closes #1414 by improving the usage documentation.