File tree Expand file tree Collapse file tree 4 files changed +10
-3
lines changed Expand file tree Collapse file tree 4 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 1
1
language : python
2
+
2
3
python :
3
4
- " 2.7"
4
5
- " 3.3"
5
6
- " 3.4"
6
7
- " 3.5"
7
8
- " 3.6"
8
- - " nightly " # currently points to 3.7-dev
9
+
9
10
# command to install dependencies
10
11
install : " pip install -r requirements.txt"
12
+
11
13
# command to run tests
12
14
script : python setup.py test
15
+
16
+ branches :
17
+ only :
18
+ - master
Original file line number Diff line number Diff line change 29
29
30
30
## Installation
31
31
32
- This library requires Python 2.7 or 3.3 and above .
32
+ This library requires Python 2.7 or 3.3 to 3.6 .
33
33
34
34
``` sh
35
35
pip install chartmogul
Original file line number Diff line number Diff line change 29
29
"""
30
30
31
31
__title__ = 'chartmogul'
32
- __version__ = '1.1.6 '
32
+ __version__ = '1.1.7 '
33
33
__build__ = 0x000000
34
34
__author__ = 'ChartMogul Ltd'
35
35
__license__ = 'MIT'
Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ class _Schema(Schema):
21
21
discount_code = fields .String (allow_none = True )
22
22
discount_amount_in_cents = fields .Int ()
23
23
tax_amount_in_cents = fields .Int ()
24
+ transaction_fees_in_cents = fields .Int ()
24
25
account_code = fields .String (allow_none = True )
25
26
26
27
@post_load
You can’t perform that action at this time.
0 commit comments