summaryrefslogtreecommitdiff
path: root/setuptools/package_index.py
Commit message (Collapse)AuthorAgeFilesLines
* Remove use of splituser in packag_index.py. Fixes #1499.Jason R. Coombs2018-12-151-6/+10
|
* Deprecate Subversion download functionality. Ref #1502. Used UserWarning ↵Jason R. Coombs2018-09-231-0/+2
| | | | instead of DeprecationWarning so it's visible to users who might be relying on this functionality.
* Use preferred interface, fixing DeprecationWarning on later Pythons.Jason R. Coombs2018-09-231-2/+1
|
* Remove spurious executable permissionsMiro Hrončok2018-07-271-0/+0
|
* Add test and adjust match. Fixes #1366.Jason R. Coombs2018-06-061-2/+9
|
* Remove stale comment, added in 8cc0d5c2 and made meaningless in 26eee297.Jason R. Coombs2018-06-031-1/+0
|
* Use raw strings for regexesJason R. Coombs2018-06-031-3/+3
|
* Use Python 3 syntax for new-style clasessJason R. Coombs2018-06-031-2/+4
|
* Update all pypi.python.org URLs to pypi.orgJon Dufresne2018-04-261-1/+1
| | | | | | For details on the new PyPI, see the blog post: https://pythoninsider.blogspot.ca/2018/04/new-pypi-launched-legacy-pypi-shutting.html
* Rely on stdlib to decode entities.Jason R. Coombs2018-03-171-15/+2
|
* Use six for splituserJason R. Coombs2018-03-171-7/+2
|
* easy_install: add support for installing from wheelsBenoit Pierre2017-11-261-1/+13
| | | | | | | | | | Note: wheels are installed as eggs, so each install is self-contained and multiple versions of the same package can be installed at the same time. Limitations: - headers are not supported - resulting egg metadata requirements have their markers stripped
* Merge branch 'master' into drop-py26Jason R. Coombs2017-11-191-17/+28
|\
| * Feed the hobgoblins (delint).Jason R. Coombs2017-11-141-15/+26
| |
| * Update broken link. Fixes #1197.Jason R. Coombs2017-11-141-1/+1
| |
| * Use platform-friendly syntax for Mercurial checkouts. Fixes #170.Jason R. Coombs2017-09-131-1/+1
| |
* | Merge branch 'master' into drop-py26Jason R. Coombs2017-09-031-7/+7
|\ \ | |/
| * Merge branch 'master' into feature/re-vendor-sadfaceJason R. Coombs2017-05-301-4/+4
| |\
| | * Python 3.6 invalid escape sequence deprecation fixesVille Skyttä2017-02-241-4/+4
| | |
| * | Revert "Merge pull request #933 from pypa/feature/581-depend-not-bundle"Jason R. Coombs2017-02-241-2/+2
| |/ | | | | | | | | This reverts commit 089cdeb489a0fa94d11b7307b54210ef9aa40511, reversing changes made to aaec654d804cb78dbb6391afff721a63f26a71cd.
| * An epoch starts with a number followed by '!'.Moriyoshi Koizumi2017-02-131-1/+1
| |
| * A local version label starts with '+' sign, as per ↵Moriyoshi Koizumi2017-02-131-1/+1
| | | | | | | | https://www.python.org/dev/peps/pep-0440/#id23
| * Merge with masterJason R. Coombs2017-01-161-2/+2
| |\
| | * Restore setuptools import, falsely identified as an unused import by linter.Jason R. Coombs2017-01-161-1/+2
| | |
| | * Remove unused importsJason R. Coombs2017-01-161-2/+1
| | |
| * | Strip out vendored packages and require them instead. Ref #581.Jason R. Coombs2017-01-011-2/+2
| |/
* | Drop support for Python 2.6, removing lots of compatibility code for a ↵Jason R. Coombs2016-12-091-2/+1
|/ | | | leaner, cleaner codebase. Fixes #878.
* package_index: fix bug not catching some network timeoutsJulien Muchembled2016-11-141-1/+1
| | | | | | | | | | | There are already so many exceptions catched, like socket errors (e.g. failure in name resolution) or HTTP errors. Depending on when a timeout occurs, it is either catched (URLError during the SSL handshake) or not (socket.error while getting a HTTP response). When used by buildout, this fixes random failures when running in newest mode (which is the default case), or when the requested version is available in the download-cache.
* Fix spacing after comment hash.stepshal2016-10-251-3/+3
|
* Fix spacing after comment hash.stepshal2016-10-191-18/+18
|
* Fix quantity of blank lines.stepshal2016-10-181-2/+5
|
* Add missing whitespace.stepshal2016-09-181-1/+1
|
* Don't duplicate error case in package_indexSteve Kowalik2016-09-131-7/+10
| | | | | | | easy_install has code to handle parsing a requirement, catching the ValueError and then raising a DistUtilsError. This code was entirely duplicated in package_index, so I've slightly refactored to remove the duplication.
* In package_index, reindent long lines.Jason R. Coombs2016-08-031-4/+12
|
* Fix logging using arguments instead of formatterValentin Valls2016-08-031-2/+1
|
* specify that no 'working' links were found, previous behaviour didn't check ↵Jens Timmerman2016-07-251-1/+1
| | | | if downloads could succeed
* pick better names for variablesJens Timmerman2016-07-251-4/+3
|
* don't return a tuple, add a new attribute to current returnvalueJens Timmerman2016-07-251-7/+7
|
* addressed remarks, None, None since a tuple is expectedJens Timmerman2016-07-251-2/+3
|
* check if a download is successfull before deciding not to try the next ↵Jens Timmerman2016-07-251-6/+8
| | | | possible dist
* Add missing blank lines after class or function definition.stepshal2016-07-211-0/+3
|
* Put colon-separated compound statement on separate lines.stepshal2016-07-211-7/+14
|
* Merge pull request #644 from stepshal/spacing-comment-hashJason R. Coombs2016-07-201-1/+1
|\ | | | | Fix spacing after comment hash.
| * Fix spacing after comment hash.stepshal2016-07-141-1/+1
| |
* | Merge pull request #640 from stepshal/parameterJason R. Coombs2016-07-201-3/+3
|\ \ | | | | | | Remove whitespace around parameter '=' sign.
| * | Remove whitespace around parameter '=' sign.stepshal2016-07-141-3/+3
| |/
* | Fix missing whitespace around operator.stepshal2016-07-141-20/+20
|/
* Merge pull request #648 from stepshal/blank_linesJason R. Coombs2016-07-131-0/+1
|\ | | | | Add missing blank line.
| * Add missing blank line.stepshal2016-07-141-0/+1
| |
* | Add missing whitespace.stepshal2016-07-141-37/+37
|/