Skip to content

Commit a11fef4

Browse files
committed
Merge branch 'drop_support_old_python'
2 parents e623957 + 945a707 commit a11fef4

File tree

4 files changed

+11
-8
lines changed

4 files changed

+11
-8
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
language: python
22
python:
3-
- 2.7
4-
- 3.3
53
- 3.4
64
- 3.5
5+
- 3.6
6+
- 3.7
77
before_install:
88
- pip install coveralls
99
install:

CHANGELOG.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
Changelog
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.

README.rst

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff 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

1010
These instructions were written for a Django application. Make sure to
@@ -348,8 +348,7 @@ Formating helpers are available in helpers.py. Example usage:
348348
counterparts 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

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff 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)
1414
version = '.'.join(map(str, VERSION))
1515

1616
setup(
@@ -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
)

0 commit comments

Comments
 (0)