| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Get VersionConflict from pkg_resources.19.4 | Jason R. Coombs | 2016-01-16 | 1 | -1/+1 |
| | | |||||
| * | Re-use tarfile_open for Python 2.6 compatibilty. | Jason R. Coombs | 2016-01-16 | 1 | -6/+2 |
| | | |||||
| * | Just use BytesIO | Jason R. Coombs | 2016-01-16 | 1 | -7/+1 |
| | | |||||
| * | Update changelog | Jason R. Coombs | 2016-01-16 | 1 | -2/+8 |
| | | |||||
| * | Merged in embray/setuptools (pull request #167) | Jason R. Coombs | 2016-01-16 | 4 | -42/+245 |
| |\ | | | | | | | Possible fix for #207 | ||||
| | * | Sort __path__ entries for namespace packages according to their order | Erik Bray | 2016-01-06 | 2 | -11/+51 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | in sys.path. This ensures that lookups in __path__ will be the same as sys.path resolution. This also adds a replace argument to Distribution.insert_on meant to be used with the replace argumen to WorkingSet.add. This ensures that new sys.path entries added via WorkingSet.add are inserted at the beginning, rather than appended to the end. This is necessary for consistency with the above change, and kind of makes more sense anyways. This means that if a Distribution is added to a WorkingSet, that replaces a different version of that Distribution, the new version of that Distribution will have its location first on sys.path. | ||||
| | * | Fixes the original root cause of #231, and re-enables the test when the ↵ | Erik Bray | 2015-12-31 | 2 | -8/+27 |
| | | | | | | | | | tempdir is a symlink (this does not explicitly test that /tmp itself is a symlink, but the effect is the same--only one of the path levels needs to be a symlink to reproduce this isssue) | ||||
| | * | Adds the regression test for distribute issue 323 that I attached to #207. ↵ | Erik Bray | 2015-12-31 | 2 | -29/+173 |
| | | | | | | | | | This is to ensure that any fix to #207 does not introduce another regression. | ||||
| * | | Remove script as it's no longer needed. Fixes #432. | Jason R. Coombs | 2016-01-16 | 1 | -260/+0 |
| | | | |||||
| * | | Pin to 1.6.4 due to https://github.com/pypa/twine/issues/158. Ref #432. | Jason R. Coombs | 2016-01-16 | 1 | -1/+1 |
| | | | |||||
| * | | Omit cert and client_cert, the latest release of twine is different than ↵ | Jason R. Coombs | 2016-01-16 | 1 | -2/+0 |
| | | | | | | | | | what is seen in master. | ||||
| * | | Copy all the defaults from twine.commands.upload, as they're not exposed in ↵ | Jason R. Coombs | 2016-01-16 | 1 | -1/+14 |
| | | | | | | | | | the API. Ref #432 | ||||
| * | | Fix two failures in sorting where filename parts became a factor in the ↵ | Jason R. Coombs | 2016-01-16 | 1 | -3/+10 |
| | | | | | | | | | version. Ref #432. | ||||
| * | | Always use Python 3 version of map | Jason R. Coombs | 2016-01-16 | 18 | -7/+26 |
| | | | |||||
| * | | Prefer relpath to string slicing for computing a path relative to a base. ↵ | Jason R. Coombs | 2016-01-16 | 2 | -4/+8 |
| | | | | | | | | | Fixes #341. | ||||
| * | | Reindent | Jason R. Coombs | 2016-01-16 | 1 | -11/+11 |
| | | | |||||
| * | | Extract function for getting data files for package. | Jason R. Coombs | 2016-01-16 | 1 | -4/+4 |
| | | | |||||
| * | | Remove superfluous local variable | Jason R. Coombs | 2016-01-16 | 1 | -2/+2 |
| | | | |||||
| * | | Move trailing comment to docstring | Jason R. Coombs | 2016-01-16 | 1 | -1/+2 |
| | | | |||||
| * | | Bumped to 19.4 in preparation for next release. | Jason R. Coombs | 2016-01-15 | 1 | -1/+1 |
| | | | |||||
| * | | Added tag 19.3 for changeset 32bba9bf8cce | Jason R. Coombs | 2016-01-15 | 1 | -0/+1 |
| | | | |||||
| * | | Update changelog19.3 | Jason R. Coombs | 2016-01-06 | 1 | -0/+2 |
| |/ | |||||
| * | Added tag 19.3b1 for changeset 66fa131a0d77 | Jason R. Coombs | 2016-01-04 | 1 | -0/+1 |
| | | |||||
| * | Merge feature/issue-22919.3b1 | Jason R. Coombs | 2016-01-04 | 38 | -273/+1154 |
| |\ | |||||
| | * | Use six in pkg_resources. | Jason R. Coombs | 2016-01-04 | 2 | -25/+11 |
| | | | | | | | | | | | --HG-- branch : feature/issue-229 | ||||
| | * | Move six to pkg_resources for use there. | Jason R. Coombs | 2016-01-04 | 7 | -9/+6 |
| | | | | | | | | | | | --HG-- branch : feature/issue-229 | ||||
| | * | Extract variable for extant name. Add comment about the hack. | Jason R. Coombs | 2016-01-02 | 1 | -3/+9 |
| | | | | | | | | | | | --HG-- branch : feature/issue-229 | ||||
| | * | Add some docstrings | Jason R. Coombs | 2016-01-02 | 1 | -0/+13 |
| | | | | | | | | | | | --HG-- branch : feature/issue-229 | ||||
| | * | Based on experimentation, the canonical module name needs to be in ↵ | Jason R. Coombs | 2016-01-02 | 1 | -1/+4 |
| | | | | | | | | | | | | | | | sys.modules on Python prior to 3.3, but must be omitted on Python 3.3 and later. --HG-- branch : feature/issue-229 | ||||
| | * | Combine separate VendorImporters into a single one in pkg_resources.extern | Jason R. Coombs | 2016-01-02 | 3 | -45/+2 |
| | | | | | | | | | | | --HG-- branch : feature/issue-229 | ||||
| | * | Pop the module off the stack, preventing the 'Version' class from having a ↵ | Jason R. Coombs | 2016-01-02 | 2 | -4/+2 |
| | | | | | | | | | | | | | | | different manifestation in packaging than in pkg_resources. --HG-- branch : feature/issue-229 | ||||
| | * | Make VendorImporter more generic | Jason R. Coombs | 2016-01-02 | 2 | -26/+40 |
| | | | | | | | | | | | --HG-- branch : feature/issue-229 | ||||
| | * | Create a PEP 302 importer for managing conditional import of vendored ↵ | Jason R. Coombs | 2016-01-02 | 4 | -90/+84 |
| | | | | | | | | | | | | | | | packages from the 'extern' namespace. This technique avoids the use of 'imp' and works even when setuptools is installed as a zipped egg. Ref #229. --HG-- branch : feature/issue-229 | ||||
| | * | Move extern.packaging into a package to enable package-relative imports to ↵ | Jason R. Coombs | 2016-01-01 | 1 | -0/+0 |
| | | | | | | | | | | | | | | | resolve propertly. Ref #229. --HG-- branch : feature/issue-229 | ||||
| | * | Use the same technique in pkg_resources, relying on an 'extern' module to ↵ | Jason R. Coombs | 2015-12-31 | 7 | -15/+53 |
| | | | | | | | | | | | | | | | resolve the conditional import. --HG-- branch : feature/issue-229 | ||||
| | * | Make the technique even more generic | Jason R. Coombs | 2015-12-31 | 1 | -7/+6 |
| | | | | | | | | | | | --HG-- branch : feature/issue-229 | ||||
| | * | Modeling after Astropy's technique for bundling libraries, the imports are ↵ | Jason R. Coombs | 2015-12-31 | 27 | -160/+77 |
| | | | | | | | | | | | | | | | now much cleaner. Thanks @embray. Ref #229. --HG-- branch : feature/issue-229 | ||||
| | * | Update vendoring technique to match that used for packaging. Ref #229. | Jason R. Coombs | 2015-12-31 | 34 | -68/+1036 |
| | | | | | | | | | | | --HG-- branch : feature/issue-229 | ||||
| | * | Merge with master. Ref #229. | Jason R. Coombs | 2015-12-31 | 68 | -1538/+2973 |
| | |\ | |/ |/| | | | | | --HG-- branch : feature/issue-229 | ||||
| * | | Bumped to 19.3 in preparation for next release. | Jason R. Coombs | 2015-12-25 | 1 | -1/+1 |
| | | | |||||
| * | | Added tag 19.2 for changeset 5d24cf9d1ced | Jason R. Coombs | 2015-12-25 | 1 | -0/+1 |
| | | | |||||
| * | | Bumped to 19.2 in preparation for next release.19.2 | Jason R. Coombs | 2015-12-25 | 1 | -1/+1 |
| | | | |||||
| * | | Update changelog | Jason R. Coombs | 2015-12-25 | 1 | -0/+2 |
| | | | |||||
| * | | Merged in viraptor/setuptools (pull request #162) | Jason R. Coombs | 2015-12-25 | 1 | -2/+2 |
| |\ \ | | | | | | | | | | Fix multiline strings with missing spaces | ||||
| | * | | Fix multiline strings with missing spaces | Stanislaw Pitucha | 2015-12-07 | 1 | -2/+2 |
| | | | | |||||
| * | | | Merge with alternate implementation, preferring DirList approach. | Jason R. Coombs | 2015-12-25 | 0 | -0/+0 |
| |\ \ \ | |||||
| | * | | | Separate _find_egg_info_files into two methods, one for each of the needed ↵ | Jason R. Coombs | 2015-12-25 | 1 | -4/+7 |
| | | | | | | | | | | | | | | | | | outputs. | ||||
| * | | | | Wrap the result in a DirList to avoid tuple unpacking and unused variables | Jason R. Coombs | 2015-12-25 | 1 | -3/+8 |
| |/ / / | |||||
| * | | | Merged pull request #151 - prep work for issue #450. | Jason R. Coombs | 2015-12-25 | 2 | -23/+74 |
| |\ \ \ | |||||
| | * | | | Added test to ensure that egg_info applies MANIFEST.in | Luke Plant | 2015-10-19 | 1 | -2/+17 |
| | | | | | | | | | | | | | | | | | | | | | The 'self.read_template()' line of manifest_maker was previously uncovered by any test, and the test suite passed if you commented it out. | ||||
