aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatti Picus <matti.picus@gmail.com>2022-01-22 20:04:34 +0200
committerMatti Picus <matti.picus@gmail.com>2022-01-22 20:04:34 +0200
commit86aa8fb21acb662b2a07f0881039ec59889d144f (patch)
treef5e4d8993619fd1ea8e46ce662720699b842de4d
parentmerge default into release (diff)
downloadpypy-86aa8fb21acb662b2a07f0881039ec59889d144f.tar.gz
pypy-86aa8fb21acb662b2a07f0881039ec59889d144f.tar.bz2
pypy-86aa8fb21acb662b2a07f0881039ec59889d144f.zip
update version to 7.3.8release-pypy2.7-v7.3.8rc1
-rw-r--r--pypy/doc/conf.py4
-rw-r--r--pypy/module/cpyext/include/patchlevel.h4
-rw-r--r--pypy/module/sys/version.py2
3 files changed, 5 insertions, 5 deletions
diff --git a/pypy/doc/conf.py b/pypy/doc/conf.py
index a5c4871b5a..814c062287 100644
--- a/pypy/doc/conf.py
+++ b/pypy/doc/conf.py
@@ -76,7 +76,7 @@ master_doc = 'index'
# General information about the project.
project = u'PyPy'
-copyright = u'2021, The PyPy Project'
+copyright = u'2022, The PyPy Project'
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
@@ -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.6'
+release = '7.3.8'
# 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 f0a67a43ce..4de2e6de6c 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.6"
-#define PYPY_VERSION_NUM 0x07030600
+#define PYPY_VERSION "7.3.8"
+#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 f3df1e3c74..41c57e0dc9 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, 6, "final", 0)
+PYPY_VERSION = (7, 3, 8, "final", 0)
import pypy