- 09 Sep, 2017 6 commits
-
-
Jason R. Coombs authored
-
Jason R. Coombs authored
-
Jason R. Coombs authored
-
Jason R. Coombs authored
-
Jason R. Coombs authored
-
Jason R. Coombs authored
-
- 03 Sep, 2017 18 commits
-
-
Jason R. Coombs authored
Fix Python 2.6 support
-
Benoit Pierre authored
-
Jason R. Coombs authored
-
Jason R. Coombs authored
pkg_resources: do not call stat() and access()
-
Jason R. Coombs authored
-
Jason R. Coombs authored
-
Jason R. Coombs authored
Improve README file list handling and add Markdown to the current list
-
Jason R. Coombs authored
-
Jason R. Coombs authored
pkg_resources: improve `WorkingSet.resolve(replace_conflicting=True)`
-
Jason R. Coombs authored
-
Jason R. Coombs authored
workaround easy_install bug
-
Jason R. Coombs authored
-
Jason R. Coombs authored
-
Jason R. Coombs authored
Add new long_description_content_type kwarg
-
Jason R. Coombs authored
-
Jason R. Coombs authored
Sort file lists
-
Jason R. Coombs authored
-
Jason R. Coombs authored
-
- 31 Aug, 2017 1 commit
-
-
Samuel Gaist authored
Markdown is a widely used format to write README files and documentation. This patch aims to simplify adding new formats and at the same time adds that one to the list.
-
- 29 Aug, 2017 2 commits
-
-
Benoit Pierre authored
-
Benoit Pierre authored
Correctly replace conflicting distributions in sub-requirements if possible (instead of only for top-level requirements passed as arguments). Fix #1124.
-
- 28 Aug, 2017 13 commits
-
-
Dustin Ingram authored
-
Dustin Ingram authored
-
Marc Abramowitz authored
Test that specifying a `long_description_content_type` keyword arg to the `setup` function results in writing a `Description-Content-Type` line to the `PKG-INFO` file in the `<distribution>.egg-info` directory. `Description-Content-Type` is described at https://github.com/pypa/python-packaging-user-guide/pull/258
-
Marc Abramowitz authored
This is used to populate the new `Description-Content-Type` field. `Description-Content-Type` is described at https://github.com/pypa/python-packaging-user-guide/pull/258
-
Jason R. Coombs authored
-
Jason R. Coombs authored
Allow combining several files in metadata.long_description
-
Jason R. Coombs authored
-
Jason R. Coombs authored
-
Jason R. Coombs authored
-
Jason R. Coombs authored
-
Jason R. Coombs authored
-
Jason R. Coombs authored
If one wishes to test both 'mixed' and 'sandboxed', let's create a separate test for that, but it's probably unnecessary.
-
Julien Danjou authored
The current code in find_on_path is doing a lot of stat() calls which are actually useless and prone to race conditions. As described in Python documentation (https://docs.python.org/3/library/os.html#os.access), os.access must not be used before opening a file. Same goes for a directory. This patch removes those checks by handling exceptions correctly when using os.listdir() instead, which improves pkg_resources import time.
-