aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/python
diff options
context:
space:
mode:
authorGravatar Masood Malekghassemi <soltanmm@users.noreply.github.com>2015-06-02 17:30:56 -0700
committerGravatar Masood Malekghassemi <soltanmm@users.noreply.github.com>2015-06-03 17:44:28 -0700
commit0f4c6a2fb8fdb57a09f28e4220d0138f0372a663 (patch)
tree658532a7006dd045d336fb9f1b54109b653f3f2b /src/python
parent5dedc9883dbe14f0e2687343a3e02a5d4c2809d4 (diff)
Upgrade protobuf, Python version number
Diffstat (limited to 'src/python')
-rw-r--r--src/python/requirements.txt2
-rw-r--r--src/python/src/setup.py4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/python/requirements.txt b/src/python/requirements.txt
index d32d436d3c..43395df03b 100644
--- a/src/python/requirements.txt
+++ b/src/python/requirements.txt
@@ -1,3 +1,3 @@
enum34==1.0.4
futures==2.2.0
-protobuf==3.0.0a2
+protobuf==3.0.0a3
diff --git a/src/python/src/setup.py b/src/python/src/setup.py
index dc655a70f9..5398b09936 100644
--- a/src/python/src/setup.py
+++ b/src/python/src/setup.py
@@ -86,13 +86,13 @@ _PACKAGE_DIRECTORIES = {
setuptools.setup(
name='grpcio',
- version='0.9.0a0',
+ version='0.9.0a1',
ext_modules=[_EXTENSION_MODULE],
packages=list(_PACKAGES),
package_dir=_PACKAGE_DIRECTORIES,
install_requires=[
'enum34==1.0.4',
'futures==2.2.0',
- 'protobuf==3.0.0a2'
+ 'protobuf==3.0.0a3'
]
)