diff options
| -rw-r--r-- | CHANGES.rst | 6 | ||||
| -rwxr-xr-x | setuptools/command/sdist.py | 5 |
2 files changed, 11 insertions, 0 deletions
diff --git a/CHANGES.rst b/CHANGES.rst index abfbaede..2011b3ca 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -2,6 +2,12 @@ CHANGES ======= +v28.7.1 +------- + +* #833: Backed out changes from #830 as the implementation + seems to have problems in some cases. + v28.7.0 ------- diff --git a/setuptools/command/sdist.py b/setuptools/command/sdist.py index d4ac9efa..9975753d 100755 --- a/setuptools/command/sdist.py +++ b/setuptools/command/sdist.py @@ -141,6 +141,11 @@ class sdist(sdist_add_defaults, orig.sdist): self.filelist.extend([os.path.join(src_dir, filename) for filename in filenames]) + def _add_defaults_data_files(self): + """ + Don't add any data files, but why? + """ + def check_readme(self): for f in self.READMES: if os.path.exists(f): |
