summaryrefslogtreecommitdiff
path: root/setuptools/tests/files.py
Commit message (Collapse)AuthorAgeFilesLines
* Remove pkg_resources.py31compat.makedirs() in favor of the stdlibJon Dufresne2020-02-161-4/+1
| | | | | As setuptools is now python 3.5+, this compatibility shim is no longer necessary.
* Feed the hobgoblins (delint).Jason R. Coombs2019-01-261-3/+6
|
* Remove use of compatibility shim six.binary_typeJon Dufresne2018-09-141-2/+1
| | | | | The type bytes is available on all supported Pythons. Makes the code more forward compatible with Python 3.
* Setuptools now vendors its own direct dependencies (packaging, six, ↵Jason R. Coombs2018-03-171-1/+1
| | | | pyparsing). Ref #1296.
* fix encoding handling of wheels metadataBenoit Pierre2017-11-261-2/+7
|
* Use makedirs with future compatibility throughout setuptools. Ref #1083.Jason R. Coombs2017-07-131-2/+4
|
* Added test utility for building files quickly.Luke Plant2015-10-191-0/+32
And made use of it in test_egg_info.