diff --git a/HISTORY.rst b/HISTORY.rst index 0c1fa5af..2a77543d 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,8 +1,8 @@ Release History =============== -0.11.0 (2015-?) ---------------- +1.0.0 (2015-?) +-------------- * Added support for *ARM*-based credit-card computers: `Raspberry Pi `_, `BeagleBoard `_ and `CubieBoard `_ @@ -20,6 +20,8 @@ Release History * Allowed to ignore some libs from *Library Dependency Finder* via `ignore_libs `_ option * Fixed an issue with the libraries that are git repositories (`issue #49 `_) +* Fixed `AttributeError: 'module' object has no attribute 'disable_warnings'` + when a version of `requests` package is less then 2.4.0 0.10.2 (2015-01-06) diff --git a/setup.py b/setup.py index 7db2c825..832d4a0b 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ setup( install_requires=[ "click", "pyserial", - "requests", + "requests>=2.4.0", # "SCons" ] + (["colorama"] if system() == "Windows" else []), packages=find_packages(),