Commit e589e51c authored by tarek's avatar tarek

setup.py doesn't try to convert distribute_setup.py anymore. fixes #87

--HG--
branch : distribute
extra : rebase_source : 4378f7defabaadaaa258eb69f07caf17569dd57a
parent 4072145a
...@@ -7,7 +7,8 @@ CHANGES ...@@ -7,7 +7,8 @@ CHANGES
----- -----
* Issue 90: unknown setuptools version can be added in the working set * Issue 90: unknown setuptools version can be added in the working set
* * Issue 87: setupt.py doesn't try to convert distribute_setup.py anymore
Initial Patch by arfrever.
----- -----
0.6.8 0.6.8
......
...@@ -14,9 +14,10 @@ if sys.version_info >= (3,): ...@@ -14,9 +14,10 @@ if sys.version_info >= (3,):
fl.process_template_line(line) fl.process_template_line(line)
dir_util.create_tree(tmp_src, fl.files) dir_util.create_tree(tmp_src, fl.files)
outfiles_2to3 = [] outfiles_2to3 = []
dist_script = os.path.join("build", "src", "distribute_setup.py")
for f in fl.files: for f in fl.files:
outf, copied = file_util.copy_file(f, os.path.join(tmp_src, f), update=1) outf, copied = file_util.copy_file(f, os.path.join(tmp_src, f), update=1)
if copied and outf.endswith(".py"): if copied and outf.endswith(".py") and outf != dist_script:
outfiles_2to3.append(outf) outfiles_2to3.append(outf)
if copied and outf.endswith('api_tests.txt'): if copied and outf.endswith('api_tests.txt'):
# XXX support this in distutils as well # XXX support this in distutils as well
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment