diff options
author | Ralf Gommers <ralf.gommers@googlemail.com> | 2013-10-15 08:18:47 +0200 |
---|---|---|
committer | Ralf Gommers <ralf.gommers@googlemail.com> | 2013-10-15 08:18:47 +0200 |
commit | 415c62c29a7d074b75c7fb0e05b21c36b5c8e077 (patch) | |
tree | 00c538403d4bd95784b2f3425a17c3f023781668 /pavement.py | |
parent | 07a20f33f8dbc6a53265400eeb725fd0f146a6e9 (diff) | |
download | numpy-415c62c29a7d074b75c7fb0e05b21c36b5c8e077.tar.gz |
MAINT: update pavement.py for no-2to3.
Diffstat (limited to 'pavement.py')
-rw-r--r-- | pavement.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/pavement.py b/pavement.py index 41a9f3b46..b1a4d7318 100644 --- a/pavement.py +++ b/pavement.py @@ -226,10 +226,7 @@ def bdist_superpack(options): pyver = options.python_version def copy_bdist(arch): # Copy the wininst in dist into the release directory - if int(pyver[0]) >= 3: - source = os.path.join('build', 'py3k', 'dist', wininst_name(pyver)) - else: - source = os.path.join('dist', wininst_name(pyver)) + source = os.path.join('dist', wininst_name(pyver)) target = os.path.join(SUPERPACK_BINDIR, internal_wininst_name(arch)) if os.path.exists(target): os.remove(target) |