Skip to content

Commit c11c336

Browse files
committed
Don't attempt to install wsgiref under Python 3.x
The wsgiref install fails in Python 3.6 due to a syntax error, but the library appears to already be available as part of the standard library. This change adds a pip directive to only install wsgiref under Python 2.
1 parent ff7ca6f commit c11c336

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ pymc==2.3.4
55
pyzmq>=13.1.0
66
scipy>=0.12.0
77
tornado>=3.0.2
8-
wsgiref>=0.1.2
8+
wsgiref>=0.1.2; python_version < '3.0'
99
praw>=2.0.0
1010
jinja2

0 commit comments

Comments
 (0)