Skip to content

Commit f011e54

Browse files
authored
Merge pull request #144 from dt3310321/s3
py2 and py3 setup
2 parents 206badc + bcea6a2 commit f011e54

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

qcloud_cos/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11

2-
__version__ = '5.1.8.9'
2+
__version__ = '5.1.9.0'

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from setuptools import setup, find_packages
22
from platform import python_version_tuple
3-
3+
import io
44

55
def requirements():
66

@@ -10,13 +10,13 @@ def requirements():
1010

1111

1212
def long_description():
13-
with open('README.rst', 'r', encoding='utf8') as fileobj:
13+
with io.open('README.rst', 'r', encoding='utf8') as fileobj:
1414
return fileobj.read()
1515

1616

1717
setup(
1818
name='cos-python-sdk-v5',
19-
version='1.8.9',
19+
version='1.9.0',
2020
url='https://www.qcloud.com/',
2121
license='MIT',
2222
author='tiedu, lewzylu, channingliu',

0 commit comments

Comments
 (0)