Skip to content

Commit

Permalink
inc version
Browse files Browse the repository at this point in the history
  • Loading branch information
ckoepp committed Jan 1, 2018
1 parent 4abd69c commit 627b9f5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions TwitterSearch/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
__title__ = 'TwitterSearch'
__version__ = '1.0.1'
__version__ = '1.0.2'
__author__ = 'Christian Koepp'
__license__ = 'MIT'
__copyright__ = 'Copyright 2013 Christian Koepp'
__copyright__ = 'Copyright 2017 Christian Koepp'

from .TwitterSearch import TwitterSearch
from .TwitterOrder import TwitterOrder
Expand Down
2 changes: 1 addition & 1 deletion docs/advanced_usage_tso.rst
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ count *optional* ``set_count(<int>[Range: 1-100])``
---------------- -------------- ------------------------------------------------------------------------------------------------- -------------------------------------------------------------
until *optional* ``set_until(<datetime.date>)`` ``set_until(datetime.date(2012, 12, 24))``
---------------- -------------- ------------------------------------------------------------------------------------------------- -------------------------------------------------------------
until *optional* ``set_since(<datetime.date>)`` ``set_since(datetime.date(2012, 12, 24))``
since *optional* ``set_since(<datetime.date>)`` ``set_since(datetime.date(2012, 12, 24))``
---------------- -------------- ------------------------------------------------------------------------------------------------- -------------------------------------------------------------
since_id *optional* ``set_since_id(<int,long>[Range: >0])`` ``set_since_id(250075927172759552)``
---------------- -------------- ------------------------------------------------------------------------------------------------- -------------------------------------------------------------
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#from TwitterSearch import __version__

def readme():
with io.open('README.rst', 'r', encoding="utf8") as f:
with io.open('README.rst', 'r', encoding='utf8') as f:
return f.read()

def requirements():
Expand All @@ -14,7 +14,7 @@ def requirements():
return req

setup(name='TwitterSearch',
version='1.0.1',
version='1.0.2',
description='A library to easily iterate tweets found by the Twitter API',
long_description=readme(),
url='http://github.com/ckoepp/TwitterSearch',
Expand All @@ -39,5 +39,5 @@ def requirements():
install_requires=requirements(),
zip_safe=False,
test_suite='nose.collector',
tests_require=['nose>=1.0.0', 'httpretty>=0.8.4,!=0.8.7,!=0.8.8,!=0.8.6']
tests_require=['nose>=1.0.0', 'httpretty>=0.8.4']
)

0 comments on commit 627b9f5

Please sign in to comment.