[pypy-commit] pypy py3k: issue1796: default the packaged pypy binary/shared lib name to 'pypy3'

pjenvey noreply at buildbot.pypy.org
Sun Sep 14 00:59:01 CEST 2014


Author: Philip Jenvey <pjenvey at underboss.org>
Branch: py3k
Changeset: r73526:86ac335daec2
Date: 2014-09-13 15:57 -0700
http://bitbucket.org/pypy/pypy/changeset/86ac335daec2/

Log:	issue1796: default the packaged pypy binary/shared lib name to
	'pypy3'

diff --git a/pypy/tool/release/package.py b/pypy/tool/release/package.py
--- a/pypy/tool/release/package.py
+++ b/pypy/tool/release/package.py
@@ -306,10 +306,10 @@
         import imp
         argparse = imp.load_source('argparse', 'lib-python/2.7/argparse.py')
     if sys.platform == 'win32':
-        pypy_exe = 'pypy.exe'
+        pypy_exe = 'pypy3.exe'
         license_base = os.path.join(basedir, r'..\..\..\local') # as on buildbot YMMV
     else:
-        pypy_exe = 'pypy'
+        pypy_exe = 'pypy3'
         license_base = '/usr/share/doc'
     parser = argparse.ArgumentParser()
     args = list(args)


More information about the pypy-commit mailing list