File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 4
4
5
5
import os
6
6
import re
7
+ from io import open
8
+
7
9
from setuptools import setup
8
10
9
11
# Get version from __init__.py file
15
17
raise RuntimeError ("Cannot find version information" )
16
18
17
19
# Get long description
18
- README = open (os .path .join (os .path .dirname (__file__ ), "README.rst" )).read ()
20
+ README = open (os .path .join (os .path .dirname (__file__ ), "README.rst" ), encoding = "utf8" ).read ()
19
21
20
22
# allow setup.py to be run from any path
21
23
os .chdir (os .path .normpath (os .path .join (os .path .abspath (__file__ ), os .pardir )))
Original file line number Diff line number Diff line change 10
10
"""
11
11
12
12
__title__ = "wordpress"
13
- __version__ = "1.2.6 "
13
+ __version__ = "1.2.7 "
14
14
__author__ = "Claudio Sanches @ WooThemes, forked by Derwent"
15
15
__license__ = "MIT"
16
16
You can’t perform that action at this time.
0 commit comments