Skip to content

Commit

Permalink
Fix: 修正requests版本
Browse files Browse the repository at this point in the history
  • Loading branch information
doraemonext committed Mar 25, 2015
1 parent cb6e4d6 commit eb536cf
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
requests==2.3.0
requests==2.6.0
14 changes: 7 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
from setuptools import setup, find_packages

setup(
name = 'wechat-sdk',
version = '0.5.4',
keywords = ('wechat', 'sdk', 'wechat sdk'),
description = u'微信公众平台Python开发包',
long_description = open("README.rst").read(),
license = 'BSD License',
name='wechat-sdk',
version='0.5.4',
keywords=('wechat', 'sdk', 'wechat sdk'),
description=u'微信公众平台Python开发包',
long_description=open("README.rst").read(),
license='BSD License',

url='https://github.com/doraemonext/wechat-python-sdk',
author='doraemonext',
Expand All @@ -18,5 +18,5 @@
packages=find_packages(),
include_package_data=True,
platforms='any',
install_requires=open("requirements.txt").readlines(),
install_requires=map(lambda x: x.replace('==', '>='), open("requirements.txt").readlines()),
)

0 comments on commit eb536cf

Please sign in to comment.