Author: Philip Jenvey <pjen...@underboss.org>
Branch: py3.3
Changeset: r72486:ff5661747625
Date: 2014-07-25 13:11 -0700
http://bitbucket.org/pypy/pypy/changeset/ff5661747625/

Log:    fix the version

diff --git a/pypy/module/cpyext/include/patchlevel.h 
b/pypy/module/cpyext/include/patchlevel.h
--- a/pypy/module/cpyext/include/patchlevel.h
+++ b/pypy/module/cpyext/include/patchlevel.h
@@ -20,13 +20,13 @@
 
 /* Version parsed out into numeric values */
 #define PY_MAJOR_VERSION       3
-#define PY_MINOR_VERSION       2
+#define PY_MINOR_VERSION       3
 #define PY_MICRO_VERSION       5
 #define PY_RELEASE_LEVEL       PY_RELEASE_LEVEL_FINAL
 #define PY_RELEASE_SERIAL      0
 
 /* Version as a string */
-#define PY_VERSION             "3.2.5"
+#define PY_VERSION             "3.3.5"
 
 /* PyPy version as a string */
 #define PYPY_VERSION "2.4.0-alpha0"
diff --git a/pypy/module/sys/version.py b/pypy/module/sys/version.py
--- a/pypy/module/sys/version.py
+++ b/pypy/module/sys/version.py
@@ -6,7 +6,7 @@
 from pypy.interpreter import gateway
 
 #XXX # the release serial 42 is not in range(16)
-CPYTHON_VERSION            = (3, 2, 5, "final", 0)
+CPYTHON_VERSION            = (3, 3, 5, "final", 0)
 #XXX # sync CPYTHON_VERSION with patchlevel.h, package.py
 CPYTHON_API_VERSION        = 1013   #XXX # sync with include/modsupport.h
 
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to