diff options
author | Matti Picus <matti.picus@gmail.com> | 2022-11-21 12:38:11 +0200 |
---|---|---|
committer | Matti Picus <matti.picus@gmail.com> | 2022-11-21 12:38:11 +0200 |
commit | 5c59ab64562a32ea3e4267a362ef302b9dea85dc (patch) | |
tree | 66b5282a2a8815074222ad2d803bae48b58b5930 | |
parent | merge py3.8 into release3.8 (diff) | |
download | pypy-5c59ab64562a32ea3e4267a362ef302b9dea85dc.tar.gz pypy-5c59ab64562a32ea3e4267a362ef302b9dea85dc.tar.bz2 pypy-5c59ab64562a32ea3e4267a362ef302b9dea85dc.zip |
make this rc1
-rw-r--r-- | pypy/doc/conf.py | 2 | ||||
-rw-r--r-- | pypy/module/cpyext/include/patchlevel.h | 4 | ||||
-rw-r--r-- | pypy/module/sys/version.py | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/pypy/doc/conf.py b/pypy/doc/conf.py index a3542c0cd5..9f2d09172d 100644 --- a/pypy/doc/conf.py +++ b/pypy/doc/conf.py @@ -89,7 +89,7 @@ copyright = u'2022, The PyPy Project' # The short X.Y version. version = '7.3' # The full version, including alpha/beta/rc tags. -release = '7.3.9' +release = '7.3.10' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pypy/module/cpyext/include/patchlevel.h b/pypy/module/cpyext/include/patchlevel.h index b85d8be801..b7cfd58c9c 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.9" -#define PYPY_VERSION_NUM 0x07030900 +#define PYPY_VERSION "7.3.10-candidate1" +#define PYPY_VERSION_NUM 0x07030a00 /* 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 3dad4ffc6b..523cb6ae48 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, 3, 9, "final", 0) +PYPY_VERSION = (7, 3, 10, "candidate", 1) import pypy |