We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f04c995 commit 02872abCopy full SHA for 02872ab
CHANGELOG.md
@@ -1,4 +1,6 @@
1
# Changelog
2
+## 7.12.0(2023-10-08)
3
+* 对象存储,分片上传支持并发上传
4
5
## 7.11.1(2023-08-16)
6
* 修复 setup.py 打包丢失部分包(v7.11.0 引入)
qiniu/__init__.py
@@ -9,7 +9,7 @@
9
10
# flake8: noqa
11
12
-__version__ = '7.11.1'
+__version__ = '7.12.0'
13
14
from .auth import Auth, QiniuMacAuth
15
setup.py
@@ -54,7 +54,8 @@ def find_version(*file_paths):
54
'Topic :: Software Development :: Libraries :: Python Modules'
55
],
56
install_requires=[
57
- 'requests',
+ 'requests; python_version >= "3.7"',
58
+ 'requests<2.28; python_version < "3.7"',
59
'futures; python_version == "2.7"'
60
61
extras_require={
0 commit comments