diff options
author | Masood Malekghassemi <soltanmm@users.noreply.github.com> | 2015-04-07 11:03:11 -0700 |
---|---|---|
committer | Masood Malekghassemi <soltanmm@users.noreply.github.com> | 2015-04-07 11:05:35 -0700 |
commit | 2b34e5adf180fae100609d1efdcf8c7a8c6b6f18 (patch) | |
tree | 4f2ff3788b9c93a9e2eb724fb0aded6a276b7bb1 | |
parent | 451887ba2c366091f0cff96d0d71752a557223c0 (diff) |
Version update to 0.5.0
-rw-r--r-- | src/python/src/setup.py | 2 | ||||
-rwxr-xr-x | tools/distrib/python/submit.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/python/src/setup.py b/src/python/src/setup.py index a6924b27c3..1e45a8e8d5 100644 --- a/src/python/src/setup.py +++ b/src/python/src/setup.py @@ -83,7 +83,7 @@ _PACKAGE_DIRECTORIES = { setuptools.setup( name='grpcio', - version='0.4.0a8', + version='0.5.0a0', ext_modules=[_EXTENSION_MODULE], packages=list(_PACKAGES), package_dir=_PACKAGE_DIRECTORIES, diff --git a/tools/distrib/python/submit.py b/tools/distrib/python/submit.py index 5d8a917365..79ebb93e57 100755 --- a/tools/distrib/python/submit.py +++ b/tools/distrib/python/submit.py @@ -40,7 +40,7 @@ except: # Make the push. cmd = ['python', 'setup.py', 'sdist'] -subprocess.call(cmd) +subprocess.call(cmd, cwd=pkgdir) cmd = ['twine', 'upload', '-r', args.repository] if args.identity is not None: |