diff options
-rw-r--r-- | pypy/module/cpyext/include/patchlevel.h | 4 | ||||
-rw-r--r-- | pypy/module/sys/version.py | 2 | ||||
-rw-r--r-- | rpython/doc/conf.py | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/pypy/module/cpyext/include/patchlevel.h b/pypy/module/cpyext/include/patchlevel.h index 52e1cf0294..4995991767 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.15" -#define PYPY_VERSION_NUM 0x07030f00 +#define PYPY_VERSION "7.3.16" +#define PYPY_VERSION_NUM 0x07031000 /* 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 613d696e0b..c56d3bdc5a 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, 15, "final", 0) +PYPY_VERSION = (7, 3, 16, "final", 0) import pypy pypydir = pypy.pypydir diff --git a/rpython/doc/conf.py b/rpython/doc/conf.py index 22f4fb4a81..fdf5064334 100644 --- a/rpython/doc/conf.py +++ b/rpython/doc/conf.py @@ -82,7 +82,7 @@ copyright = u'2024, The PyPy Project' # The short X.Y version. version = '7.3' # The full version, including alpha/beta/rc tags. -release = '7.3.13' +release = '7.3.16' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. |