[pypy-commit] pypy default: fix the version

antocuni pypy.commits at gmail.com
Fri Jan 25 10:44:51 EST 2019


Author: Antonio Cuni <anto.cuni at gmail.com>
Branch: 
Changeset: r95727:a5bef2990aeb
Date: 2019-01-25 16:36 +0100
http://bitbucket.org/pypy/pypy/changeset/a5bef2990aeb/

Log:	fix the version

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,7 +32,7 @@
  *     module/sys/version.py
  *     doc/conf.py
  */
-#define PYPY_VERSION "7.1.0"
+#define PYPY_VERSION "7.1.0-alpha0"
 #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
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, 1, 0, "alpha0", 0)
+PYPY_VERSION               = (7, 1, 0, "alpha", 0)
 
 
 import pypy


More information about the pypy-commit mailing list