File tree Expand file tree Collapse file tree 5 files changed +18
-2
lines changed Expand file tree Collapse file tree 5 files changed +18
-2
lines changed Original file line number Diff line number Diff line change 1+ #!/usr/bin/env python
2+ # -*- coding: utf-8 -*-
3+
14"""
25intervaltree: A mutable, self-balancing interval tree for Python 2 and 3.
36Queries may be by point, by range overlap, or by range envelopment.
Original file line number Diff line number Diff line change 1+ #!/usr/bin/env python
2+ # -*- coding: utf-8 -*-
3+
14"""
25intervaltree: A mutable, self-balancing interval tree for Python 2 and 3.
36Queries may be by point, by range overlap, or by range envelopment.
Original file line number Diff line number Diff line change 1+ #!/usr/bin/env python
2+ # -*- coding: utf-8 -*-
3+
14"""
25intervaltree: A mutable, self-balancing interval tree for Python 2 and 3.
36Queries may be by point, by range overlap, or by range envelopment.
Original file line number Diff line number Diff line change 1+ #!/usr/bin/env python
2+ # -*- coding: utf-8 -*-
3+
14"""
25intervaltree: A mutable, self-balancing interval tree for Python 2 and 3.
36Queries may be by point, by range overlap, or by range envelopment.
Original file line number Diff line number Diff line change 1+ #!/usr/bin/env python
2+ # -*- coding: utf-8 -*-
3+
14"""
25intervaltree: A mutable, self-balancing interval tree for Python 2 and 3.
36Queries may be by point, by range overlap, or by range envelopment.
2225limitations under the License.
2326"""
2427from __future__ import absolute_import
28+ import io
2529import os
2630from sys import exit
2731from setuptools import setup
2832from setuptools .command .test import test as TestCommand
2933import subprocess
3034
3135## CONFIG
32- target_version = '3.0.1 '
36+ target_version = '3.0.2 '
3337
3438
3539def version_info (target_version ):
@@ -56,7 +60,7 @@ def version_info(target_version):
5660 print ("!!!>>> This is a RELEASE version <<<!!!\n " )
5761 print ("Version: {version}" .format (** vinfo ))
5862
59- with open ('README.md' , 'r' ) as fh :
63+ with io . open ('README.md' , 'r' , encoding = 'utf-8 ' ) as fh :
6064 long_description = fh .read ()
6165
6266## PyTest
You can’t perform that action at this time.
0 commit comments