Skip to content

Commit 536a3d1

Browse files
committed
Try Python 2.7 encoding friendly
1 parent 028031c commit 536a3d1

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1+
# encoding: utf-8
12
from setuptools import setup
23

3-
with open("README.rst", "r", encoding="utf-8") as f:
4+
with open("README.rst", "r") as f:
45
README = f.read()
5-
with open("CHANGES.rst", "r", encoding="utf-8") as f:
6+
with open("CHANGES.rst", "r") as f:
67
CHANGES = f.read()
78

89
testing_extras = [
@@ -15,7 +16,7 @@
1516

1617
setup(
1718
name='alog',
18-
version='1.3.0-dev',
19+
version='1.3.0-dev1',
1920
description='Your goto Python logging without panic on context swtich',
2021
long_description=README + CHANGES,
2122
long_description_content_type="text/x-rst",

0 commit comments

Comments
 (0)