From f70d34777e4be4fa6b372ec9cc42c006dbbc1f09 Mon Sep 17 00:00:00 2001 From: Orakaro Date: Fri, 31 Jul 2015 10:32:04 +0900 Subject: [PATCH] Let -hr work with Python2 --- rainbowstream/c_image.py | 1 + setup.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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", -- 2.25.1