| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | Created a new release0.36.1 | Alex Grönholm | 2020-12-04 | 1 | -1/+1 | |
| | | ||||||
| * | Fixed TypeError when a unicode generator name was passed on Python 2.7 | Alex Grönholm | 2020-12-04 | 1 | -0/+5 | |
| | | | | | Fixes #388. | |||||
| * | Fixed error on Big Sur when deployment target = 11 (#386) | Grzegorz Bokota | 2020-12-04 | 1 | -6/+10 | |
| | | | | | | Fixes #385. Co-authored-by: FX Coudert <fxcoudert@gmail.com> | |||||
| * | Created a new release0.36.0 | Alex Grönholm | 2020-12-01 | 1 | -1/+1 | |
| | | ||||||
| * | Adapted for upcoming changes in PyPy's SOABI tag (#373) | Matti Picus | 2020-11-29 | 1 | -0/+4 | |
| | | ||||||
| * | Fixed CRLF being used when generating WHEEL files on Windows (#383) | Alex Grönholm | 2020-11-29 | 1 | -3/+9 | |
| | | | | Fixes #378. | |||||
| * | Fixed flake8 error | Alex Grönholm | 2020-11-29 | 1 | -1/+1 | |
| | | ||||||
| * | Updated vendored packaging to v20.7 | Alex Grönholm | 2020-11-29 | 2 | -61/+162 | |
| | | | | | Fixes #381. | |||||
| * | Fixed regression in setting plat-name (#375) | Matti Picus | 2020-09-18 | 1 | -1/+2 | |
| | | ||||||
| * | Created a new release0.35.1 | Alex Grönholm | 2020-08-14 | 1 | -1/+1 | |
| | | ||||||
| * | Vendored the packaging.tags module (#365) | Alex Grönholm | 2020-08-14 | 5 | -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önholm | 2020-08-14 | 1 | -1/+1 | |
| | | | | | Fixes #364. | |||||
| * | Created a new release0.35.0 | Alex Grönholm | 2020-08-14 | 1 | -1/+1 | |
| | | ||||||
| * | Fixed PyPy2 ABI tag generation | Alex Grönholm | 2020-08-14 | 1 | -1/+1 | |
| | | ||||||
| * | Replaced pep425tags with packaging (#346) | Matti Picus | 2020-04-07 | 3 | -278/+155 | |
| | | | | The internal pep425tags module has been removed in favor of the "packaging" library. | |||||
| * | Fix resource leak in WheelFile.open() (#338) | Jon Dufresne | 2020-03-24 | 1 | -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 Dufresne | 2020-03-24 | 1 | -5/+0 | |
| | | | | Unused since 595e4a8fc6bed54091ead713933c8ec8ebd1bb51. | |||||
| * | Ignore files terminating in ~. (#347) | Diego Elio Pettenò | 2020-03-24 | 1 | -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.2 | Alex Grönholm | 2020-01-31 | 1 | -1/+1 | |
| | | ||||||
| * | Fixed installation from sdist (#334) | Alex Grönholm | 2020-01-27 | 1 | -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 Coghlan | 2020-01-27 | 1 | -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önholm | 2020-01-26 | 2 | -5/+22 | |
| | | | | Fixes #313. | |||||
| * | Removed obsolete comment | Alex Grönholm | 2020-01-26 | 1 | -2/+1 | |
| | | | | | Closes #296. | |||||
| * | Fixed line endings when rewriting WHEEL | Alex Grönholm | 2020-01-26 | 1 | -3/+3 | |
| | | ||||||
| * | Use the existing build tag in wheel pack unless overridden | Alex Grönholm | 2020-01-26 | 1 | -6/+27 | |
| | | | | | Closes #323. Fixes #322. | |||||
| * | Removed specialized PyPy tag generation | Alex Grönholm | 2020-01-22 | 1 | -6/+1 | |
| | | | | | Fixes #328. | |||||
| * | Fixed bdist_wheel failing on a read-only source tree | Alex Grönholm | 2020-01-22 | 1 | -1/+8 | |
| | | | | | Fixes #327. | |||||
| * | Switched to setuptools_scm | Alex Grönholm | 2020-01-22 | 1 | -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 layout | Alex Grönholm | 2020-01-22 | 13 | -0/+1844 | |
| Fixes #37. | ||||||
