File tree Expand file tree Collapse file tree 4 files changed +11
-8
lines changed
Expand file tree Collapse file tree 4 files changed +11
-8
lines changed Original file line number Diff line number Diff line change 11language : python
22python :
3- - 2.7
4- - 3.3
53 - 3.4
64 - 3.5
5+ - 3.6
6+ - 3.7
77before_install :
88 - pip install coveralls
99install :
Original file line number Diff line number Diff line change 11Changelog
22=========
33
4+ * 0.8.1 (September 18th, 2019)
5+ * Dropped support for Python 2.7 and 3.3
6+
47* 0.8 (June 25th, 2019)
58 * Removed support for OAuth 1.0
69 * Replace OAuth Session Manager and CLI with intuit-oauth client.
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ python-quickbooks
44|Build Status | |Coverage Status | |License |
55
66
7- A Python library for accessing the Quickbooks API. Complete rework of
7+ A Python 3 library for accessing the Quickbooks API. Complete rework of
88`quickbooks-python `_.
99
1010These instructions were written for a Django application. Make sure to
@@ -348,8 +348,7 @@ Formating helpers are available in helpers.py. Example usage:
348348counterparts and do not follow PEP8.
349349
350350**Note: ** This is a work-in-progress made public to help other
351- developers access the QuickBooks API. Built for a Django project running
352- on Python 2.
351+ developers access the QuickBooks API.
353352
354353.. _Intuit developer guide : https://developer.intuit.com/docs/0100_accounting/0300_developer_guides/querying_data
355354.. _Intuit Batch Operations Guide : https://developer.intuit.com/docs/api/accounting/batch
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ def read(*parts):
1010 return fp .read ()
1111
1212
13- VERSION = (0 , 8 , 0 )
13+ VERSION = (0 , 8 , 1 )
1414version = '.' .join (map (str , VERSION ))
1515
1616setup (
@@ -46,10 +46,11 @@ def read(*parts):
4646 'License :: OSI Approved :: MIT License' ,
4747 'Operating System :: OS Independent' ,
4848 'Programming Language :: Python' ,
49- 'Programming Language :: Python :: 2.7' ,
50- 'Programming Language :: Python :: 3.3' ,
5149 'Programming Language :: Python :: 3.4' ,
5250 'Programming Language :: Python :: 3.5' ,
51+ 'Programming Language :: Python :: 3.6' ,
52+ 'Programming Language :: Python :: 3.7' ,
53+
5354 ],
5455 packages = find_packages (),
5556)
You can’t perform that action at this time.
0 commit comments