summaryrefslogtreecommitdiff
path: root/tests/test_bdist_wheel.py
Commit message (Collapse)AuthorAgeFilesLines
* Adopted black and reformatted the codebase to matchAlex Grönholm2021-12-241-59/+114
|
* Upgraded to py3.7+ syntaxAlex Grönholm2021-12-221-2/+2
|
* Dropped support for unmaintained Python versionsAlex Grönholm2021-12-221-1/+0
|
* Fixed CRLF being used when generating WHEEL files on Windows (#383)Alex Grönholm2020-11-291-0/+8
| | | Fixes #378.
* Ignore files terminating in ~. (#347)Diego Elio Pettenò2020-03-241-1/+4
| | | | This is Unix's most common pattern for backup files. They are often present, but I can't think of a good reason for them to be distributed.
* Added the --compression option to bdist_wheel (#316)Alex Grönholm2020-01-261-0/+15
| | | Fixes #313.
* Fixed bdist_wheel failing on a read-only source treeAlex Grönholm2020-01-221-2/+17
| | | | Fixes #327.
* Skipped the limited ABI test on Python 2Alex Grönholm2020-01-211-0/+1
|
* Skip unicode dist and related test on Python < 3.6Alex Grönholm2020-01-211-0/+2
| | | | Due to encoding issues, this ends up failing in certain cases and there is nothing wheel can do about it.
* Fixed building binary wheels against the limited ABIAlex Grönholm2019-08-181-0/+12
| | | | Fixes #305.
* Revert "Include directory entries when building wheel (#289)"Alex Grönholm2019-05-121-1/+0
| | | | This reverts commit 369b1eeb. Fixes #294.
* Include directory entries when building wheel (#289)Jason R. Coombs2019-04-281-0/+1
| | | Fixes #287.
* Correct default license file 'LICENCE.txt' (#279)Jon Dufresne2018-12-091-1/+1
| | | Before it mistakenly duplicated 'LICENSE.txt'.
* Fixed flake8 errorAlex Grönholm2018-10-051-1/+0
|
* Fixed build number appearing in the .dist-info directory nameAlex Grönholm2018-10-041-0/+11
| | | | | | Adding a build number caused two different .dist-info directories to be added to the wheel, making pip (rightfully) reject it. We now construct the dist-info directory name without the build number in all cases. Fixes #263.
* Added a few additional common patterns for legal and attribution files (#251)C.A.M. Gerlach2018-09-251-1/+2
|
* Added the license_files option and deprecated license_fileAlex Grönholm2018-07-171-0/+72
| | | | Fixes #138.
* Build wheels into a temporary directory in the test setup phaseAlex Grönholm2018-07-171-1/+1
| | | | This avoids polluting the project directory and also avoids unicode issues when a py3 test suite encounters a unicode containing wheel.
* Fixed wrong character encodings used to write RECORDAlex Grönholm2018-03-311-0/+9
| | | | | RECORD should always be read and written as UTF-8. Fixes #207.
* Don't create metadata.json anymoreAlex Grönholm2018-03-301-24/+0
| | | | | This was a thing in the now-withdrawn PEP 426. Fixes #195.
* Moved the tests out of the package treeAlex Grönholm2017-07-291-0/+32