aboutsummaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
Diffstat (limited to 'python')
-rw-r--r--python/README.txt8
-rwxr-xr-xpython/setup.py2
2 files changed, 9 insertions, 1 deletions
diff --git a/python/README.txt b/python/README.txt
index 4f68d506..96f1a734 100644
--- a/python/README.txt
+++ b/python/README.txt
@@ -15,6 +15,14 @@ Python part of the code. In this case, you will need to obtain the
Protocol Compiler from some other source before you can use this
package.
+Development Warning
+===================
+
+The Python implementation of Protocol Buffers is not as mature as the C++
+and Java implementations. It may be more buggy, and it is known to be
+pretty slow at this time. If you would like to help fix these issues,
+join the Protocol Buffers discussion list and let us know!
+
Installation
============
diff --git a/python/setup.py b/python/setup.py
index e109ee75..638ee277 100755
--- a/python/setup.py
+++ b/python/setup.py
@@ -97,7 +97,7 @@ if __name__ == '__main__':
generate_proto("../src/google/protobuf/descriptor.proto")
setup(name = 'protobuf',
- version = '2.0.1-SNAPSHOT',
+ version = '2.0.1',
packages = [ 'google' ],
namespace_packages = [ 'google' ],
test_suite = 'setup.MakeTestSuite',