summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
...
* Created a new release0.36.1Alex Grönholm2020-12-041-1/+1
|
* Fixed TypeError when a unicode generator name was passed on Python 2.7Alex Grönholm2020-12-041-0/+5
| | | | Fixes #388.
* Fixed error on Big Sur when deployment target = 11 (#386)Grzegorz Bokota2020-12-041-6/+10
| | | | | Fixes #385. Co-authored-by: FX Coudert <fxcoudert@gmail.com>
* Created a new release0.36.0Alex Grönholm2020-12-011-1/+1
|
* Adapted for upcoming changes in PyPy's SOABI tag (#373)Matti Picus2020-11-291-0/+4
|
* Fixed CRLF being used when generating WHEEL files on Windows (#383)Alex Grönholm2020-11-291-3/+9
| | | Fixes #378.
* Fixed flake8 errorAlex Grönholm2020-11-291-1/+1
|
* Updated vendored packaging to v20.7Alex Grönholm2020-11-292-61/+162
| | | | Fixes #381.
* Fixed regression in setting plat-name (#375)Matti Picus2020-09-181-1/+2
|
* Created a new release0.35.1Alex Grönholm2020-08-141-1/+1
|
* Vendored the packaging.tags module (#365)Alex Grönholm2020-08-145-1/+804
| | | See the commentary on https://github.com/pypa/wheel/pull/346 for the reason.
* Fixed bdist_wheel not lower casing the platform tag (#366)Alex Grönholm2020-08-141-1/+1
| | | | Fixes #364.
* Created a new release0.35.0Alex Grönholm2020-08-141-1/+1
|
* Fixed PyPy2 ABI tag generationAlex Grönholm2020-08-141-1/+1
|
* Replaced pep425tags with packaging (#346)Matti Picus2020-04-073-278/+155
| | | The internal pep425tags module has been removed in favor of the "packaging" library.
* Fix resource leak in WheelFile.open() (#338)Jon Dufresne2020-03-241-4/+4
| | | | | | | | | | | In WheelFile.open(), if the hash does not exist, avoid opening the file before raising the exception. Previously would leak the open file resource which could result in a ResourceWarning when Python warnings are enabled: ResourceWarning: unclosed file <_io.FileIO name='…/test_testzip_missing_hash0/test-1.0-py2.py3-none-any.whl' mode='rb' closefd=True> Python warnings are now enabled during tests to help catch these earlier.
* Remove unused EXTRA_RE variable (#340)Jon Dufresne2020-03-241-5/+0
| | | Unused since 595e4a8fc6bed54091ead713933c8ec8ebd1bb51.
* Ignore files terminating in ~. (#347)Diego Elio Pettenò2020-03-241-0/+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.
* Created a new release0.34.2Alex Grönholm2020-01-311-1/+1
|
* Fixed installation from sdist (#334)Alex Grönholm2020-01-271-1/+1
| | | | | | | Wheel cannot use pep517 yet because the installation process involves installing wheel because the setuptools build backend declares it as a dependency for building wheels. A future update of pip may solve this problem. Setuptools_scm, on the other hand, requires wheel as a build time dependency so if somebody tries to install wheel using `--no-binary=:all:`, it also creates a circular dependency. Fixes #332.
* Issue #329: Remove last remnant of custom PyPy tags (#330)Nick Coghlan2020-01-271-1/+1
| | | | | | The resolution of issue #328 removed the custom PyPy tagging from `get_impl_version_info()`, this just cleans up the check that forces PyPy to call that even if `py_version_nodot` was already set.
* Added the --compression option to bdist_wheel (#316)Alex Grönholm2020-01-262-5/+22
| | | Fixes #313.
* Removed obsolete commentAlex Grönholm2020-01-261-2/+1
| | | | Closes #296.
* Fixed line endings when rewriting WHEELAlex Grönholm2020-01-261-3/+3
|
* Use the existing build tag in wheel pack unless overriddenAlex Grönholm2020-01-261-6/+27
| | | | Closes #323. Fixes #322.
* Removed specialized PyPy tag generationAlex Grönholm2020-01-221-6/+1
| | | | Fixes #328.
* Fixed bdist_wheel failing on a read-only source treeAlex Grönholm2020-01-221-1/+8
| | | | Fixes #327.
* Switched to setuptools_scmAlex Grönholm2020-01-221-2/+1
| | | | New versions are now made by declaring a new version in the changelog (docs/news.rst) and pushing this change to Github. The workflow will see this version and create a new tag which then triggers the release workflow.
* Migrated to the src layoutAlex Grönholm2020-01-2213-0/+1844
Fixes #37.