Skip to content

Commit

Permalink
Release 7.3.1: Bug fix for get_install_requires() in setup script (fixes
Browse files Browse the repository at this point in the history
 #43)
  • Loading branch information
xolox committed Nov 23, 2017
1 parent c446f3b commit aeb026d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions coloredlogs/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Colored terminal output for Python's logging module.
#
# Author: Peter Odding <peter@peterodding.com>
# Last Change: August 7, 2017
# Last Change: November 23, 2017
# URL: https://coloredlogs.readthedocs.io

"""
Expand Down Expand Up @@ -199,7 +199,7 @@
NEED_COLORAMA = WINDOWS

# Semi-standard module versioning.
__version__ = '7.3'
__version__ = '7.3.1'

DEFAULT_LOG_LEVEL = logging.INFO
"""The default log level for :mod:`coloredlogs` (:data:`logging.INFO`)."""
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Setup script for the `coloredlogs' package.
#
# Author: Peter Odding <peter@peterodding.com>
# Last Change: May 18, 2017
# Last Change: November 23, 2017
# URL: https://coloredlogs.readthedocs.io

"""
Expand Down Expand Up @@ -48,7 +48,7 @@ def get_install_requires():
install_requires = get_requirements('requirements.txt')
if 'bdist_wheel' not in sys.argv:
if sys.platform == 'win32':
install_requires.extend('colorama')
install_requires.append('colorama')
return sorted(install_requires)


Expand Down

0 comments on commit aeb026d

Please sign in to comment.