[pypy-commit] pypy py3k: adjust per py3k's lib-python scheme

pjenvey noreply at buildbot.pypy.org
Wed Apr 24 06:27:32 CEST 2013


Author: Philip Jenvey <pjenvey at underboss.org>
Branch: py3k
Changeset: r63583:d8cebf136b5f
Date: 2013-04-23 21:26 -0700
http://bitbucket.org/pypy/pypy/changeset/d8cebf136b5f/

Log:	adjust per py3k's lib-python scheme

diff --git a/pypy/tool/release/test/test_package.py b/pypy/tool/release/test/test_package.py
--- a/pypy/tool/release/test/test_package.py
+++ b/pypy/tool/release/test/test_package.py
@@ -26,7 +26,7 @@
         builddir = package.package(py.path.local(pypydir).dirpath(), test,
                                    rename_pypy_c)
         prefix = builddir.join(test)
-        cpyver = '%d.%d' % CPYTHON_VERSION[:2]
+        cpyver = '%d' % CPYTHON_VERSION[0]
         assert prefix.join('lib-python', cpyver, 'test').check()
         assert prefix.join(exe_name_in_archive).check()
         assert prefix.join('lib_pypy', 'syslog.py').check()


More information about the pypy-commit mailing list