summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Drop the SCHEMES['nt_user']['scripts'] shimTzu-ping Chung2021-03-221-7/+0
| | | | | I dug into CPython commit history and this was fixed in 3.5, so we shouldn't need this? Let's find out...
* Reduce diffTzu-ping Chung2021-03-152-15/+11
|
* Typing fixesTzu-ping Chung2021-03-1016-87/+105
|
* Merge pull request #9676 from stefanor/re-parse-versionTzu-ping Chung2021-03-083-5/+9
|\
| * Don't cache _versionStefano Rivera2021-03-032-8/+2
| |
| * Parse pkg_resources Dist versions with packaging.versionStefano Rivera2021-03-023-5/+15
| | | | | | | | | | | | | | Due to a mix of bundled and unbundled dependencies, pkg_resources Version class may not be the same as packaging's Version class. See: https://github.com/pypa/setuptools/issues/2052
* | Merge pull request #9552Tzu-ping Chung2021-03-081-21/+36
|\ \ | | | | | | From uranusjr/new-resolver-requires-python-error
| * | Fix error reporting on Requires-Python conflictsTzu-ping Chung2021-02-281-21/+36
| | |
* | | Add a warning when run as root (e.g., sudo pip) (#9394)Winson Luk2021-03-064-4/+41
| | |
* | | Fixed --editable install for setuptools projects without setup.py.KOLANICH2021-03-032-7/+12
| | | | | | | | | | | | | | | Co-Authored-By: Tzu-ping Chung <uranusjr@gmail.com> Co-Authored-By: Pradyun Gedam <3275593+pradyunsg@users.noreply.github.com>
* | | Merge pull request #9467 from uranusjr/avoid-exchanging-parsed-versionTzu-ping Chung2021-03-031-2/+10
|\ \ \ | |_|/ |/| | Use str to pass versions to avoid debundling issue
| * | Use str to pass versions to avoid debundling issueTzu-ping Chung2021-01-181-2/+10
| | |
* | | Merge pull request #9669 from uranusjr/ignore-invalid-name-dist-infoTzu-ping Chung2021-02-282-2/+49
|\ \ \ | | | | | | | | Ignore dist-info directories with invalid name
| * | | Ignore dist-info directories with invalid nameTzu-ping Chung2021-02-282-2/+49
| | | |
* | | | Merge pull request #9636 from dwt/masterTzu-ping Chung2021-02-281-1/+1
|\ \ \ \ | |/ / / |/| | |
| * | | Remove dead codeMartin Häcker2021-02-201-1/+0
| | | |
| * | | Fix --target not working with --editable as setup.py develop does not ↵Martin Häcker2021-02-201-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | understand --home but instead requires the --install-dir option. Parially fixes #4390
* | | | Merge pull request #9405 from MrMino/diagnostic_aversionPradyun Gedam2021-02-281-1/+8
|\ \ \ \
| * | | | Refactor `set(...)` → `{...}`Blazej Michalik2021-02-281-1/+1
| | | | | | | | | | | | | | | Co-authored-by: Tzu-ping Chung <uranusjr@gmail.com>
| * | | | Bring back the "from versions:" messageBlazej Michalik2021-02-271-1/+8
| | |_|/ | |/| | | | | | | | | | | | | | | | | | In the new resolver the "(from versions ...)" message, shown on failure to resolve a package, has been removed. This commit brings it back.
* | | | Merge pull request #9584 from hexagonrecursion/parenPradyun Gedam2021-02-281-2/+2
|\ \ \ \ | | | | | | | | | | Drop redundant parentheses
| * | | | Drop redundant parenthesesAndrey Bienkowski2021-02-101-2/+2
| | | | |
* | | | | Special-case PyPy's lib location differencesTzu-ping Chung2021-02-281-0/+17
| | | | |
* | | | | New style type hintsTzu-ping Chung2021-02-281-4/+2
| | | | |
* | | | | Merge branch 'master' into sysconfigTzu-ping Chung2021-02-2832-587/+772
|\ \ \ \ \ | | |/ / / | |/| | |
| * | | | Merge pull request #9477 from bbodenmiller/patch-1Tzu-ping Chung2021-02-271-1/+6
| |\ \ \ \
| | * | | | Update cmdoptions.pyBen Bodenmiller2021-02-261-4/+4
| | | | | |
| | * | | | Update cmdoptions.pyBen Bodenmiller2021-02-241-4/+6
| | | | | |
| | * | | | Update cmdoptions.pyBen Bodenmiller2021-02-241-1/+2
| | | | | |
| | * | | | Update cmdoptions.pyBen Bodenmiller2021-02-241-1/+2
| | | | | |
| | * | | | Merge branch 'master' into patch-1Ben Bodenmiller2021-02-24134-3240/+2487
| | |\ \ \ \
| | * | | | | Multiple lines for help textBen Bodenmiller2021-01-191-1/+2
| | | | | | |
| | * | | | | Improve --cert help textBen Bodenmiller2021-01-191-1/+1
| | | | | | |
| | * | | | | Clarify that --cert replaces default CA bundleBen Bodenmiller2021-01-191-1/+1
| | | | | | |
| * | | | | | Merge pull request #9589 from hexagonrecursion/text-typehintTzu-ping Chung2021-02-271-3/+2
| |\ \ \ \ \ \
| | * | | | | | LintAndrey Bienkowski2021-02-201-1/+0
| | | | | | | |
| | * | | | | | Replace typing.Text with strAndrey Bienkowski2021-02-201-2/+2
| | | | | | | |
| * | | | | | | Upgrade from six.raise_from to the raise from syntax (#9590)Andrey Bienkowski2021-02-261-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Upgrade from six.raise_from * Lint
| * | | | | | | Merge pull request #8733Tzu-ping Chung2021-02-251-3/+14
| |\ \ \ \ \ \ \
| | * | | | | | | Simplify type annotationPradyun Gedam2020-09-101-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | Co-authored-by: Tzu-ping Chung <uranusjr@gmail.com>
| | * | | | | | | Fix uninstallation of user scriptsDaan De Meyer2020-09-041-3/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | User scripts are installed to ~/.local/bin. pip was looking for scripts to uninstall in ~/.local/lib/python3.8/site-packages/bin. This commit makes it look in ~/.local/bin instead.
| * | | | | | | | Merge pull request #9300Tzu-ping Chung2021-02-252-12/+28
| |\ \ \ \ \ \ \ \
| | * | | | | | | | Show constraint in error messageTzu-ping Chung2021-02-232-12/+28
| | | | | | | | | |
| * | | | | | | | | Merge pull request #9595 from hexagonrecursion/transformed-hintPradyun Gedam2021-02-241-4/+4
| |\ \ \ \ \ \ \ \ \ | | |_|_|_|_|/ / / / | |/| | | | | | | | Use the new typehint syntax
| | * | | | | | | | Use the new typehint syntaxAndrey Bienkowski2021-02-201-4/+4
| | | |_|/ / / / / | | |/| | | | | |
| * | | | | | | | Use super() for Python 2 old-style classesJon Dufresne2021-02-231-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Followup to c148bcc1aa4025a9dae5bcdabe1a1e01e6df28e5.
| * | | | | | | | Merge pull request #9591 from hexagonrecursion/openPradyun Gedam2021-02-232-2/+2
| |\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | Replace `open(file, 'r')` with `open(file)`
| | * | | | | | | | Replace `open(file, 'r')` with `open(file)`Andrey Bienkowski2021-02-102-2/+2
| | | |_|_|_|/ / / | | |/| | | | | |
| * | | | | | | | Merge pull request #9404 from jdufresne/mypy-fixupPradyun Gedam2021-02-239-47/+159
| |\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | Handle several mypy TODO comments and exceptions
| | * | | | | | | | Handle several mypy TODO comments and exceptionsJon Dufresne2021-02-229-47/+159
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove mypy exceptions that are straightforward to remove.