Skip to content

Commit 7ff6c26

Browse files
committed
Fixed installation issue. Prepare for v0.4.1.
1 parent 9f36491 commit 7ff6c26

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

HISTORY.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33
History
44
-------
55

6+
0.4.1 (2013-10-25)
7+
++++++++++++++++++
8+
9+
* Read in `README.rst` as UTF-8 in `setup.py`.
10+
611
0.4.0 (2013-10-21)
712
++++++++++++++++++
813

geoip2/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# pylint:disable=C0111
22

33
__title__ = 'geoip2'
4-
__version__ = '0.4.0'
4+
__version__ = '0.4.1'
55
__author__ = 'Gregory Oschwald'
66
__license__ = 'LGPLv2.1+'
77
__copyright__ = 'Copyright 2013 Maxmind, Inc.'

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#!/usr/bin/env python
22

3+
import codecs
34
import os
45
import sys
56

@@ -26,7 +27,7 @@
2627
name='geoip2',
2728
version=geoip2.__version__,
2829
description='MaxMind GeoIP2 API',
29-
long_description=open('README.rst').read(),
30+
long_description=codecs.open('README.rst', 'r', 'utf-8').read(),
3031
author='Gregory Oschwald',
3132
author_email='[email protected]',
3233
url='http://www.maxmind.com/',

0 commit comments

Comments
 (0)