Skip to content

Commit

Permalink
Merge pull request #144 from dt3310321/s3
Browse files Browse the repository at this point in the history
py2 and py3 setup
  • Loading branch information
dt3310321 authored Nov 5, 2020
2 parents 206badc + bcea6a2 commit f011e54
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion qcloud_cos/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@

__version__ = '5.1.8.9'
__version__ = '5.1.9.0'
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import setup, find_packages
from platform import python_version_tuple

import io

def requirements():

Expand All @@ -10,13 +10,13 @@ def requirements():


def long_description():
with open('README.rst', 'r', encoding='utf8') as fileobj:
with io.open('README.rst', 'r', encoding='utf8') as fileobj:
return fileobj.read()


setup(
name='cos-python-sdk-v5',
version='1.8.9',
version='1.9.0',
url='https://www.qcloud.com/',
license='MIT',
author='tiedu, lewzylu, channingliu',
Expand Down

0 comments on commit f011e54

Please sign in to comment.