Skip to content

Commit

Permalink
Bump to v7.12.0 (#441)
Browse files Browse the repository at this point in the history
  • Loading branch information
lihsai0 authored Oct 8, 2023
1 parent f04c995 commit 02872ab
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# Changelog
## 7.12.0(2023-10-08)
* 对象存储,分片上传支持并发上传

## 7.11.1(2023-08-16)
* 修复 setup.py 打包丢失部分包(v7.11.0 引入)
Expand Down
2 changes: 1 addition & 1 deletion qiniu/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

# flake8: noqa

__version__ = '7.11.1'
__version__ = '7.12.0'

from .auth import Auth, QiniuMacAuth

Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@ def find_version(*file_paths):
'Topic :: Software Development :: Libraries :: Python Modules'
],
install_requires=[
'requests',
'requests; python_version >= "3.7"',
'requests<2.28; python_version < "3.7"',
'futures; python_version == "2.7"'
],
extras_require={
Expand Down

0 comments on commit 02872ab

Please sign in to comment.