Skip to content

Commit

Permalink
Tweak upload-pypi.py script
Browse files Browse the repository at this point in the history
  • Loading branch information
Guido van Rossum committed Nov 10, 2017
1 parent 71f1764 commit 9587bfa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions misc/upload-pypi.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def build_and_upload(self) -> None:
self.upload_wheel()
self.upload_sdist()
self.heading('Successfully uploaded wheel and sdist for mypy {}'.format(self.version))
print("<< Don't forget to upload Windows wheels! >>")
print("<< All done! >>")
else:
self.heading('Successfully built wheel and sdist for mypy {}'.format(self.version))
dist_dir = os.path.join(self.repo_dir, 'dist')
Expand Down Expand Up @@ -105,7 +105,7 @@ def git_check_out_tag(self) -> None:

def make_virtualenv(self) -> None:
self.heading('Creating a fresh virtualenv')
self.run('virtualenv -p {} mypy-venv'.format(sys.executable))
self.run('python3 -m virtualenv -p {} mypy-venv'.format(sys.executable))

def install_dependencies(self) -> None:
self.heading('Installing build dependencies')
Expand Down

0 comments on commit 9587bfa

Please sign in to comment.