Skip to content

Commit

Permalink
Merge branch 'drop_support_old_python'
Browse files Browse the repository at this point in the history
  • Loading branch information
ej2 committed Sep 18, 2019
2 parents e623957 + 945a707 commit a11fef4
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
language: python
python:
- 2.7
- 3.3
- 3.4
- 3.5
- 3.6
- 3.7
before_install:
- pip install coveralls
install:
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
Changelog
=========

* 0.8.1 (September 18th, 2019)
* Dropped support for Python 2.7 and 3.3

* 0.8 (June 25th, 2019)
* Removed support for OAuth 1.0
* Replace OAuth Session Manager and CLI with intuit-oauth client.
Expand Down
5 changes: 2 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ python-quickbooks
|Build Status| |Coverage Status| |License|


A Python library for accessing the Quickbooks API. Complete rework of
A Python 3 library for accessing the Quickbooks API. Complete rework of
`quickbooks-python`_.

These instructions were written for a Django application. Make sure to
Expand Down Expand Up @@ -348,8 +348,7 @@ Formating helpers are available in helpers.py. Example usage:
counterparts and do not follow PEP8.

**Note:** This is a work-in-progress made public to help other
developers access the QuickBooks API. Built for a Django project running
on Python 2.
developers access the QuickBooks API.

.. _Intuit developer guide: https://developer.intuit.com/docs/0100_accounting/0300_developer_guides/querying_data
.. _Intuit Batch Operations Guide: https://developer.intuit.com/docs/api/accounting/batch
Expand Down
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def read(*parts):
return fp.read()


VERSION = (0, 8, 0)
VERSION = (0, 8, 1)
version = '.'.join(map(str, VERSION))

setup(
Expand Down Expand Up @@ -46,10 +46,11 @@ def read(*parts):
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',

],
packages=find_packages(),
)

0 comments on commit a11fef4

Please sign in to comment.