Skip to content

Commit

Permalink
Lock tornado version to 4.5.3 to avoid 5.0, which breaks with:
Browse files Browse the repository at this point in the history
  File "[...]/lib/python3.4/site-packages/wpull/abstract/client.py", line 9, in <module>
    from wpull.connection import ConnectionPool
  File "[...]/lib/python3.4/site-packages/wpull/connection.py", line 11, in <module>
    from tornado.netutil import SSLCertificateError
ImportError: cannot import name 'SSLCertificateError'
  • Loading branch information
ivan committed Mar 6, 2018
1 parent 82de2f2 commit 5a05fa9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion libgrabsite/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.5.4'
__version__ = '1.5.5'
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
"lmdb>=0.89",
"autobahn>=0.12.1",
"trollius>=2.1",
"html5lib==0.9999999"
"html5lib==0.9999999",
"tornado==4.5.3",
]

if 'GRAB_SITE_NO_CCHARDET' not in os.environ:
Expand All @@ -31,7 +32,7 @@
author_email="ivan@ludios.org",
classifiers=[
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Topic :: Internet :: WWW/HTTP",
Expand Down

0 comments on commit 5a05fa9

Please sign in to comment.