Change the hard pin on u-msgpack-python

This commit is contained in:
Gavin M. Roy 2017-10-19 10:34:25 -04:00
parent b742e1526e
commit 07339af919
4 changed files with 7 additions and 3 deletions

View file

@ -1,6 +1,10 @@
Version History Version History
=============== ===============
`1.0.7`_ Oct 19, 2017
---------------------
- Change the hard pin requirement on umsgpack
`1.0.6`_ Aug 16, 2017 `1.0.6`_ Aug 16, 2017
--------------------- ---------------------
- Add ``max_http_attempts`` keyword param - Add ``max_http_attempts`` keyword param

View file

@ -1,3 +1,3 @@
ietfparse>=1.4.1,<2 ietfparse>=1.4.1,<2
tornado>=4.2.0,<5.0.0 tornado>=4.2.0,<5.0.0
u-msgpack-python==2.1 u-msgpack-python>=2.1,<3

View file

@ -23,7 +23,7 @@ def read_requirements(name):
setuptools.setup( setuptools.setup(
name='sprockets.mixins.http', name='sprockets.mixins.http',
version='1.0.6', version='1.0.7',
description='HTTP Client Mixin for Tornado RequestHandlers', description='HTTP Client Mixin for Tornado RequestHandlers',
long_description=open('README.rst').read(), long_description=open('README.rst').read(),
url='https://github.com/sprockets/sprockets.mixins.http', url='https://github.com/sprockets/sprockets.mixins.http',

View file

@ -16,7 +16,7 @@ from ietfparse import algorithms, errors, headers
from tornado import gen, httpclient from tornado import gen, httpclient
import umsgpack import umsgpack
__version__ = '1.0.6' __version__ = '1.0.7'
LOGGER = logging.getLogger(__name__) LOGGER = logging.getLogger(__name__)