[pypy-commit] pypy release-pypy3.5-5.x: update version to 5.8.0 beta

mattip pypy.commits at gmail.com
Tue May 30 09:53:19 EDT 2017


Author: Matti Picus <matti.picus at gmail.com>
Branch: release-pypy3.5-5.x
Changeset: r91452:60728ba1c887
Date: 2017-05-30 16:36 +0300
http://bitbucket.org/pypy/pypy/changeset/60728ba1c887/

Log:	update version to 5.8.0 beta

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
@@ -29,8 +29,8 @@
 #define PY_VERSION		"3.5.3"
 
 /* PyPy version as a string */
-#define PYPY_VERSION "5.7.1-beta0"
-#define PYPY_VERSION_NUM  0x05070100
+#define PYPY_VERSION "5.8.0-beta0"
+#define PYPY_VERSION_NUM  0x05080000
 
 /* Defined to mean a PyPy where cpyext holds more regular references
    to PyObjects, e.g. staying alive as long as the internal PyPy object
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
@@ -10,7 +10,7 @@
 #XXX # sync CPYTHON_VERSION with patchlevel.h, package.py
 CPYTHON_API_VERSION        = 1013   #XXX # sync with include/modsupport.h
 
-PYPY_VERSION               = (5, 7, 1, "beta", 0)    #XXX # sync patchlevel.h
+PYPY_VERSION               = (5, 8, 0, "beta", 0)    #XXX # sync patchlevel.h
 
 
 import pypy


More information about the pypy-commit mailing list