-
Notifications
You must be signed in to change notification settings - Fork 273
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
Upgrade to python3.10 #1493
Upgrade to python3.10 #1493
Conversation
7a7d5d1
to
32d5271
Compare
CC @andreafioraldi Fixes #1490 |
Well I'm trying to build python3.10 and now it can't use SSL. I wonder if Ubuntu 16 is tool old to build 3.10. May need to wait on: #1441 |
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, but should we also updated https://google.github.io/fuzzbench/getting-started/prerequisites/#python-programming-language ?
@@ -241,14 +241,12 @@ def pytype(paths: List[Path]) -> bool: | |||
"""Run pytype on |path| if it is a python file. Return False if it fails | |||
type checking.""" | |||
paths = [path for path in paths if is_python(path)] | |||
if not paths: |
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.
Is this (and the print below) an intentional change?
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.
Yeah. We don't need this early bail out. The print wasn't intended though.
This is included in #1526 : ) |
No description provided.