diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2014-09-24 00:22:22 -0400 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2014-09-24 00:22:22 -0400 |
| commit | d42aea783a347d431eaf293250bab60c05b4c779 (patch) | |
| tree | e31790a0db9aff700923eeb1f832a1fa9f90c671 | |
| parent | 1c05e6a7b7f2a54a55285857d498409df3dc9383 (diff) | |
| download | python-setuptools-git-d42aea783a347d431eaf293250bab60c05b4c779.tar.gz | |
Update changelog
| -rw-r--r-- | CHANGES.txt | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index 185052fb..a6e27372 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -3,6 +3,28 @@ CHANGES ======= --- +6.0 +--- + +* Issue #100: When building a distribution, Setuptools will no longer match + default files using platform-dependent case sensitivity, but rather will + only match the files if their case matches exactly. As a result, on Windows + and other case-insensitive file systems, files with names such as + 'readme.txt' or 'README.TXT' will be omitted from the distribution and a + warning will be issued indicating that 'README.txt' was not found. Other + filenames affected are: + + - README.rst + - README + - setup.cfg + - setup.py (or the script name) + - test/test*.py + + Any users producing distributions with filenames that match those above + case-insensitively, but not case-sensitively, should rename those files in + their repository for better portability. + +--- 5.8 --- |
