aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatti Picus <matti.picus@gmail.com>2022-03-03 18:32:37 +0200
committerMatti Picus <matti.picus@gmail.com>2022-03-03 18:32:37 +0200
commit507d2cd2481fd741cb69b2a9e215ccce2494cb28 (patch)
treea1eb6176b1bc5b51bec4569906406a9dc51d661b
parentadd pypy3.7.exe (issue 3693) (diff)
downloadpypy-507d2cd2481fd741cb69b2a9e215ccce2494cb28.tar.gz
pypy-507d2cd2481fd741cb69b2a9e215ccce2494cb28.tar.bz2
pypy-507d2cd2481fd741cb69b2a9e215ccce2494cb28.zip
update main development version to 7.3.10
-rw-r--r--pypy/doc/conf.py2
-rw-r--r--pypy/module/cpyext/include/patchlevel.h4
-rw-r--r--pypy/module/sys/version.py2
3 files changed, 4 insertions, 4 deletions
diff --git a/pypy/doc/conf.py b/pypy/doc/conf.py
index d0ffc292e6..2408ed51aa 100644
--- a/pypy/doc/conf.py
+++ b/pypy/doc/conf.py
@@ -90,7 +90,7 @@ copyright = u'2021, 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 a43a18e748..27b4cf9fac 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-alpha0"
-#define PYPY_VERSION_NUM 0x07030900
+#define PYPY_VERSION "7.3.10-alpha0"
+#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 f616935bad..fec8d22c35 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, "alpha", 0)
+PYPY_VERSION = (7, 3, 10, "alpha", 0)
import pypy