Skip to content

Commit 4f4ff43

Browse files
fix(pain001): 'install_requires' must be a string
1 parent da475d9 commit 4f4ff43

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

setup.py

+12-12
Original file line numberDiff line numberDiff line change
@@ -57,18 +57,18 @@
5757
""",
5858
packages=find_packages(),
5959
install_requires=[
60-
"click==^8.1.7",
61-
"colorama==^0.4.6",
62-
"defusedxml==^0.7.1",
63-
"elementpath==^4.1.5",
64-
"jinja2==^3.1.2",
65-
"markdown-it-py==^3.0.0",
66-
"markupsafe==^2.1.3",
67-
"mdurl==^0.1.2",
68-
"pygments==^2.16.1",
69-
"python==^3.9",
70-
"rich==^13.5.2",
71-
"xmlschema==^2.4.0",
60+
"click>=8.1.7",
61+
"colorama>=0.4.6",
62+
"defusedxml>=0.7.1",
63+
"elementpath>=4.1.5",
64+
"jinja2>=3.1.2",
65+
"markdown-it-py>=3.0.0",
66+
"markupsafe>=2.1.3",
67+
"mdurl>=0.1.2",
68+
"pygments>=2.16.1",
69+
"python>=3.9",
70+
"rich>=13.5.2",
71+
"xmlschema>=2.4.0",
7272
],
7373
setup_requires=setup_requirements,
7474
tests_require=test_requirements,

0 commit comments

Comments
 (0)