mirror of
https://github.com/sprockets/sprockets.mixins.http.git
synced 2024-11-14 19:29:31 +00:00
Change the hard pin on u-msgpack-python
This commit is contained in:
parent
b742e1526e
commit
07339af919
4 changed files with 7 additions and 3 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
2
setup.py
2
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',
|
||||
|
|
|
@ -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__)
|
||||
|
||||
|
|
Loading…
Reference in a new issue