Skip to content

Commit

Permalink
encoding (issue ckoepp#21) and version increment
Browse files Browse the repository at this point in the history
  • Loading branch information
ckoepp committed Sep 27, 2014
1 parent 38e94f6 commit d72b30d
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
Change history
**************

0.78.6
######

* Fixed codec error on Win7 installation (issue #21)
* Added manual iteration support (issue #20)

0.78.5
######

Expand Down
2 changes: 1 addition & 1 deletion TwitterSearch/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__title__ = 'TwitterSearch'
__version__ = '0.78.5'
__version__ = '0.78.6'
__author__ = 'Christian Koepp'
__license__ = 'MIT'
__copyright__ = 'Copyright 2013 Christian Koepp'
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#from TwitterSearch import __version__

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

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

setup(name='TwitterSearch',
version='0.78.5',
version='0.78.6',
description='A library to easily iterate tweets found by the Twitter Search API',
long_description=readme(),
url='http://github.com/ckoepp/TwitterSearch',
Expand All @@ -29,7 +29,7 @@ def requirements():
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Development Status :: 3 - Alpha',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
Expand Down

0 comments on commit d72b30d

Please sign in to comment.