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

513 commits

Author SHA1 Message Date
Donald Stufft
f63d1e3abb Implement platform specific user config locations 2014-09-10 11:43:34 -04:00
Donald Stufft
767d11e49c Switch to using the stdlib logger instead of pip.log 2014-09-10 09:36:09 -04:00
anatoly techtonik
aef9dccc92 docs: there are also independent package managers 2014-09-07 22:52:00 +03:00
Marcus Smith
743fb9efcc describe "non-recursive" as "only if needed recursive" 2014-08-24 10:48:36 -07:00
Richard Jones
aedca3c842 Implement site-wide configuration settings
* add site_config_dirs() to appdirs to determine locations across OSes
* add system_config_files to locations.py
* add system_config_files to get_config_files() and re-order files entries to correct precedence
* document changes to configuration files in user guide

Closes #309
2014-08-22 14:26:41 +10:00
Richard Jones
79c0176f12 Remove unnecessary duplicate reference
Fixes issue #1972
2014-08-13 12:24:55 +10:00
Donald Stufft
90688e82b1 Revert "Merge pull request #1519 from dstufft/remove-dependency-links"
This reverts commit da02f073da, reversing
changes made to 2ad8888901.

Conflicts:
	CHANGES.txt
	pip/commands/freeze.py
	pip/commands/list.py
	pip/commands/wheel.py
	pip/index.py
	pip/req/req_set.py
	pip/vcs/subversion.py
2014-08-01 16:50:08 -04:00
Matt Iversen
fcdde73e9f Merge pull request #1627 from techtonik/develop
Update sphinx-generated doc build files
2014-08-01 21:19:23 +10:00
Donald Stufft
bb6c11ed17 Merge pull request #1848 from daviewales/clarify-documentation
Clarify requirement specifier format
2014-06-25 23:47:14 -04:00
Jyrki Pulliainen
2f5b0449ad Document the --no-use-wheel in requirements.txt 2014-06-10 15:36:20 +02:00
David Wales
91eb30195f Clarify requirement specifier format
If you use single or double quotes in a `requirements.txt` file, pip exits with an error. This change clarifies that single or double quotes should only be used in the shell.
2014-05-31 00:02:00 +10:00
Donald Stufft
52ca02608e Use CacheControl instead of custom cache code
* Deprecates the --download-cache option & removes the download
  cache code.
* Removes the in memory page cache on the index
* Uses CacheControl to cache all cacheable HTTP requests to the
  filesystem.
  * Properly handles CacheControl headers for unconditional
    caching.
  * Will use ETag and Last-Modified headers to attempt to do a
    conditional HTTP request to speed up cache misses and turn
    them into cache hits.
  * Removes some concurrency unsafe code in the download cache
    accesses.
  * Uses a Cache-Control request header to limit the maximum
    length of time a cache is valid for.
* Adds pip.appdirs to handle platform specific application
  directories such as cache, config, data, etc.
2014-05-09 18:28:20 -04:00
Donald Stufft
a4fec67bba Merge branch 'master' into develop
Conflicts:
	.travis.yml
	CHANGES.txt
	PROJECT.txt
	README.rst
	docs/installing.rst
	pip/__init__.py
	pip/_vendor/vendor.txt
	setup.py
	tox.ini
2014-05-03 02:37:03 -04:00
Donald Stufft
0e72f65bf4 Merge branch '1.5.X'
Conflicts:
	.travis/py34.sh
	CHANGES.txt
	PROJECT.txt
2014-05-03 01:13:28 -04:00
Donald Stufft
8d0741a0d2 Update documentation to point at the new bootstrap location 2014-05-02 18:55:39 -04:00
Marcus Smith
5adf82b7e7 consistent location for new build interface docs 2014-04-25 22:20:53 -07:00
Alex Gaynor
690ce3e839 Use the real URL, raw.github is just a redirect these days
And some tools don't follow redirects by default.
2014-04-25 12:58:51 -07:00
Marcus Smith
530fc97193 break out the examples so we can add a qualifying footnote for --user installs 2014-04-09 16:53:52 -07:00
Marcus Smith
0867816811 get-pip.py option examples 2014-04-08 22:57:22 -07:00
Florian Briand
4691a9e8b7 Fix conjugation and line length 2014-04-08 22:38:23 -07:00
Florian Briand
60b3579cf8 Add information about command line option
... which can be used with get-pip.py
2014-04-08 22:38:12 -07:00
Dav Clark
a77bd6c64b Note --build-option only available in pip wheel
I got a little confused, per issue #1707.
2014-04-05 11:03:05 -07:00
Paul Moore
264aa69da1 Merge pull request #1675 from pfmoore/docs_setup_py
Document the build system interface used by pip
2014-04-04 17:22:46 +01:00
Donald Stufft
5a76a47d3b Fix code to handle the latest flake8 2014-03-26 18:24:19 -04:00
Jannis Leidel
addfd202df Update IRC channel name. 2014-03-26 22:39:27 +01:00
Marcus Smith
6ab9b30587 pip upgrades on windows 2014-03-26 11:08:00 -07:00
Marcus Smith
86aa5f1daa pip upgrades on windows 2014-03-26 11:05:23 -07:00
Paul Moore
e0cf2b650e Document the build system interface used by pip 2014-03-25 21:56:46 +00:00
Jannis Leidel
4d591cc81c Update IRC channel name. 2014-03-23 14:36:58 +01:00
Marcus Smith
d4b691b743 remove mention of the unreleased virtualenv config support 2014-03-19 22:49:48 -07:00
Matthew Iversen
6181816d8a Use Sphinx extlinks for github issues/pulls
- :issue:`DDD` results in #DDD
- :pull:`DDD` results in PR #DDD
- Updated CHANGES.txt to use these
- Refs PR #1647
2014-03-16 16:31:20 +11:00
Marcus Smith
4068c832c9 fill in missing word in the user guide 2014-03-15 10:04:48 -07:00
Marcus Smith
1f64f882e1 clarify non-recursive upgrades 2014-03-12 22:40:44 -07:00
Marcus Smith
af1d6d52a3 have pip just be an installer for simplicity. remove the vague "manage" description. 2014-03-11 09:08:52 -07:00
Matthew Iversen
d0e6c2fc54 Update docs to ref sorting order of list/freeze 2014-03-09 05:03:28 +11:00
anatoly techtonik
702e1e19ce docs: Remove references to django-compressor 2014-03-08 12:48:05 +03:00
anatoly techtonik
f5f7a292c2 docs: Update makefiles to current Sphinx version 2014-03-08 12:45:02 +03:00
Daniele Procida
68cacfb71d fixes #1615 2014-03-05 18:17:43 -05:00
Daniele Procida
459f026e20 fixes #1589 2014-03-03 23:06:44 +00:00
Tomer Chachamu
91b2674dad Docs -- fix typo 2014-02-27 17:38:04 +00:00
Donald Stufft
95ac4c16f5 Remove dependency links support from pip 2014-02-25 18:39:40 -05:00
Donald Stufft
751eec65f3 Merge branch 'master' into develop
Conflicts:
	CHANGES.txt
	docs/configuration.rst
	docs/cookbook.rst
	docs/reference/pip.rst
	docs/usage.rst
	pip/__init__.py
	pip/commands/install.py
	pip/commands/wheel.py
	pip/req.py
	pip/wheel.py
	tests/unit/test_wheel.py
2014-02-20 20:33:59 -05:00
coagulant
4879bc5e79 Documentation for --exists-action option
Fixes #1458
2014-02-15 02:12:39 +04:00
Marcus Smith
19ef5973cd dropped support for Python 3.1 2014-02-11 22:33:24 -08:00
Marcus Smith
9e39d9d8ca pip docs refactor 2014-02-11 22:13:03 -08:00
Marcus Smith
96bfe8b0f9 pip docs refactor 2014-02-11 21:55:43 -08:00
Marcus Smith
ffcd44c716 remove pip wheel warnings due to merge of #1524 2014-02-04 22:15:43 -08:00
Donald Stufft
9f027337a8 Use Flake8 on the test of pip's Python files 2014-01-28 19:47:58 -05:00
Marcus Smith
4238127440 pip wheel warning when wheels are already available on pypi 2014-01-25 11:33:35 -08:00
Marcus Smith
6d25e12dc8 pip wheel warning when wheels are already available on pypi 2014-01-25 11:32:22 -08:00