Skip to content

Commit b5c465a

Browse files
authored
Add transaction_fees_in_cents [ch3025] (#19)
* Add transaction_fees_in_cents [ch3025] * Build settings * Nightly isn't supported on trusty
1 parent 16ca0f8 commit b5c465a

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

.travis.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,18 @@
11
language: python
2+
23
python:
34
- "2.7"
45
- "3.3"
56
- "3.4"
67
- "3.5"
78
- "3.6"
8-
- "nightly" # currently points to 3.7-dev
9+
910
# command to install dependencies
1011
install: "pip install -r requirements.txt"
12+
1113
# command to run tests
1214
script: python setup.py test
15+
16+
branches:
17+
only:
18+
- master

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
## Installation
3131

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.
3333

3434
```sh
3535
pip install chartmogul

chartmogul/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"""
3030

3131
__title__ = 'chartmogul'
32-
__version__ = '1.1.6'
32+
__version__ = '1.1.7'
3333
__build__ = 0x000000
3434
__author__ = 'ChartMogul Ltd'
3535
__license__ = 'MIT'

chartmogul/api/invoice.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ class _Schema(Schema):
2121
discount_code = fields.String(allow_none=True)
2222
discount_amount_in_cents = fields.Int()
2323
tax_amount_in_cents = fields.Int()
24+
transaction_fees_in_cents = fields.Int()
2425
account_code = fields.String(allow_none=True)
2526

2627
@post_load

0 commit comments

Comments
 (0)