From 07339af91922be0449c1b85274cfeecf3ee7f32d Mon Sep 17 00:00:00 2001 From: "Gavin M. Roy" Date: Thu, 19 Oct 2017 10:34:25 -0400 Subject: [PATCH] Change the hard pin on u-msgpack-python --- docs/history.rst | 4 ++++ requires/installation.txt | 2 +- setup.py | 2 +- sprockets/mixins/http/__init__.py | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/docs/history.rst b/docs/history.rst index 13d47f9..b955df9 100644 --- a/docs/history.rst +++ b/docs/history.rst @@ -1,6 +1,10 @@ Version History =============== +`1.0.7`_ Oct 19, 2017 +--------------------- +- Change the hard pin requirement on umsgpack + `1.0.6`_ Aug 16, 2017 --------------------- - Add ``max_http_attempts`` keyword param diff --git a/requires/installation.txt b/requires/installation.txt index 68a4f77..d59ab08 100644 --- a/requires/installation.txt +++ b/requires/installation.txt @@ -1,3 +1,3 @@ ietfparse>=1.4.1,<2 tornado>=4.2.0,<5.0.0 -u-msgpack-python==2.1 +u-msgpack-python>=2.1,<3 diff --git a/setup.py b/setup.py index 44e5b8e..4cfffa3 100755 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ def read_requirements(name): setuptools.setup( name='sprockets.mixins.http', - version='1.0.6', + version='1.0.7', description='HTTP Client Mixin for Tornado RequestHandlers', long_description=open('README.rst').read(), url='https://github.com/sprockets/sprockets.mixins.http', diff --git a/sprockets/mixins/http/__init__.py b/sprockets/mixins/http/__init__.py index 6a96809..dac703f 100644 --- a/sprockets/mixins/http/__init__.py +++ b/sprockets/mixins/http/__init__.py @@ -16,7 +16,7 @@ from ietfparse import algorithms, errors, headers from tornado import gen, httpclient import umsgpack -__version__ = '1.0.6' +__version__ = '1.0.7' LOGGER = logging.getLogger(__name__)