Skip to content

Commit d2b03e9

Browse files
Add note to setup.py that you need to use "clean --all" not just "clean".
1 parent 0f210bf commit d2b03e9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

setup.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -287,9 +287,9 @@
287287

288288
import sys
289289

290-
extra = {}
291-
if sys.version_info >= (3, 0):
292-
extra['use_2to3'] = True
290+
extra = {
291+
'use_2to3': False
292+
}
293293

294294
from ez_setup import use_setuptools
295295

@@ -351,4 +351,4 @@
351351
)
352352

353353
# Development build:
354-
# python setup.py clean build sdist bdist_wheel
354+
# python setup.py clean --all build sdist bdist_wheel

0 commit comments

Comments
 (0)