-
Notifications
You must be signed in to change notification settings - Fork 11
Added ELFERROR #82
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
Added ELFERROR #82
Conversation
* Tests fail on python3.7 because of a problem with the importlib_metadata package. The issue was fixed using the workaround suggsted here: python/importlib_metadata#406 (comment)
| typing-extensions>=4.1.0 | ||
| pyelftools~=0.28 | ||
| packaging~=21.2 | ||
| importlib_metadata~=4.8 |
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.
That was added in order to pass the tests (They were broken on master because of this import). See the comment below from the commit for more details:
* Tests fail on python3.7 because of a problem with the importlib_metadata package.
The issue was fixed using the workaround suggested here: https://github.com/python/importlib_metadata/issues/406#issuecomment-1264682770
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.
Well the issue is actually with flake8, so I wouldn't put this in the requirements.txt, I'd put a pip install for this in the CI workflow.
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.
Needed as part of another PR.