Skip to content

Commit 352bcb1

Browse files
committed
update version
1 parent e85400e commit 352bcb1

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

.travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
sudo: false
22
language: python
33
python:
4-
- '2.6'
4+
- '2.6.9'
55
- '2.7'
66
- '3.4'
77
- '3.5'
@@ -19,7 +19,7 @@ before_script:
1919
- export QINIU_TEST_ENV="travis"
2020
- export PYTHONPATH="$PYTHONPATH:."
2121
script:
22-
- flake8 --show-source --max-line-length=160 .
22+
- if [[ "$TRAVIS_PYTHON_VERSION" != "2.6.9" ]]; then flake8 --show-source --max-line-length=160 .; fi
2323
- py.test --cov qiniu
2424
- ocular --data-file .coverage
2525
deploy:

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
#Changelog
22

3+
## 7.0.10 (2016-11-29)
4+
### 修正
5+
* 去掉homedir
6+
37
## 7.0.9 (2016-10-09)
48
### 增加
59
* 多机房接口调用支持
610

7-
811
## 7.0.8 (2016-07-05)
912
### 修正
1013
* 修复表单上传大于20M文件的400错误

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.0.9'
12+
__version__ = '7.0.10'
1313

1414
from .auth import Auth
1515

0 commit comments

Comments
 (0)