Skip to content

Commit 415c62c

Browse files
author
Ralf Gommers
committed
MAINT: update pavement.py for no-2to3.
1 parent 07a20f3 commit 415c62c

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

pavement.py

+1-4
Original file line numberDiff line numberDiff line change
@@ -226,10 +226,7 @@ def bdist_superpack(options):
226226
pyver = options.python_version
227227
def copy_bdist(arch):
228228
# Copy the wininst in dist into the release directory
229-
if int(pyver[0]) >= 3:
230-
source = os.path.join('build', 'py3k', 'dist', wininst_name(pyver))
231-
else:
232-
source = os.path.join('dist', wininst_name(pyver))
229+
source = os.path.join('dist', wininst_name(pyver))
233230
target = os.path.join(SUPERPACK_BINDIR, internal_wininst_name(arch))
234231
if os.path.exists(target):
235232
os.remove(target)

0 commit comments

Comments
 (0)