Skip to content

Commit 3687ea1

Browse files
committed
lower colorama for python 3.4
1 parent a18a43e commit 3687ea1

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

Pipfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ autopep8 = "~=1.4"
1616
[packages]
1717
pipfile = "~=0.0"
1818
black = {markers = "python_version>='3.6'",version = "==19.10b0"}
19-
colorama = "~=0.4"
19+
# colorama dropped support for python 3.4 in 0.4.3
20+
colorama = "<=0.4.1"
2021
packaging = "~=19.1"
2122
requirementslib = "~=1.5"
2223
vistir = "~=0.4"

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787
# 3 - Alpha
8888
# 4 - Beta
8989
# 5 - Production/Stable
90-
"Development Status :: 4 - Beta",
90+
"Development Status :: 5 - Production/Stable",
9191
# Indicate who your project is intended for
9292
"Intended Audience :: Developers",
9393
"Topic :: Software Development :: Build Tools",
@@ -149,7 +149,7 @@
149149
install_requires=[
150150
"pipfile~=0.0",
151151
"black==19.10b0; python_version >= '3.6'",
152-
"colorama~=0.4",
152+
"colorama<=0.4.1",
153153
"packaging~=19.1",
154154
"requirementslib~=1.5",
155155
"vistir~=0.4",

0 commit comments

Comments
 (0)