Skip to content

Commit

Permalink
Update python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
ej2 committed Jan 3, 2024
1 parent d93099b commit 512d57b
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v3
Expand Down
5 changes: 4 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
Changelog
=========
* 0.9.6 (January 2, 2024)
* Replace RAuth with requests_oauthlib
* Removed python 2 code from client.py
* Added new fields to Employee object

* Added VendorAddr to Bill object
* Added new fields to Estimate object

* 0.9.5 (November 1, 2023)
* Added the ability to void all voidable QB types
Expand Down
2 changes: 0 additions & 2 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,9 @@ verify_ssl = true
urllib3 = ">=1.26.5"
bleach = ">=3.3.0"
intuit-oauth = "==1.2.4"

requests = ">=2.31.0"
simplejson = ">=3.19.1"
nose = "*"
coverage = "*"
twine = "*"
oauthlib = ">=3.2.2"
requests_oauthlib = ">=1.3.1"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ details) pass in minorversion when setting up the client:
auth_client=auth_client,
refresh_token='REFRESH_TOKEN',
company_id='COMPANY_ID',
minorversion=59
minorversion=69
)

Object Operations
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
intuit-oauth==1.2.4
rauth>=0.7.3
requests_oauthlib>=1.3.1
requests>=2.31.0
simplejson>=3.19.1
6 changes: 4 additions & 2 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, 9, 5)
VERSION = (0, 9, 6)
version = '.'.join(map(str, VERSION))

setup(
Expand All @@ -32,7 +32,7 @@ def read(*parts):
install_requires=[
'setuptools',
'intuit-oauth==1.2.4',
'rauth>=0.7.3',
'requests_oauthlib>=1.3.1',
'requests>=2.31.0',
'simplejson>=3.19.1',
'python-dateutil',
Expand All @@ -50,6 +50,8 @@ def read(*parts):
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
packages=find_packages(exclude=("tests",)),
)

0 comments on commit 512d57b

Please sign in to comment.