File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,9 @@ Following guidelines of http://keepachangelog.com/
3
3
4
4
## [ Unreleased]
5
5
6
+ ## [ 2.1.0] - Feb 10, 2017
7
+ - Add support for python version 3.*
8
+
6
9
## [ 2.0.0] - Aug 19, 2016
7
10
- implement ` GET /metrickeys `
8
11
- update ` GET /lastpushes `
@@ -34,7 +37,8 @@ Following guidelines of http://keepachangelog.com/
34
37
## [ 0.1] - May 20, 2015
35
38
- Initial release
36
39
37
- [ Unreleased ] : https://github.com/databox/databox-go/compare/2.0.0...master
40
+ [ Unreleased ] : https://github.com/databox/databox-go/compare/2.1.0...master
41
+ [ 2.1.0 ] : https://github.com/databox/databox-python/compare/2.0.0...2.1.0
38
42
[ 2.0.0 ] : https://github.com/databox/databox-python/compare/0.1.6...2.0.0
39
43
[ 0.1.6 ] : https://github.com/databox/databox-python/compare/0.1.5...0.1.6
40
44
[ 0.1.5 ] : https://github.com/databox/databox-python/compare/0.1.4...0.1.5
Original file line number Diff line number Diff line change 3
3
from os import getenv
4
4
from json import dumps as json_dumps
5
5
6
- __version__ = "2.0 .0"
6
+ __version__ = "2.1 .0"
7
7
8
8
9
9
class Client (object ):
Original file line number Diff line number Diff line change 14
14
license = 'MIT' ,
15
15
packages = find_packages (exclude = ('databox test' ,)),
16
16
install_requires = [
17
- 'requests >= 2.7 '
17
+ 'requests >= 2.13 '
18
18
]
19
19
)
You can’t perform that action at this time.
0 commit comments