-
Notifications
You must be signed in to change notification settings - Fork 7
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
[WIP] Windows support #481
Conversation
…, replace 0.0.0.0 with 127.0.0.1 for auth
…, replace 0.0.0.0 with 127.0.0.1 for auth
image: Visual Studio 2015 | ||
|
||
environment: | ||
# ensure Python 3.6 is first in path |
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.
minor. 3.6
or 3.7
? the path below has Python37
.
@@ -163,6 +164,10 @@ def help(ctx: click.Context, command: Sequence[str]) -> None: | |||
|
|||
|
|||
def main(args: Optional[List[str]] = None) -> None: | |||
if sys.platform == "win32": |
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.
minor. should we extract a constant and reuse throughout?
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.
The constant is obvious, send contained, and will never change.
I think using strings for such cases is pretty satisfactory.
Implemented by #548 |
This PR contains the following changes: