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

4757 commits

Author SHA1 Message Date
Mathew Jennings 9a4be9b281 Add --platform and --python-version to pip download.
With the --platform option, a user can download wheels with
a different platform than that of the local machine running the command.

With the --python-version option, a user can
download wheels that are explicitly compatible with a specific
Python interpreter version.

This functionality is meant for utilities that gather dependencies
and prepare distributions for other platforms.
2016-07-21 13:01:52 -05:00
Xavier Fernandez 17df548ce9 Specify the supported python version via python_requires (#3860) 2016-07-21 12:49:53 -04:00
Xavier Fernandez 0811f6eef4 Merge pull request #3824 from haypo/setuptools_res_warn
Fix a ResourceWarning in setuptools_build
2016-07-21 13:35:58 +02:00
Xavier Fernandez f5d691a5c8 Merge pull request #3762 from adamchainz/readthedocs.io
Convert readthedocs link for their .org -> .io migration for hosted projects
2016-07-21 13:21:28 +02:00
Xavier Fernandez af3d485e8e Merge pull request #3816 from IanLee1521/patch-2
Updated documentation copyright year to 2016
2016-07-21 13:18:37 +02:00
Xavier Fernandez f712bcd4e2 Merge pull request #3834 from stakodiak/master
Remove extraneous spaces in block comment.
2016-07-21 13:17:34 +02:00
Xavier Fernandez 2e93ffbb18 Merge pull request #3851 from xavfernandez/document_getpip_32
Document the get-pip version for 3.2
2016-07-21 11:57:10 +02:00
Xavier Fernandez ec8cf5511b Document the get-pip version for 3.2
closes #3510
2016-07-21 10:42:18 +02:00
Nathaniel J. Smith a942fb9331 Report correct glibc version in pip user-agent (#3836) 2016-07-09 23:17:04 -04:00
Alex Stachowiak a22040d788 Remove extraneous spaces in block comment. 2016-07-08 16:35:47 -04:00
Xavier Fernandez e93649d37a Merge pull request #3780 from memoselyk/fixSetuptoolsDocLinks
Point to setuptools documentation in readthedocs.io
2016-07-06 00:00:28 +02:00
Victor Stinner 0bc3cc9bd9 Fix a ResourceWarning in setuptools_build
Running setup.py using SETUPTOOLS_SHIM logs a ResourceWarning on
Python 3 when using python3 -Wd command line option. This change
fixes the warning by close the setup.py file before running it.
2016-06-29 10:28:29 +02:00
Paul Moore d7444b784a Merge pull request #3750 from msabramo/check_command_rebase_develop
Add a `pip check` command.
2016-06-25 16:54:52 +01:00
Ian Lee b199e687d6 Updated documentation copyright year to 2016 2016-06-24 10:03:57 -07:00
Pradyun e04941bba2 Update http urls to use https instead (#3808) 2016-06-22 14:06:28 -04:00
Xavier Fernandez 218fe03db5 Merge pull request #3790 from jwilk/spelling
Fix a bunch of typos
2016-06-12 19:39:24 +02:00
Jakub Wilk 6dc28c1b31 Fix typos 2016-06-10 21:29:43 +02:00
memoselyk cba9a403c8 Point to setuptools documentation in readthedocs.io 2016-06-05 18:28:35 -05:00
Paul Moore a624498b61 Merge pull request #3779 from pfmoore/doc_fix
Clarified when pip is already installed
2016-06-05 16:42:44 +01:00
Paul Moore efc49ebada Clarified when pip is already installed 2016-06-05 15:46:33 +01:00
Xavier Fernandez b095e41a2a Update docs to reflect the use of master branch (#3774) 2016-06-02 07:14:58 -04:00
Adam Chainz 93e3c8d250 Convert readthedocs link for their .org -> .io migration for hosted projects
As per [their blog post of the 27th April](https://blog.readthedocs.com/securing-subdomains/) ‘Securing subdomains’:

> Starting today, Read the Docs will start hosting projects from subdomains on the domain readthedocs.io, instead of on readthedocs.org. This change addresses some security concerns around site cookies while hosting user generated data on the same domain as our dashboard.

Test Plan: Manually visited all the links I’ve modified.
2016-05-29 19:21:28 +01:00
Jason R. Coombs b5191a0c03 Correct typo: simple -> simply (#3756) 2016-05-26 20:47:27 -04:00
Donald Stufft 6955f5f9b4 Use virtualenv/master instead of virtualenv/develop (#3755) 2016-05-26 20:12:53 -04:00
Donald Stufft c4b30a460a Merge branch 'develop' 2016-05-26 07:02:32 -04:00
Calvin Smith 46b682221b Support multiple --requirement files in pip freeze (#3703) 2016-05-26 06:45:46 -04:00
Jivan Amara 36de76f0a5 Strip authentication from SVN url prior to passing it into svn (#3697) 2016-05-26 06:43:26 -04:00
Sorin Sbarnea 2dfe88126d Load credentials from .netrc files (#3715) 2016-05-26 06:41:31 -04:00
Stéphane Bidoul (ACSONE) 4d1b798465 Allow creating wheels for editable packages (#3695) 2016-05-26 06:41:01 -04:00
Chandrasekhar Atina b15c7f6b6a Fixed #3682 : pip install --target ignores platlib directories (#3694) 2016-05-26 06:39:44 -04:00
Andy Kluger e445dba634 Fix crash when calling pip freeze with invalid requirement installed (#3704) 2016-05-26 06:36:16 -04:00
Stéphane Bidoul (ACSONE) ce76f2d3e6 Give priority to git remote named origin in pip freeze (#3708) 2016-05-21 08:12:37 -04:00
Paul Moore 231178fef5 Merge pull request #3706 from pfmoore/index_docs
Document that index URLs should conform to PEP 503
2016-05-21 10:36:16 +01:00
Paul Moore 8d7b7d35bc Document that index URLs should conform to PEP 503 2016-05-20 22:46:37 +01:00
Zvezdan Petkovic 4e2c1fa77c Use a realpath for the temporary build directory. (#3701)
Some systems have /tmp symlinked which confuses custom builds, such as
numpy. This ensures that real path is passed and that such builds
resolve their paths correctly during build and install.

Added test for the change and also for the previous related fix: #707

---

*This was migrated from pypa/pip#3079 to reparent it to the ``master``
branch. Please see original pull request for any previous discussion.*
2016-05-19 21:02:26 -04:00
Xavier Fernandez 1ca4e5e1e7 Merge pull request #3686 from xavfernandez/list_format
Add --format option to pip list
2016-05-19 21:43:41 +02:00
Xavier Fernandez cd576e66d5 Add some examples to the docs 2016-05-19 15:31:46 +02:00
Xavier Fernandez 91afd80a39 Fix a bunch of other tests
Add a --no-index to avoid network calls
2016-05-19 15:31:46 +02:00
Xavier Fernandez 1e8b6c2fe7 Improve tests
Demote "Ignoring indexes" log to DEBUG to enable stdout JSON parsing
2016-05-19 15:31:46 +02:00
Xavier Fernandez 6a7f82bae3 Re-add a deprecation warning + some refactors 2016-05-19 15:31:46 +02:00
Xavier Fernandez 5bbc73d145 Add --format option to pip list
with legacy, columns, freeze and json formats
2016-05-19 15:31:46 +02:00
Donald Stufft 5685e0149a Replace pkg_resources.parse_version with packaging.version.parse (#3693) 2016-05-17 16:32:43 -04:00
Xavier Fernandez 4627ef1d14 Merge pull request #3431 from pekkaklarck/patch-1
quickstart: Installing already downloaded package
2016-05-17 17:43:47 +02:00
Pekka Klärck 44e3594608 Fine tuning docs about installing downloaded package
Changed `distribution` to `package` as requested in review commits.
2016-05-17 16:26:42 +03:00
Xavier Fernandez bed1a4c1ef Merge pull request #3690 from xavfernandez/example_numbered_list
docs: use autonumbered examples in docs
2016-05-16 22:07:55 +02:00
Xavier Fernandez 1d2abae9a1 docs: use autonumbered examples in docs 2016-05-16 21:33:51 +02:00
Douglas Thor 6dcd9dac2e Added --columns, --no-columns option to pip list. Fixes #3651 (#3654) 2016-05-12 13:13:48 -04:00
Donald Stufft f00211e51d bump for development 2016-05-10 20:42:28 -04:00
Donald Stufft fb5d0a27c1 Merge branch 'master' into develop 2016-05-10 20:41:31 -04:00
Donald Stufft 281eb61b09 Merge branch 'develop' 2016-05-10 20:38:42 -04:00