Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Simplify changes targeting sys_tags cache | Anderson Bravalheri | 2023-03-08 | 1 | -14/+7 |
| | |||||
* | Use functools.lru_cache to cache supported tags for wheels. | Maurits van Rees | 2023-03-07 | 1 | -3/+11 |
| | | | | | This is a suggestion by @abravalheri for my PR. https://github.com/pypa/setuptools/pull/3805#issuecomment-1434361907 | ||||
* | Cache supported tags for wheels. | Maurits van Rees | 2023-03-07 | 1 | -0/+1 |
| | | | | This fixes https://github.com/pypa/setuptools/issues/3804 | ||||
* | The default encoding of Python sources is UTF-8 | Dimitri Papadopoulos | 2022-11-20 | 1 | -2/+0 |
| | | | | | | | Python 3 assumes the encoding is UTF-8 by default, and so do or should do tools such as text editors when opening Python files. No need to explicitly set `*- coding: utf-8 -*-`. | ||||
* | Run the test on Windows, but don't check the file mode | Anderson Bravalheri | 2022-03-14 | 1 | -2/+3 |
| | |||||
* | Deactivate tests on windows | Josip Delic | 2022-03-14 | 1 | -0/+1 |
| | |||||
* | Update setuptools/tests/test_wheel.py | Anderson Bravalheri | 2022-03-14 | 1 | -1/+2 |
| | | | | Attempt to fix flake8 | ||||
* | Add test for zipefile mode | Josip Delic | 2022-03-14 | 1 | -0/+84 |
| | |||||
* | Add new test to document expected order stability. | Matthew Suozzo | 2021-12-16 | 1 | -0/+33 |
| | |||||
* | Switch to jaraco.path for building files | Jason R. Coombs | 2021-02-20 | 1 | -2/+2 |
| | |||||
* | Remove Python 2 compatibility | Jason R. Coombs | 2020-08-16 | 1 | -2/+0 |
| | |||||
* | 👹 Feed the hobgoblins (delint). | Jason R. Coombs | 2020-01-19 | 1 | -5/+6 |
| | |||||
* | 👹 Feed the hobgoblins (delint). | Jason R. Coombs | 2020-01-19 | 1 | -2/+4 |
| | |||||
* | wheel: fix `is_compatible` implementation | Benoit Pierre | 2019-11-25 | 1 | -0/+9 |
| | |||||
* | wheel: fix installation of empty namespace package | Benoit Pierre | 2019-10-07 | 1 | -0/+28 |
| | |||||
* | Feed the hobgoblins (delint). | Jason R. Coombs | 2019-01-26 | 1 | -0/+2 |
| | |||||
* | Use Python 3 syntax for new-style clasess | Jason R. Coombs | 2018-06-03 | 1 | -1/+3 |
| | |||||
* | Use canonicalize_name to look for .dist-info in wheel files | Arnon Yaari | 2018-05-16 | 1 | -0/+33 |
| | | | | Fixes issue #1350 | ||||
* | Switch test_wheel over to subset-based test | Paul Ganssle | 2018-04-07 | 1 | -126/+142 |
| | | | | | | This is both compatible with the old version of wheel (last one supported under Python 3.3) and is more in line with our commitment, which is that the wheel install provides at least these files. | ||||
* | Update wheel tests to reflect latest version | Paul Ganssle | 2018-04-06 | 1 | -16/+0 |
| | |||||
* | fix `data_files` handling when installing from wheel | Benoit Pierre | 2017-11-30 | 1 | -0/+36 |
| | |||||
* | fix namespace packages handling of wheels | Benoit Pierre | 2017-11-27 | 1 | -0/+32 |
| | |||||
* | fix encoding handling of wheels metadata | Benoit Pierre | 2017-11-26 | 1 | -2/+12 |
| | |||||
* | easy_install: add support for installing from wheels | Benoit Pierre | 2017-11-26 | 1 | -0/+430 |
Note: wheels are installed as eggs, so each install is self-contained and multiple versions of the same package can be installed at the same time. Limitations: - headers are not supported - resulting egg metadata requirements have their markers stripped |