Skip to content

Commit d50394c

Browse files
committed
Updates to requirements
1 parent 114f10e commit d50394c

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -282,15 +282,16 @@ Formating helpers are available in helpers.py. Example usage:
282282

283283
Exception Handling
284284
----------------
285-
The QuickbooksException object contains additional information from QBO.
285+
The QuickbooksException object contains additional [QBO error code](https://developer.intuit.com/app/developer/qbo/docs/develop/troubleshooting/error-codes#id1) information.
286+
286287

287288
from quickbooks.exceptions import QuickbooksException
288289

289290
try:
290291
# perform a Quickbooks operation
291292
except QuickbooksException as e:
292293
e.message # contains the error message returned from QBO
293-
e.error_code # contains the [QBO error code](https://developer.intuit.com/app/developer/qbo/docs/develop/troubleshooting/error-codes#id1)
294+
e.error_code # contains the
294295
e.detail # contains additional information when available
295296

296297

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
intuit-oauth==1.2.3
22
rauth>=0.7.1
3-
requests>=2.23.0
3+
requests>=2.19.1
44
simplejson>=3.17.0
55
six>=1.14.0

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def read(*parts):
3333
'setuptools',
3434
'intuit-oauth==1.2.3',
3535
'rauth>=0.7.1',
36-
'requests>=2.23.0',
36+
'requests>=2.19.1',
3737
'simplejson>=3.17.0',
3838
'six>=1.14.0',
3939
'python-dateutil',

0 commit comments

Comments
 (0)