diff options
author | Matti Picus <matti.picus@gmail.com> | 2019-03-24 23:44:54 +0200 |
---|---|---|
committer | Matti Picus <matti.picus@gmail.com> | 2019-03-24 23:44:54 +0200 |
commit | 2e21633c765ef015a8ff5d432b5aa1fbc09c0736 (patch) | |
tree | c4240ee04acbd819900fb37f9a300b52f35f9bb6 | |
parent | merge py3.6 into release (diff) | |
download | pypy-2e21633c765ef015a8ff5d432b5aa1fbc09c0736.tar.gz pypy-2e21633c765ef015a8ff5d432b5aa1fbc09c0736.tar.bz2 pypy-2e21633c765ef015a8ff5d432b5aa1fbc09c0736.zip |
fix version minor numberrelease-pypy3.6-v7.1.0
-rw-r--r-- | pypy/module/cpyext/include/patchlevel.h | 4 | ||||
-rw-r--r-- | pypy/module/sys/version.py | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/pypy/module/cpyext/include/patchlevel.h b/pypy/module/cpyext/include/patchlevel.h index 94819ff92f..55cfff769e 100644 --- a/pypy/module/cpyext/include/patchlevel.h +++ b/pypy/module/cpyext/include/patchlevel.h @@ -32,8 +32,8 @@ * module/sys/version.py * doc/conf.py */ -#define PYPY_VERSION "7.2.0-beta0" -#define PYPY_VERSION_NUM 0x07020000 +#define PYPY_VERSION "7.1.0-beta0" +#define PYPY_VERSION_NUM 0x07010000 /* Defined to mean a PyPy where cpyext holds more regular references to PyObjects, e.g. staying alive as long as the internal PyPy object stays alive. */ diff --git a/pypy/module/sys/version.py b/pypy/module/sys/version.py index e750a79b8b..852dd176fb 100644 --- a/pypy/module/sys/version.py +++ b/pypy/module/sys/version.py @@ -13,7 +13,7 @@ CPYTHON_API_VERSION = 1013 #XXX # sync with include/modsupport.h # make sure to keep PYPY_VERSION in sync with: # module/cpyext/include/patchlevel.h # doc/conf.py -PYPY_VERSION = (7, 2, 0, "beta", 0) +PYPY_VERSION = (7, 1, 0, "beta", 0) import pypy |