diff options
-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 11823ad7bd..2438cce07e 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.3.8" -#define PYPY_VERSION_NUM 0x070308C0 +#define PYPY_VERSION "7.3.8-candidate2" +#define PYPY_VERSION_NUM 0x07030800 /* 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 76dad36dad..4b054d6715 100644 --- a/pypy/module/sys/version.py +++ b/pypy/module/sys/version.py @@ -15,7 +15,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, 3, 8, "candidate", 0) +PYPY_VERSION = (7, 3, 8, "candidate", 2) import pypy |