[pypy-commit] pypy default: Update the version number.

arigo noreply at buildbot.pypy.org
Wed Feb 13 12:17:36 CET 2013


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r61172:281597744e2a
Date: 2013-02-13 12:17 +0100
http://bitbucket.org/pypy/pypy/changeset/281597744e2a/

Log:	Update the version number.

diff --git a/pypy/module/_cffi_backend/__init__.py b/pypy/module/_cffi_backend/__init__.py
--- a/pypy/module/_cffi_backend/__init__.py
+++ b/pypy/module/_cffi_backend/__init__.py
@@ -7,7 +7,7 @@
     appleveldefs = {
         }
     interpleveldefs = {
-        '__version__': 'space.wrap("0.4")',
+        '__version__': 'space.wrap("0.6")',
 
         'load_library': 'libraryobj.load_library',
 
diff --git a/pypy/module/_cffi_backend/test/_backend_test_c.py b/pypy/module/_cffi_backend/test/_backend_test_c.py
--- a/pypy/module/_cffi_backend/test/_backend_test_c.py
+++ b/pypy/module/_cffi_backend/test/_backend_test_c.py
@@ -2728,3 +2728,7 @@
     d = newp(BShortArray, [40, 50])
     c[1:3] = d
     assert list(c) == [0, 40, 50, 30, 0]
+
+def test_version():
+    # this test is here mostly for PyPy
+    assert __version__ == "0.6"


More information about the pypy-commit mailing list