Skip to content

Commit 02872ab

Browse files
authored
Bump to v7.12.0 (#441)
1 parent f04c995 commit 02872ab

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

Diff for: CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
# Changelog
2+
## 7.12.0(2023-10-08)
3+
* 对象存储,分片上传支持并发上传
24

35
## 7.11.1(2023-08-16)
46
* 修复 setup.py 打包丢失部分包(v7.11.0 引入)

Diff for: qiniu/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
# flake8: noqa
1111

12-
__version__ = '7.11.1'
12+
__version__ = '7.12.0'
1313

1414
from .auth import Auth, QiniuMacAuth
1515

Diff for: setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@ def find_version(*file_paths):
5454
'Topic :: Software Development :: Libraries :: Python Modules'
5555
],
5656
install_requires=[
57-
'requests',
57+
'requests; python_version >= "3.7"',
58+
'requests<2.28; python_version < "3.7"',
5859
'futures; python_version == "2.7"'
5960
],
6061
extras_require={

0 commit comments

Comments
 (0)