Changelog¶
1.1.0 (18-Dec-2019)
#8 Fix sdist packaging and tests – contributed by @jayvdb
Add Python 3.5-3.8 as supported versions
Remove explicit support for Python 2.6 and 3.4
1.0.5 (15-Aug-2014)
Add the –install-test-requirements command line option.
Add the –install-extra-requirements command line option.
1.0.4 (02-Aug-2014)
Add
from future import absolute_importto make the extension safe on older Python versions.Make it safe to use without a
setup_requireskeyword.
1.0.3 (30-Jul-2014)
Fix
setup.py test. It was hanging forever unless you passed it additional parameters.
1.0.2 (30-Jul-2014)
Added
read_requirements_from_filefunction.
1.0.1 (27-Jul-2014)
Worked around a problem with py.test output capturing and Python 3.x. It looks like they are patching
sys.stdoutand friends with something that does not have aerrorsattribute so distutils/log.py is blowing up on line 30:if stream.errors == 'strict'.For some reason, switching to
--capture=sysseems to work correctly. I have a feeling that this will be fixed when py.test 2.6 shows up.
1.0.0 (27-Jul-2014)
Initial revision that supported the
requirementscommand.