Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(336)

Side by Side Diff: bootstrap/custom_builds/pytz.py

Issue 381043002: Add a virtualenv-based python bootstrapping service to infra. (Closed) Base URL: https://chromium.googlesource.com/infra/infra@master
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 import os
2 import subprocess
3
4 def Build(source_path, wheelhouse_path):
5 subprocess.check_call(
6 ['make', 'CFLAGS=-DSTD_INSPIRED', '.stamp-tzinfo'], cwd=source_path)
7
8 path = os.path.join(source_path, 'src')
9 subprocess.check_call(
10 ['python', 'setup.py', 'bdist_wheel', '--dist-dir', wheelhouse_path],
11 cwd=path)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698