[pypy-commit] pypy py3.7: Update Python version numbers

rlamy pypy.commits at gmail.com
Thu Aug 29 10:15:37 EDT 2019


Author: Ronan Lamy <ronan.lamy at gmail.com>
Branch: py3.7
Changeset: r97330:0354a250d371
Date: 2019-08-29 15:13 +0100
http://bitbucket.org/pypy/pypy/changeset/0354a250d371/

Log:	Update Python version numbers

diff --git a/pypy/module/cpyext/include/patchlevel.h b/pypy/module/cpyext/include/patchlevel.h
--- a/pypy/module/cpyext/include/patchlevel.h
+++ b/pypy/module/cpyext/include/patchlevel.h
@@ -20,13 +20,13 @@
 
 /* Version parsed out into numeric values */
 #define PY_MAJOR_VERSION	3
-#define PY_MINOR_VERSION	6
-#define PY_MICRO_VERSION	9
+#define PY_MINOR_VERSION	7
+#define PY_MICRO_VERSION	4
 #define PY_RELEASE_LEVEL	PY_RELEASE_LEVEL_FINAL
 #define PY_RELEASE_SERIAL	0
 
 /* Version as a string */
-#define PY_VERSION		"3.6.9"
+#define PY_VERSION		"3.7.4"
 
 /* PyPy version as a string: make sure to keep this in sync with:
  *     module/sys/version.py
diff --git a/pypy/module/sys/version.py b/pypy/module/sys/version.py
--- a/pypy/module/sys/version.py
+++ b/pypy/module/sys/version.py
@@ -6,7 +6,7 @@
 from pypy.interpreter import gateway
 
 #XXX # the release serial 42 is not in range(16)
-CPYTHON_VERSION            = (3, 6, 9, "final", 0)
+CPYTHON_VERSION            = (3, 7, 4, "final", 0)
 #XXX # sync CPYTHON_VERSION with patchlevel.h, package.py
 CPYTHON_API_VERSION        = 1013   #XXX # sync with include/modsupport.h
 


More information about the pypy-commit mailing list