Increment version number to 1.2; fixed a bug in updateProfileColors() wherein multiple values wouldn't get properly concatenated/url-encoded. Changed getRateLimitStatus() to accept a boolean of 'checkRequestingIP', which should hopefully make the method a little more clear for debugging purposes.
This commit is contained in:
parent
30fbacb066
commit
8bea592d97
3 changed files with 16 additions and 30 deletions
4
setup.py
4
setup.py
|
|
@ -3,13 +3,13 @@
|
|||
import sys, os
|
||||
|
||||
__author__ = 'Ryan McGrath <ryan@venodesigns.net>'
|
||||
__version__ = '1.0'
|
||||
__version__ = '1.2'
|
||||
|
||||
# Distutils version
|
||||
METADATA = dict(
|
||||
name = "twython",
|
||||
version = __version__,
|
||||
py_modules = ['twython/__init__', 'twython/core', 'twython/twyauth', 'twython/streaming', 'twython/oauth'],
|
||||
py_modules = ['setup', 'twython/__init__', 'twython/core', 'twython/twyauth', 'twython/streaming', 'twython/oauth'],
|
||||
author = 'Ryan McGrath',
|
||||
author_email = 'ryan@venodesigns.net',
|
||||
description = 'An easy (and up to date) way to access Twitter data with Python.',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue