Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add PEP 660 support (build_editable) | Stéphane Bidoul | 2021-09-28 | 1 | -0/+8 |
| | |||||
* | Complete the annotations: `pip/_internal/utils` (#10159) | Diego Ramirez | 2021-07-23 | 1 | -4/+4 |
| | | | Co-authored-by: Tzu-ping Chung <uranusjr@gmail.com> | ||||
* | Remove pkg_resources usage in direct_url_helper | Tzu-ping Chung | 2021-07-22 | 1 | -39/+1 |
| | |||||
* | Blacken src/pip/_internal/utils directory | Jon Dufresne | 2021-02-21 | 1 | -3/+3 |
| | |||||
* | Remove typing.TYPE_CHECKING guards | Jon Dufresne | 2021-02-19 | 1 | -8/+4 |
| | | | | | | | | | | | The typing module has been available since Python 3.5. Guarding the import has been unnecessary since dropping Python 2. Some guards remain to either: - Avoid circular imports - Importing objects that are also guarded by typing.TYPE_CHECKING - Avoid mypy_extensions dependency | ||||
* | Replace pip._internal.utils.typing with stdlib typing | Jon Dufresne | 2021-02-18 | 1 | -2/+2 |
| | | | | | | | | The stdlib module has been available since Python 3.5 and the TYPE_CHECKING constant has been available since 3.5.2. By using stdlib, this removes the need for pip to maintain its own Python 2 typing compatibility shim. | ||||
* | Merge pull request #9361 from jdufresne/f-strings | Pradyun Gedam | 2020-12-26 | 1 | -1/+1 |
|\ | | | | | Use f-strings for simple string formatting | ||||
| * | Use f-strings for simple string formatting | Jon Dufresne | 2020-12-25 | 1 | -1/+1 |
| | | | | | | | | | | | | | | Use pyupgrade to convert simple string formatting to use f-string syntax. pyupgrade is intentionally timid and will not create an f-string if it would make the expression longer or if the substitution parameters are anything but simple names or dotted names. | ||||
* | | Remove Python 2 compatibility shim for json.JSONDecodeError | Jon Dufresne | 2020-12-25 | 1 | -7/+2 |
|/ | | | | | | JSONDecodeError has been available since Python 3.5. https://docs.python.org/3/library/json.html#json.JSONDecodeError | ||||
* | Avoid AssertionError in pip freeze with editable direct URLs | Stéphane Bidoul | 2020-10-25 | 1 | -4/+0 |
| | |||||
* | Update linter: isort | Pradyun Gedam | 2020-09-23 | 1 | -2/+2 |
| | |||||
* | Add helper to get DirectUrl metadata from Distrribution | Stéphane Bidoul | 2020-04-01 | 1 | -0/+41 |
| | |||||
* | Add helper to create a DirectUrl from a Link | Stéphane Bidoul | 2020-04-01 | 1 | -0/+55 |
| | |||||
* | Add helper to convert DirectUrl to PEP 440 direct reference | Stéphane Bidoul | 2020-04-01 | 1 | -0/+34 |