From: Orakaro Date: Fri, 31 Jul 2015 01:32:04 +0000 (+0900) Subject: Let -hr work with Python2 X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=f70d34777e4be4fa6b372ec9cc42c006dbbc1f09;p=rainbowstream.git Let -hr work with Python2 --- diff --git a/rainbowstream/c_image.py b/rainbowstream/c_image.py index 0959150..37da689 100644 --- a/rainbowstream/c_image.py +++ b/rainbowstream/c_image.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- from PIL import Image from os.path import join, dirname, getmtime, exists, expanduser from .config import * diff --git a/setup.py b/setup.py index 8e4d00f..93c4443 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ version = '1.2.7' install_requires = [ "python-dateutil", "arrow", - "requests", + "requests==2.5.3", "pyfiglet", "twitter", "Pillow",