10000 Explicitly specify README.txt encoding and bump to semver 1.1.1 · kennknowles/python-jsonpath-rw@03e57bf · GitHub
[go: up one dir, main page]

Skip to content

Commit 03e57bf

Browse files
committed
Explicitly specify README.txt encoding and bump to semver 1.1.1
1 parent fbf05a2 commit 03e57bf

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import setuptools
2+
import io
23
import sys
34
import os.path
45
import subprocess
@@ -13,13 +14,13 @@
1314

1415
setuptools.setup(
1516
name='jsonpath-rw',
16-
version='1.1',
17+
version='1.1.1',
1718
description='A robust and significantly extended implementation of JSONPath for Python, with a clear AST for metaprogramming.',
1819
author='Kenneth Knowles',
1920
author_email='kenn.knowles@gmail.com',
2021
url='https://github.com/kennknowles/python-jsonpath-rw',
2122
license='Apache 2.0',
22-
long_description=open(readme).read(),
23+
long_description=io.open(readme, encoding='utf-8').read(),
2324
packages = ['jsonpath_rw'],
2425
test_suite = 'tests',
2526
install_requires = [ 'ply', 'decorator', 'six' ],

0 commit comments

Comments
 (0)
0