Skip to content

Commit 071e184

Browse files
committed
Relax version requirements for utility packags
With the introduction of the new (stricter) dependency resolver in Pip, very strict requirements are problematic for a lot of people.
1 parent 7e3d4b8 commit 071e184

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,10 @@ def run(self):
6161
python_requires=">=3.6",
6262
install_requires=[
6363
"Django>=2.0",
64-
"enforce==0.3.4",
65-
"python-dateutil==2.8.0",
64+
"enforce>=0.3.4,<=1.0.0",
65+
"python-dateutil>=2.8.0,<=3.0.0",
6666
"structlog>=19,<=20.1.0",
67-
"ansimarkup==1.4.0",
67+
"ansimarkup>=1.4.0,<=2.0.0",
6868
],
6969
extras_require={
7070
':python_version <= "3.6"': ["dataclasses"],

0 commit comments

Comments
 (0)