Skip to content

Commit

Permalink
updated dependencies and fixed linter error
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelgrinberg committed Nov 9, 2018
1 parent 4a030d2 commit 015ea20
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions examples/wsgi/django_example/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Django==1.11.1
django==2.1.3
enum-compat==0.0.2
eventlet==0.21.0
greenlet==0.4.12
python-engineio
python-socketio
pytz==2017.2
pytz==2018.7
six==1.10.0
14 changes: 7 additions & 7 deletions examples/wsgi/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
click==6.7
Click-7.0
enum-compat==0.0.2
enum34==1.1.6
eventlet==0.20.1
Flask==0.12
Flask==1.0.2
greenlet==0.4.12
itsdangerous==0.24
Jinja2==2.9.5
MarkupSafe==0.23
itsdangerous==1.1.0
Jinja2==2.10
MarkupSafe==1.1.0
packaging==16.8
pyparsing==2.1.10
python-engineio
python-socketio
six==1.10.0
Werkzeug==0.11.15
six==1.11.0
Werkzeug==0.14.1
2 changes: 1 addition & 1 deletion socketio/zmq_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def __init__(self, url='zmq+tcp://localhost:5555+5556',
'(Run "pip install pyzmq" in your '
'virtualenv).')

r = re.compile(':\d+\+\d+$')
r = re.compile(r':\d+\+\d+$')
if not (url.startswith('zmq+tcp://') and r.search(url)):
raise RuntimeError('unexpected connection string: ' + url)

Expand Down

0 comments on commit 015ea20

Please sign in to comment.