We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d5338a commit 4c22c00Copy full SHA for 4c22c00
.travis.yml
@@ -4,6 +4,7 @@ python:
4
- 3.5
5
- 3.6
6
- 3.7
7
+ - 3.8
8
before_install:
9
- pip install coveralls
10
install:
setup.py
@@ -51,6 +51,7 @@ def read(*parts):
51
'Programming Language :: Python :: 3.5',
52
'Programming Language :: Python :: 3.6',
53
'Programming Language :: Python :: 3.7',
54
+ 'Programming Language :: Python :: 3.8',
55
],
56
packages=find_packages(),
57
)
tests/unit/objects/test_invoice.py
@@ -1,6 +1,7 @@
1
import unittest
2
3
from quickbooks import QuickBooks
+from quickbooks.objects import Ref
from quickbooks.objects.invoice import Invoice, DeliveryInfo
0 commit comments