[pypy-commit] pypy py3.5: prepare new release

mattip pypy.commits at gmail.com
Wed Apr 4 12:48:22 EDT 2018


Author: Matti Picus <matti.picus at gmail.com>
Branch: py3.5
Changeset: r94231:2dcc8ff1c4c3
Date: 2018-04-04 19:36 +0300
http://bitbucket.org/pypy/pypy/changeset/2dcc8ff1c4c3/

Log:	prepare new release

diff --git a/pypy/doc/whatsnew-pypy3-head.rst b/pypy/doc/whatsnew-pypy3-head.rst
--- a/pypy/doc/whatsnew-pypy3-head.rst
+++ b/pypy/doc/whatsnew-pypy3-head.rst
@@ -17,3 +17,12 @@
 
 Add missing ``__doc__``, ``__module__``, ``__name__`` attributes to 
 ``instancemethod``
+
+.. branch: winapi
+
+Update support for _winapi cffi module for python3
+
+.. branch: py3.5-refactor-slots
+
+Refactor cpyext slots.
+
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.11.0-alpha0"
-#define PYPY_VERSION_NUM  0x050B0000
+#define PYPY_VERSION "6.1.0-alpha0"
+#define PYPY_VERSION_NUM  0x06010000
 
 /* 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, 11, 0, "alpha", 0)    #XXX # sync patchlevel.h
+PYPY_VERSION               = (6, 1, 0, "alpha", 0)    #XXX # sync patchlevel.h
 
 
 import pypy


More information about the pypy-commit mailing list