1
1
Fork 0
mirror of https://github.com/pypa/pip synced 2023-12-13 21:30:23 +01:00
Commit graph

6246 commits

Author SHA1 Message Date
Pradyun Gedam
8b4713f63c
Move cmdoptions to pip._internal.cli 2018-07-29 18:26:33 +05:30
Pradyun Gedam
772435d620
Import cmdoptions instead of it's internal functions 2018-07-29 18:26:32 +05:30
Pradyun Gedam
8d45e0e647
Move basecommand to pip._internal.cli 2018-07-29 18:26:28 +05:30
Pradyun Gedam
eb0c9670f8
Move baseparser into pip._internal.cli 2018-07-29 18:26:28 +05:30
Pradyun Gedam
d3065ee937
Create a pip._internal.cli package 2018-07-29 18:26:28 +05:30
Pradyun Gedam
3e81d8cde1
Merge pull request #5653 from pradyunsg/docs/update-release-process
Improve content in "Creating New Release" section
2018-07-28 23:22:47 +05:30
Pradyun Gedam
7f4673d7a2
Merge pull request #5644 from sinscary/fix_invalid_val_error
Show appropriate error message
2018-07-27 18:38:51 +05:30
Pradyun Gedam
d77e329961
Merge pull request #5657 from cjerdonek/misc-add-split-auth-from-url
Add split_auth_from_netloc() to misc.py
2018-07-27 10:09:34 +05:30
Chris Jerdonek
58b21d18dc Add split_auth_from_netloc() to misc.py. 2018-07-25 10:35:50 -07:00
Nitesh Sharma
ad783151c5 fix pylint issue with space 2018-07-25 23:01:17 +05:30
Nitesh Sharma
e22cf6cce1 make error message function helper one 2018-07-25 22:57:55 +05:30
Chris Jerdonek
1a9128dcfc Fix the "+" check in VersionControl.get_url_rev_and_auth() (#5651)
* Add tests, including a failing test.

* Fix "+" check in VersionControl.get_url_rev_and_auth().

* Change AssertionError to ValueError.

This addresses a review comment by @pradyunsg and @xavfernandez.

* Use "!r" inside the format string.

This incorporates a suggestion by @barneygale.
2018-07-25 09:42:13 +02:00
Nitesh Sharma
e5dc3cf854 show error message with wrong configuration option 2018-07-24 23:10:02 +05:30
Pradyun Gedam
43359d75b6
Address review comments from @pfmoore 2018-07-24 23:06:25 +05:30
Pradyun Gedam
13ca6bffc4
Improve text in create new release section
- Break up points that involve checking out git refs
- Include supporting comment for bumping version
- Drop outdated reference to "CHANGES.txt"
- Provide a link to get-pip repository
- Drop the outdated get-pip.py generation command
- Put all commmands that can be executed in parenthesis
2018-07-24 18:02:05 +05:30
Pradyun Gedam
4e0cb5b018
Merge pull request #5652 from pradyunsg/docs/cleanup-redundant-files
Cleanup redundant files in the docs/ directory
2018-07-24 17:31:35 +05:30
Pradyun Gedam
16cd301abb
🎨 for tox.ini 2018-07-24 13:03:36 +05:30
Pradyun Gedam
bcc8fa8069
Remove redundant files from docs/ directory 2018-07-24 13:03:19 +05:30
Pradyun Gedam
f4060a790d
Merge pull request #5650 from pradyunsg/docs/document-new-maintainer-things
Document platforms/tooling new pip maintainers can be given access to
2018-07-24 12:51:59 +05:30
Pradyun Gedam
4e8c247154
Document platforms/tooling new pip maintainers can be given access to 2018-07-24 10:54:51 +05:30
Pradyun Gedam
dc71dc5fbe
Merge pull request #5527 from pradyunsg/refactor/introduce-models
Move more classes to pip._internal.models
2018-07-24 10:11:51 +05:30
Pradyun Gedam
ef6c2f7229
Merge pull request #5635 from jcfr/fix-userguide-reference
user_guide: Fix "Requirements Files" reference
2018-07-24 08:45:04 +05:30
Pradyun Gedam
68112c826d
Update PackageIndex tests for the addition of TestPyPI 2018-07-24 08:33:40 +05:30
Pradyun Gedam
3e86bf786f
Sort Imports 2018-07-24 08:09:17 +05:30
Pradyun Gedam
0b1b4797c0
Fix issues that occured due to merging 2018-07-24 08:08:43 +05:30
Pradyun Gedam
35c66f3ade
Fix a mistake made while merging 2018-07-24 08:07:05 +05:30
Pradyun Gedam
8df8e53901
Merge branch 'master' into refactor/introduce-models 2018-07-24 01:35:56 +05:30
Pradyun Gedam
583197d0a3
Merge pull request #5646 from pradyunsg/docs/remove-pip-from-title
Don't mention pip in the headers of development docs pages
2018-07-24 01:27:10 +05:30
Pradyun Gedam
0734255da3
Don't mention pip in the headers of development docs pages 2018-07-24 01:18:12 +05:30
Pradyun Gedam
1e090624af
Merge pull request #5526 from pradyunsg/docs/improve-dev-docs
Rework the development documentation
2018-07-24 01:08:21 +05:30
Pradyun Gedam
0d74b20acd
Update the link in the pull request template 2018-07-24 00:59:39 +05:30
Pradyun Gedam
468e38fcf9
Add a note saying older references might be broken 2018-07-24 00:58:20 +05:30
Pradyun Gedam
971456bb9e
Merge branch 'master' into docs/improve-dev-docs 2018-07-23 23:55:38 +05:30
Paul Moore
45d3d42457
Merge pull request #5643 from pfmoore/appveyor_pr
Implement check for doc-only PRs on Appveyor
2018-07-23 17:46:37 +01:00
Nitesh Sharma
01a0fa5f04 Show appropriate error message
This catches code exception if wrong arguments passed to cmd options
It also adds error message that suggests correct arguments to pass

Fixes: https://github.com/pypa/pip/issues/5616
2018-07-23 21:44:16 +05:30
Paul Moore
dddbbebdec Implement check for doc-only PRs on Appveyor 2018-07-23 16:09:27 +01:00
Paul Moore
8cc943e07f
Merge pull request #5642 from pfmoore/correct_case
Report files in original (filesystem) case
2018-07-23 15:09:30 +01:00
Paul Moore
f1033288a3 Placate flake8's moaning 2018-07-23 13:26:05 +01:00
Pradyun Gedam
09bcdd5d5f
Merge pull request #5636 from cjerdonek/vcs-remove-translate-egg-surname
Remove the unused VersionControl.translate_egg_surname()
2018-07-23 17:52:46 +05:30
Paul Moore
ab0644479f Report files in original (filesystem) case 2018-07-23 13:21:07 +01:00
Pradyun Gedam
53e534a330
Merge pull request #5639 from pradyunsg/misc/remove-useless-call
Inline a super-simple function
2018-07-23 15:14:24 +05:30
Pradyun Gedam
531be4f886
Merge pull request #5571 from bstrdsmkr/pep508_urls_as_deps
Allow PEP508 url dependencies in install_requires
2018-07-23 15:13:42 +05:30
Pradyun Gedam
ae58decefe
Inline a super-simple function 2018-07-23 10:47:43 +05:30
Chris Jerdonek
a1e3275287 Remove the unused VersionControl.translate_egg_surname(). 2018-07-22 11:42:17 -07:00
Jean-Christophe Fillion-Robin
9c92c618a4
user_guide: Fix "Requirements Files" reference 2018-07-22 14:13:34 -04:00
Pradyun Gedam
a2968978c9
Merge pull request #5606 from cjerdonek/vcs-parse-url-once
Change VersionControl to parse the URL only once inside get_url_rev().
2018-07-22 23:37:01 +05:30
Pradyun Gedam
c81597b368
Merge pull request #5614 from barneygale/remove_get_info
Remove vestigial `VersionControl.get_info()` method.
2018-07-22 22:35:38 +05:30
Pradyun Gedam
47e8703241
Add the deprecation helper information from b6dae7a594 2018-07-22 18:34:01 +05:30
Pradyun Gedam
5fceb47be8
Merge branch 'master' into docs/improve-dev-docs 2018-07-22 18:32:57 +05:30
Pradyun Gedam
8be6062f13
Bump for development of 18.1 (#5630) 2018-07-22 15:05:04 +05:30