| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Adopted isort and applied it to the codebase | Alex Grönholm | 2021-12-24 | 1 | -0/+6 |
| | | |||||
| * | Migrated flake8 config from setup.cfg to pyproject.toml | Alex Grönholm | 2021-12-24 | 1 | -2/+2 |
| | | | | | This required migrating to pyproject-flake8 as flake8 proper still doesn't support pyproject.toml. | ||||
| * | Adopted black and reformatted the codebase to match | Alex Grönholm | 2021-12-24 | 1 | -0/+6 |
| | | |||||
| * | Use build isolation when building wheel itself | Alex Grönholm | 2021-12-23 | 1 | -0/+1 |
| | | |||||
| * | Dropped support for unmaintained Python versions | Alex Grönholm | 2021-12-22 | 1 | -1/+1 |
| | | |||||
| * | Added Python 3.10 to the testing matrix (#414) | Hugo van Kemenade | 2021-08-09 | 1 | -1/+1 |
| | | |||||
| * | Declare support for and test Python 3.9 (#380) | Hugo van Kemenade | 2020-11-20 | 1 | -1/+1 |
| | | |||||
| * | Fix resource leak in WheelFile.open() (#338) | Jon Dufresne | 2020-03-24 | 1 | -1/+1 |
| | | | | | | | | | | | | 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. | ||||
| * | Fixed installation from sdist (#334) | Alex Grönholm | 2020-01-27 | 1 | -1/+0 |
| | | | | | | | | 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. | ||||
| * | Migrated to the src layout | Alex Grönholm | 2020-01-22 | 1 | -3/+3 |
| | | | | | Fixes #37. | ||||
| * | Dropped Python 3.4 support | Alex Grönholm | 2020-01-22 | 1 | -1/+1 |
| | | |||||
| * | Added PEP 517 support to project packaging | Alex Grönholm | 2019-10-25 | 1 | -1/+2 |
| | | |||||
| * | Added support for Python 3.8 | Alex Grönholm | 2019-08-16 | 1 | -1/+1 |
| | | |||||
| * | Added pypy3 to the tox interpreter list | Alex Grönholm | 2018-07-17 | 1 | -1/+1 |
| | | |||||
| * | Renamed the wheel.tool package to wheel.cli and migrated CLI stuff there | Alex Grönholm | 2018-07-17 | 1 | -1/+1 |
| | | | | | The VerifyingZipFile class was also merged to the WheelFile class. | ||||
| * | Removed wheel signing and verifying features | Alex Grönholm | 2018-07-17 | 1 | -4/+1 |
| | | | | | | | | This was discussed on the distutils-sig mailing list: https://mail.python.org/mm3/archives/list/distutils-sig@python.org/thread/MU2T6FRFNLRDEWSBJDRAFGDIFWCC6OIS/ Fixes #196. | ||||
| * | Updated CI configuration | Alex Grönholm | 2017-09-03 | 1 | -5/+2 |
| | | | | | | | Got rid of tox-travis in favor of a build matrix in .travis.yml. Also update setuptools separately to avoid errors due to setuptools bugs in older versions. | ||||
| * | Refactored the test suite | Alex Grönholm | 2017-07-29 | 1 | -1/+1 |
| | | | | | | The last remnants of unittest and nose have been swept away. Tests from the test_basic module have also been relocated to other test modules as appropriate. | ||||
| * | Renamed the testing extra to test, as per PEP 426 | Alex Grönholm | 2017-07-26 | 1 | -1/+1 |
| | | |||||
| * | Fixed flake8 failure on Travis | Alex Grönholm | 2017-07-26 | 1 | -0/+1 |
| | | |||||
| * | Fixed errors reported by flake8 | Alex Grönholm | 2017-07-26 | 1 | -1/+5 |
| | | |||||
| * | Added flake8 setup | Alex Grönholm | 2017-07-26 | 1 | -0/+5 |
| | | |||||
| * | Improved testing configuration | Alex Grönholm | 2017-07-26 | 1 | -8/+6 |
| | | |||||
| * | Document support for Python 3.6 and add it to the testing matrix | Jon Dufresne | 2017-07-07 | 1 | -1/+1 |
| | | | | | | | Drops support for Python 2.6. Remove now unnecessary import workarounds. Add missing trove classifiers. | ||||
| * | Unpublished changes to extras_require cannot be reflected in tox envs if tox is | Nate Coraor | 2016-02-03 | 1 | -1/+1 |
| | | | | | | | | | configured to install wheel as a dep, since this installs wheel from PyPI, rather than the local source. Tox subsequently installs over this version using the sdist of the local copy that it builds, so the version used for the tests is correct, but it does not install any of the extras at that time. Fix this by having tox (and thereby pip) install `.[extras]` rather than `wheel[extras]` | ||||
| * | Add py35 tox env | Nate Coraor | 2015-09-15 | 1 | -1/+1 |
| | | |||||
| * | fix sorting for deterministic metadata generation for Python 3 | Daniel Holth | 2014-11-12 | 1 | -1/+0 |
| | | |||||
| * | update copyright & list of tested Python versions | Daniel Holth | 2014-03-26 | 1 | -1/+1 |
| | | |||||
| * | replace dirspec with pyxdg (hosted on pypi); bump version to 0.23.0 | Daniel Holth | 2014-03-26 | 1 | -1/+1 |
| | | |||||
| * | update test dependencies | Daniel Holth | 2013-06-23 | 1 | -5/+4 |
| | | |||||
| * | refactor more metadata handling into its own file | Daniel Holth | 2013-06-01 | 1 | -0/+1 |
| | | |||||
| * | require distribute >= 0.6.34 (included with Ubuntu 13.04) | Daniel Holth | 2013-03-28 | 1 | -1/+1 |
| | | |||||
| * | jwk alg changes to kty in revision -08 | Daniel Holth | 2013-03-19 | 1 | -1/+1 |
| | | |||||
| * | parse requires_dist from setup.cfg [metadata] | Daniel Holth | 2012-09-15 | 1 | -0/+1 |
| | | |||||
| * | skip zip verification on Python < 2.7 | Daniel Holth | 2012-08-28 | 1 | -0/+1 |
| | | |||||
| * | add wheel.tool to packages | Daniel Holth | 2012-08-28 | 1 | -1/+1 |
| | | |||||
| * | require baker for tox | Daniel Holth | 2012-08-26 | 1 | -0/+1 |
| | | |||||
| * | verlib no longer required | Daniel Holth | 2012-07-30 | 1 | -1/+0 |
| | | |||||
| * | Test additional Python versions in tox.ini | Marc Abramowitz | 2012-07-06 | 1 | -1/+1 |
| | | |||||
| * | Add tox.ini for tox (http://tox.testrun.org/) | Marc Abramowitz | 2012-07-06 | 1 | -0/+16 |
