Write parsetab file to /tmp instead of the plyproto directory, and bump
version
diff --git a/plyproto/parser.py b/plyproto/parser.py
index bd35528..d0b3e4a 100755
--- a/plyproto/parser.py
+++ b/plyproto/parser.py
@@ -489,7 +489,7 @@
 
     def __init__(self):
         self.lexer = lex.lex(module=ProtobufLexer())#, optimize=1)
-        self.parser = yacc.yacc(module=ProtobufParser(), start='goal', debug=0)#optimize=1)
+        self.parser = yacc.yacc(module=ProtobufParser(), start='goal', debug=0, outputdir='/tmp')#optimize=1)
 
     def tokenize_string(self, code):
         self.lexer.input(code)