Skip to content

Commit da28477

Browse files
committed
fix: correct installing colorama package
this is somehow lost in the lates version of click..
1 parent 505f473 commit da28477

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

bundled_requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ pluggy>=1.0.0
44
tomli>=2.0.0
55
tomli_w>=1.0.0
66
platformdirs>=3.2.0,<4.3.0
7+
colorama>=0.4.6

packages/plugin/pyproject.toml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name = "robotcode-plugin"
77
description = 'Some classes for RobotCode plugin management'
88
readme = { "file" = "README.md", "content-type" = "text/markdown" }
99
requires-python = ">=3.8"
10-
license = {text = "Apache-2.0"}
10+
license = { text = "Apache-2.0" }
1111
keywords = []
1212
authors = [{ name = "Daniel Biehl", email = "[email protected]" }]
1313
classifiers = [
@@ -25,7 +25,12 @@ classifiers = [
2525
"Framework :: Robot Framework",
2626
"Framework :: Robot Framework :: Tool",
2727
]
28-
dependencies = ["click>=8.0.0", "pluggy>=1.0.0", "tomli_w>=1.0.0"]
28+
dependencies = [
29+
"click>=8.1.0",
30+
"pluggy>=1.0.0",
31+
"tomli_w>=1.0.0",
32+
"colorama>=0.4.6",
33+
]
2934
dynamic = ["version"]
3035

3136
[project.urls]

0 commit comments

Comments
 (0)