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

2743 commits

Author SHA1 Message Date
Marcus Smith 5199d61980 Merge pull request #1476 from schmir/require-version-in-wheel-filename
Require version in wheel filename
2014-01-15 20:33:42 -08:00
Ralf Schmitt 70c42ad26e fix typo in test name 2014-01-16 00:21:04 +01:00
Ralf Schmitt 9815271737 raise InvalidWheelFilename if version is missing in wheel filename
Wheel('Cython-cp27-none-linux_x86_64.whl') did raise an AttributeError
instead of InvalidWheelFilename.

This has also been discussed an is similar to
https://github.com/pypa/pip/pull/1445
2014-01-16 00:18:03 +01:00
Marcus Smith ea97076ce0 Merge pull request #1445 from schmir/fix-wheel-single-digit-version
make sure that wheel files with a single digit version do work
2014-01-15 14:22:39 -08:00
Marcus Smith de3c42cfd4 Merge pull request #1475 from qwcode/get-pip-setuptools
get-pip.py updates (due to vendoring pkg_resources)
2014-01-15 09:28:41 -08:00
Marcus Smith 9d7d0005be simpler install instructions due to get-pip.py installing setuptools 2014-01-14 20:59:20 -08:00
Marcus Smith 8e0e3adc91 have bootstrap install setuptools as well if it's not installed 2014-01-14 20:58:53 -08:00
Marcus Smith 0d34b1d072 remove unneeded setuptools/pkg_resources checks due to vendoring pkg_resources 2014-01-14 20:58:07 -08:00
Donald Stufft e570b81fe2 Merge pull request #1468 from dstufft/python34
Build Python 3.4
2014-01-14 11:59:44 -08:00
Donald Stufft 7dcced8be7 Build Python 3.4 2014-01-14 13:05:46 -05:00
Marcus Smith 2c931f88ec Merge pull request #1464 from qwcode/req_breakup
break up req.py into a package
2014-01-13 14:05:51 -08:00
Marcus Smith 7b55934ba1 use explicit relative imports for Python 3 2014-01-12 10:29:59 -08:00
Marcus Smith a7c522da97 fix references to req methods/classes after refactor 2014-01-12 10:05:11 -08:00
Donald Stufft a69bcd1819 Merge pull request #1461 from dstufft/use-native-string
Return the native string type
2014-01-12 01:45:58 -08:00
Marcus Smith d1634a842f remove req.py 2014-01-11 22:50:27 -08:00
Marcus Smith 48e1a0f480 fix req pkg imports 2014-01-11 22:50:07 -08:00
Donald Stufft 56e0ab565d Revert "The PyPy shipped with travis is now the newest version"
This reverts commit fe8689083c.
2014-01-11 20:30:21 -05:00
Donald Stufft e32b4c6704 Return the native string type 2014-01-11 20:27:14 -05:00
Marcus Smith a135af5301 initial breakup of req.py 2014-01-11 16:50:11 -08:00
Marcus Smith d680fd4f1f merge from 1.5.X 2014-01-11 16:28:00 -08:00
Marcus Smith 6f56681780 show what commands are deprecated in pip -h 2014-01-11 09:59:26 -08:00
Marcus Smith 7822931f59 replace the ez_setup instructions with simple pip commands 2014-01-10 22:42:35 -08:00
Marcus Smith a7e8b9775a Merge pull request #1450 from qwcode/pip_first_install
`get-pip`-first instructions, due to vendoring pkg_resources
2014-01-10 21:00:52 -08:00
Marcus Smith 5b1c5f45c6 use Logger.deprecated for deprecation warnings 2014-01-10 20:59:24 -08:00
Donald Stufft a825cbafd5 Merge pull request #1457 from dstufft/dont-require-external-and-unverified
If --allow-unverified is used assume it also means --allow-external
2014-01-10 08:53:51 -08:00
Donald Stufft 57acb26498 If --allow-unverified is used assume it also means --allow-external 2014-01-10 10:35:55 -05:00
Donald Stufft 33b3397b95 Merge pull request #1455 from dstufft/use-travis-pypy
The PyPy shipped with travis is now the newest version
2014-01-10 04:13:36 -08:00
Donald Stufft 822a12edcf Merge pull request #1454 from dstufft/fix-documentation
The future is pip 1.5
2014-01-10 03:34:05 -08:00
Donald Stufft e44127e4a1 Merge pull request #1453 from dstufft/test-for-setuptools-not-pkg-resources
Explicitly test for setuptools and not pkg_resources
2014-01-10 02:47:05 -08:00
Donald Stufft fe8689083c The PyPy shipped with travis is now the newest version 2014-01-10 05:43:38 -05:00
Donald Stufft dc8852bff2 The future is pip 1.5 2014-01-10 05:07:43 -05:00
Donald Stufft 05e79c23ba Explicitly test for setuptools and not pkg_resources 2014-01-10 05:05:54 -05:00
Marcus Smith 99522535f0 Merge pull request #1451 from qwcode/deprecations
consistent deprecation messages
2014-01-09 20:51:18 -08:00
Marcus Smith d007dc2459 change our readme badge target to pypi 2014-01-09 20:47:46 -08:00
Marcus Smith 4afe71fe47 consistent deprecation messages 2014-01-09 20:28:28 -08:00
Marcus Smith 71addee2be get-pip-first instructions, due to vendoring pkg_resources 2014-01-09 20:13:30 -08:00
Donald Stufft dde99e0e20 Merge pull request #1447 from dstufft/upgrade-requests
Upgraded requests to 2.2.0
2014-01-09 15:15:31 -08:00
Donald Stufft ba53193860 Upgraded requests to 2.2.0 2014-01-09 16:49:19 -05:00
Ralf Schmitt 2ca9ba6521 make sure that wheel files with a single digit version do work
this is a rather serious bug, since it makes 'pip wheel ...' fail with
the following error if the wheelhouse contains such a wheel:

,----
| ...
|   File "/home/ralf/.ve/dev/local/lib/python2.7/site-packages/pip/wheel.py", line 420, in __init__
|     self.version = wheel_info.group('ver').replace('_', '-')
| AttributeError: 'NoneType' object has no attribute 'replace'
`----
2014-01-09 16:15:38 +01:00
Marcus Smith 4047b4b1bd updates docs related to using PEP438 options in requirements files 2014-01-08 15:54:44 -08:00
Donald Stufft 9b8f9445ef Merge pull request #1437 from dstufft/work-with-dns-errors
Don't fail on ConnectionErrors
2014-01-07 12:25:34 -08:00
Donald Stufft b2a60f9088 Dont' fail on ConnectionErrors 2014-01-07 14:36:13 -05:00
Donald Stufft 835e6d76b0 Merge pull request #1435 from dstufft/use-raw-stream
Use the raw stream to prevent decoding the response
2014-01-07 10:29:06 -08:00
Donald Stufft aa6136014f Use the raw stream to prevent decoding the response 2014-01-07 11:57:25 -05:00
Donald Stufft 18c18de96e Merge pull request #1434 from dstufft/vendor-pkg-resources
Vendor pkg_resources
2014-01-07 06:57:35 -08:00
Donald Stufft eeea3b73aa Work around python 2.6 not having `python -m` 2014-01-07 09:03:43 -05:00
Donald Stufft 3f3514bd78 Add setuptools bundling to the changelog 2014-01-07 08:36:26 -05:00
Donald Stufft f934b77d61 Have a nice error when setuptools is not available 2014-01-07 08:36:04 -05:00
Donald Stufft cb7af82f20 Remove the setuptools version check
With the vendoring of pkg_resources we no longer need to worry
about the version of the installed setuptools.
2014-01-07 08:11:28 -05:00
Donald Stufft 073ae0d0b1 Switch to importing the vendored pkg_resources 2014-01-07 04:47:04 -05:00