aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatti Picus <matti.picus@gmail.com>2023-06-15 12:33:40 +0300
committerMatti Picus <matti.picus@gmail.com>2023-06-15 12:33:40 +0300
commit110175455d9f38964ef61952d6e8398980d16472 (patch)
tree2d64a4671833b39ba41fef7098b5d8b018f29d18
parentmerge py3.10 into release (diff)
downloadpypy-release-pypy3.10-v7.3.12.tar.gz
pypy-release-pypy3.10-v7.3.12.tar.bz2
pypy-release-pypy3.10-v7.3.12.zip
update version for releaserelease-pypy3.10-v7.3.12
-rw-r--r--pypy/module/cpyext/include/patchlevel.h2
-rw-r--r--pypy/module/sys/version.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/pypy/module/cpyext/include/patchlevel.h b/pypy/module/cpyext/include/patchlevel.h
index dad3c767a8..0d60c6d7b9 100644
--- a/pypy/module/cpyext/include/patchlevel.h
+++ b/pypy/module/cpyext/include/patchlevel.h
@@ -32,7 +32,7 @@
* module/sys/version.py
* doc/conf.py
*/
-#define PYPY_VERSION "7.3.12-candidate2"
+#define PYPY_VERSION "7.3.12"
#define PYPY_VERSION_NUM 0x07030c00
/* Defined to mean a PyPy where cpyext holds more regular references
to PyObjects, e.g. staying alive as long as the internal PyPy object
diff --git a/pypy/module/sys/version.py b/pypy/module/sys/version.py
index c0280b3937..a52fba7907 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, 12, "candidate", 2)
+PYPY_VERSION = (7, 3, 12, "final", 0)
import pypy