Skip to content

Commit 084b02c

Browse files
committed
Unpin versions in setup.py (2nd attempt)
This patch unpins versions in setup.py since they are pinned in requirements.txt. This is effectively a revert of 11c2d9e and 8fc27f4. When we originally unpinned versions from setup.py, some clients were running `setup.py` directly to install `lnt`, which means they started fetching untested and incompatible versions of packages. Since then, we've documented the new installation procedure based on pip and our pinned requirements (in #70).
1 parent e538304 commit 084b02c

File tree

1 file changed

+13
-16
lines changed

1 file changed

+13
-16
lines changed

setup.py

Lines changed: 13 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -115,24 +115,21 @@
115115
],
116116
},
117117
install_requires=[
118-
"six",
119-
"aniso8601==1.2.0",
120-
"Flask==0.12.2",
121-
"Flask-RESTful==0.3.4",
122-
"Jinja2==2.11.3",
123-
"MarkupSafe==1.1.1",
124-
"SQLAlchemy==1.3.24",
125-
"Werkzeug==0.15.6",
126-
"itsdangerous==0.24",
127-
"python-gnupg==0.3.7",
128-
"pytz==2016.10",
118+
"aniso8601",
119+
"certifi",
120+
"click",
121+
"Flask-RESTful",
122+
"Flask-WTF",
123+
"Flask",
124+
"Jinja2",
125+
"MarkupSafe",
126+
"python-gnupg",
129127
"pyyaml",
130-
"WTForms==2.0.2",
131-
"Flask-WTF==0.12",
132-
"typing",
133-
"click==6.7",
134128
"requests",
135-
"certifi"
129+
"SQLAlchemy",
130+
"typing",
131+
"Werkzeug",
132+
"WTForms",
136133
],
137134

138135
ext_modules=[cPerf],

0 commit comments

Comments
 (0)