Author: Matti Picus <matti.pi...@gmail.com>
Branch: release-pypy3.6-v7.x
Changeset: r96345:de061d87e39c
Date: 2019-03-24 23:44 +0200
http://bitbucket.org/pypy/pypy/changeset/de061d87e39c/

Log:    fix version minor number

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
@@ -32,8 +32,8 @@
  *     module/sys/version.py
  *     doc/conf.py
  */
-#define PYPY_VERSION "7.2.0-beta0"
-#define PYPY_VERSION_NUM  0x07020000
+#define PYPY_VERSION "7.1.0-beta0"
+#define PYPY_VERSION_NUM  0x07010000
 /* 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
--- a/pypy/module/sys/version.py
+++ b/pypy/module/sys/version.py
@@ -13,7 +13,7 @@
 # make sure to keep PYPY_VERSION in sync with:
 #    module/cpyext/include/patchlevel.h
 #    doc/conf.py
-PYPY_VERSION               = (7, 2, 0, "beta", 0)
+PYPY_VERSION               = (7, 1, 0, "beta", 0)
 
 
 import pypy
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to