SHA256
1
0
forked from pool/python-pip

Accepting request 133376 from home:poorboywilly:branches:devel:languages:python

Update to 1.2.1.  Note: dropped support for python 2.4.

OBS-URL: https://build.opensuse.org/request/show/133376
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=17
This commit is contained in:
Ismail Dönmez
2012-09-10 10:50:27 +00:00
committed by Git OBS Bridge
parent dd09f955ef
commit 8b9fd993e9
6 changed files with 57 additions and 13 deletions

View File

@@ -1,3 +1,49 @@
-------------------------------------------------------------------
Sat Sep 8 22:31:31 UTC 2012 - os-dev@jacraig.com
- Update to 1.2.1:
* Fixed a regression introduced in 1.2 about raising an exception when
not finding any files to uninstall in the current environment.
- Changes from 1.2:
* **Dropped support for Python 2.4** The minimum supported Python version is
now Python 2.5.
* Fixed issue #605 - pypi mirror support broken on some DNS responses.
* Fixed issue #355 - pip uninstall removes files it didn't install.
* Fixed issues #493, #494, #440, and #573 related to improving support for
the user installation scheme.
* Write failure log to temp file if default location is not writable.
* Pull in submodules for git editable checkouts. Fixes #289 and #421.
* Use a temporary directory as the default build location outside of a
virtualenv. Fixes issues #339 and #381.
* Added support for specifying extras with local editables.
* Added ``--egg`` flag to request egg-style rather than flat installation.
Refs issue #3.
* Fixed issue #510 - prevent e.g. ``gmpy2-2.0.tar.gz`` from matching a
request to ``pip install gmpy``; sdist filename must begin with full
project name followed by a dash.
* Fixed issue #504 - allow package URLS to have querystrings.
* Fixed issue #58 - pip freeze now falls back to non-editable format rather
than blowing up if it can't determine the origin repository of an editable.
* Added a `__main__.py` file to enable `python -m pip` on Python versions
that support it.
* Fixed issue #487 - upgrade from VCS url of project that does exist on
index.
* Fixed issue #486 - fix upgrade from VCS url of project with no distribution
on index.
* Fixed issue #427 - clearer error message on a malformed VCS url.
* Added support for using any of the built in guaranteed algorithms in
``hashlib`` as a checksum hash.
* Fixed issue #321 - Raise an exception if current working directory can't be
found or accessed.
* Fixed issue #82 - Removed special casing of the user directory and use the
Python default instead.
* Fixed #436 - Only warn about version conflicts if there is actually one.
This re-enables using ``==dev`` in requirements files.
* Moved tests to be run on Travis CI: http://travis-ci.org/pypa/pip
* Added a better help formatter.
- Remove %check section: there is no test directory so it won't get executed.
- Fix Python 3 build.
-------------------------------------------------------------------
Mon Apr 30 13:34:45 UTC 2012 - toddrme2178@gmail.com